:root {
  /* Primary accent — a restrained amber/gold */
  --accent: #d4a843;
  --accent-dark: #b8902c;
  --accent-glow: rgba(212, 168, 67, 0.22);
  --accent-light: rgba(212, 168, 67, 0.08);

  /* Secondary — cool slate-blue, not neon purple */
  --accent-2: #5b7fa6;
  --accent-2-glow: rgba(91, 127, 166, 0.20);

  /* Backgrounds */
  --bg: #0c0e12;
  --bg2: #10121a;
  --bg3: #161920;

  /* Cards */
  --card-bg: rgba(255, 255, 255, 0.030);
  --card-border: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.06);

  /* Text */
  --muted: rgba(255, 255, 255, 0.42);
  --muted2: rgba(255, 255, 255, 0.22);
  --text: #ebebeb;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --transition: 0.20s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

/* Background Texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212, 168, 67, 0.22) 1.5px, transparent 0),
    linear-gradient(rgba(212, 168, 67, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(91, 127, 166, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 127, 166, 0.012) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 20%, transparent 75%);
}

/* Ambient Glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 450px at 20% 5%, rgba(212, 168, 67, 0.055) 0%, transparent 70%),
    radial-gradient(ellipse 600px 600px at 80% 90%, rgba(91, 127, 166, 0.045) 0%, transparent 70%);
}

.page-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Geometric Shapes */
.wireframe-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wireframe-decor .shape {
  position: absolute;
  border: 1px solid rgba(212, 168, 67, 0.05);
  border-radius: 3px;
  animation: floatShape 30s ease-in-out infinite;
}

.wireframe-decor .shape:nth-child(1) {
  width: 110px;
  height: 110px;
  top: 10%;
  left: 6%;
  transform: rotate(45deg);
  animation-delay: 0s;
  border-style: dashed;
}

.wireframe-decor .shape:nth-child(2) {
  width: 70px;
  height: 70px;
  top: 62%;
  right: 10%;
  border-radius: 50%;
  border-color: rgba(91, 127, 166, 0.06);
  animation-delay: -9s;
}

.wireframe-decor .shape:nth-child(3) {
  width: 180px;
  height: 180px;
  bottom: 14%;
  left: 14%;
  border-radius: 50%;
  animation-delay: -18s;
  border-style: dashed;
  border-color: rgba(212, 168, 67, 0.03);
}

.wireframe-decor .shape:nth-child(4) {
  width: 55px;
  height: 55px;
  top: 28%;
  right: 24%;
  transform: rotate(25deg);
  border-color: rgba(91, 127, 166, 0.06);
  animation-delay: -5s;
}

.wireframe-decor .shape:nth-child(5) {
  width: 130px;
  height: 130px;
  top: 78%;
  left: 58%;
  transform: rotate(12deg);
  animation-delay: -14s;
  border-style: dashed;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-16px) rotate(50deg);
    opacity: 0.7;
  }

  70% {
    transform: translateY(-6px) rotate(42deg);
    opacity: 0.5;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(12, 14, 18, 0.78);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 14, 18, 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: auto;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: filter var(--transition), transform var(--transition);
}

.logo:hover .logo-img {
  filter: brightness(1.15);
  transform: scale(1.03);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1;
  user-select: none;
  margin-left: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  margin-right: 5px;
  vertical-align: middle;
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.25
  }
}

/* Connect Wallet Button */
.k40i05-5w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent) 0%, #c49030 100%);
  color: #0c0e12;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 3px 18px var(--accent-glow);
  flex-shrink: 0;
  white-space: nowrap;
}

.k40i05-5w::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: left 0.5s;
}

.k40i05-5w:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px var(--accent-glow);
}

.k40i05-5w:hover::before {
  left: 100%;
}

.k40i05-5w:active {
  transform: translateY(0);
  opacity: 0.9;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  display: block;
  transition: all 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 66px;
  right: -100%;
  width: min(320px, 88vw);
  height: calc(100vh - 66px);
  background: var(--bg2);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  gap: 4px;
  transition: right 0.28s cubic-bezier(.4, 0, .2, 1);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav a svg {
  width: 18px;
  height: 18px;
  opacity: 0.45;
  flex-shrink: 0;
}

.mobile-nav .k40i05-5w {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  display: none;
}

.nav-overlay.visible {
  display: block;
}

/* Main */
.main-content {
  flex: 1;
  padding-top: 66px;
}

/* Marquee */
.marquee-strip {
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
  padding: 7px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: mScroll 38s linear infinite;
}

.marquee-track.rev {
  animation: mScrollRev 38s linear infinite;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.22);
  padding: 0 28px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.marquee-track span svg {
  width: 12px;
  height: 12px;
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes mScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes mScrollRev {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 80px 24px 56px;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border: 1px solid rgba(212, 168, 67, 0.22);
  background: rgba(212, 168, 67, 0.06);
  color: rgba(212, 168, 67, 0.80);
  padding: 5px 16px;
  border-radius: 9999px;
  transition: background var(--transition);
}

.hero-badge:hover {
  background: rgba(212, 168, 67, 0.11);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: blink 2.2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.36);
  font-style: italic;
}

.hero-desc {
  max-width: 500px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  font-family: inherit;
}

.btn-ghost:hover {
  background: rgba(212, 168, 67, 0.07);
  border-color: rgba(212, 168, 67, 0.20);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--accent), #c49030);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: #0c0e12;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 3px 18px var(--accent-glow);
  transition: box-shadow var(--transition), transform var(--transition);
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 30px var(--accent-glow);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
}

/* Section */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 52px 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 67, 0.22);
  background: rgba(212, 168, 67, 0.06);
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 12px;
}

.section-tag svg {
  width: 13px;
  height: 13px;
}

.section-title {
  font-size: clamp(1.45rem, 3.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 13.5px;
  color: var(--muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(212, 168, 67, 0.14);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
}

.feature-name {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.feature-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.72;
}

/* Category Filter */
.cat-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.cat-btn {
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.cat-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.cat-btn.active {
  color: var(--accent);
  border-color: rgba(212, 168, 67, 0.38);
  background: var(--accent-light);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media(max-width: 1199px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
}

@media(max-width: 420px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 8px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeUp 0.42s ease both;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 67, 0.12);
  border-color: rgba(212, 168, 67, 0.18);
}

.product-card[data-hidden="true"] {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.p-img-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #12151e, #1a1520);
  aspect-ratio: 1;
  position: relative;
  flex-shrink: 0;
}

.p-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .p-img-wrap img {
  transform: scale(1.05);
}

.p-disc-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  z-index: 5;
  letter-spacing: 0.04em;
}

.p-cat-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(6px);
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(212, 168, 67, 0.22);
}

.p-info {
  padding: 9px 7px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex: 1;
  margin-bottom: 4px;
}

.p-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 4px;
}

.p-buy-btn {
  flex: 1;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  font-family: inherit;
}

.p-buy-btn:hover {
  background: rgba(212, 168, 67, 0.10);
  border-color: rgba(212, 168, 67, 0.32);
  color: #fff;
}

.p-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.p-price-orig {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: line-through;
  display: block;
}

.p-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.18s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.modal-box {
  background: #10121a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  max-width: 820px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.80);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
  font-family: inherit;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media(max-width: 620px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}

.modal-img-side {
  background: linear-gradient(135deg, #12151e, #1a1520);
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 270px;
}

@media(max-width: 620px) {
  .modal-img-side {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: 22px;
    min-height: 190px;
  }
}

.modal-img-side img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.modal-info-side {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.modal-cat {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.18);
  padding: 3px 11px;
  border-radius: 5px;
  display: inline-block;
}

.modal-name {
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.modal-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.modal-price-was {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: line-through;
}

.modal-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.78;
  white-space: pre-line;
}

.modal-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.modal-feats li {
  font-size: 12.5px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.modal-feats li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.modal-feats-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  margin-bottom: 4px;
}

.modal-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-buy-btn {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent), #c49030);
  border: none;
  color: #0c0e12;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 18px var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.modal-buy-btn:hover {
  opacity: 0.90;
  transform: translateY(-1px);
  box-shadow: 0 7px 28px var(--accent-glow);
}

.modal-note {
  font-size: 11.5px;
  color: var(--muted2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.modal-note svg {
  width: 13px;
  height: 13px;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 26px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1240px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.40);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  opacity: 0.65;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 52px 24px 0;
  margin-top: 36px;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-left: 1px;
  letter-spacing: 0.05em;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.75;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.footer-social a {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-social a:hover {
  background: rgba(212, 168, 67, 0.15);
  color: var(--accent);
  transform: scale(1.1);
}

.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 0;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-mobile {
  display: none;
}

/* CTA Section */
.cta-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 52px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box .cta-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Legal / Status Panels */
.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(14px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 20px;
  overflow-y: auto;
}

.panel-overlay.open {
  display: flex;
  animation: fadeIn 0.18s ease;
}

.panel-box {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  margin: auto;
  animation: slideUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.70);
}

@media(max-width: 600px) {
  .panel-box {
    padding: 28px 20px;
  }
}

.panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  font-family: inherit;
}

.panel-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

.panel-box h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.panel-box .panel-meta {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 28px;
}

.panel-box h2 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 22px 0 8px;
}

.panel-box p,
.panel-box li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.80;
}

.panel-box ul {
  list-style: none;
  padding-left: 0;
}

.panel-box ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}

.panel-box ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Status panel specifics */
.status-banner {
  border: 1px solid;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 14px;
}

.status-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-banner-label {
  font-size: 14px;
  font-weight: 700;
}

.status-banner-sub {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.status-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.status-stat {
  text-align: center;
  min-width: 52px;
}

.status-stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.status-stat-label {
  font-size: 10.5px;
  color: var(--muted2);
}

.status-list {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 10px;
}

.status-list-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
  border-bottom: 1px solid var(--card-border);
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--card-border);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.status-row:last-child {
  border-bottom: none;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
}

.sop {
  background: rgba(74, 222, 128, 0.10);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.smt {
  background: rgba(251, 191, 36, 0.10);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}

.sdg {
  background: rgba(251, 146, 60, 0.10);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.25);
}

.sof {
  background: rgba(239, 68, 68, 0.10);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.sbadge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.sbadge-pulse {
  animation: blink 1.8s ease-in-out infinite;
}

/* Responsive */
@media(max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 20px 44px;
  }

  .hero-stats {
    gap: 20px;
  }

  .trust-strip {
    gap: 16px;
  }

  .site-footer {
    padding: 34px 20px 0;
  }

  .footer-grid {
    display: none;
  }

  .footer-bottom {
    display: none;
  }

  .footer-mobile {
    display: block;
    text-align: center;
    padding-bottom: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.26);
    line-height: 1.80;
  }

  .footer-mobile a {
    color: rgba(255, 255, 255, 0.45);
    margin: 0 4px;
  }

  .footer-mobile a:hover {
    color: var(--accent);
  }
}

/* Scroll Top */
#scrollTop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.75);
  border: 1px solid rgba(212, 168, 67, 0.45);
  color: #0c0e12;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.38);
  z-index: 500;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  pointer-events: none;
  font-family: inherit;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  transform: translateY(-3px);
}

#scrollTop svg {
  width: 17px;
  height: 17px;
}

/* ==========================================================
   FLASH SALE
   ========================================================== */

/* Highlight only Arena Breakout card */
.product-card.flash-sale{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,80,80,.55);
    box-shadow:
        0 0 18px rgba(255,70,70,.35),
        0 0 40px rgba(255,120,0,.18);
    animation:flashSaleGlow 2s ease-in-out infinite;
}

.product-card.flash-sale:hover{
    transform:translateY(-6px) scale(1.02);
    box-shadow:
        0 0 22px rgba(255,80,80,.6),
        0 0 55px rgba(255,140,0,.3);
}

/* Moving light */
.product-card.flash-sale::before{
    content:"";
    position:absolute;
    top:-40%;
    left:-120%;
    width:70%;
    height:180%;
    background:
        linear-gradient(
            115deg,
            transparent,
            rgba(255,255,255,.28),
            transparent
        );
    transform:rotate(18deg);
    animation:flashSweep 3.5s linear infinite;
    pointer-events:none;
    z-index:8;
}

/* Glow border */
.product-card.flash-sale::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:2px solid rgba(255,70,70,.35);
    pointer-events:none;
    animation:borderPulse 2s infinite;
}

/* FLASH SALE ribbon (diagonal top-left corner style) */
.flash-sale-ribbon {
    position: absolute;
    top: 14px;
    left: -34px;
    width: 120px;
    text-align: center;
    padding: 4px 0;
    transform: rotate(-45deg);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .06em;
    color: #fff;
    background: linear-gradient(135deg, #ff1f1f 0%, #ff6b00 100%);
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255, 31, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: ribbonPulse 1.6s infinite;
}

/* Countdown overlay inside image wrap to prevent stretching other cards */
.p-img-wrap .sale-countdown {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 80, 80, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.p-img-wrap .sale-countdown span {
    color: #ff5252;
    font-family: Orbitron, sans-serif;
    font-weight: 800;
}

/* Prevent overlapping badges and keep ribbon responsive on small screens */
@media (max-width: 480px) {
    .product-card .p-cat-badge,
    .product-card .p-disc-badge {
        font-size: 8px;
        padding: 1.5px 6px;
        top: 6px;
    }
    .product-card .p-cat-badge {
        left: 6px;
    }
    .product-card .p-disc-badge {
        right: 6px;
    }
    .flash-sale-ribbon {
        top: 10px;
        left: -32px;
        width: 100px;
        font-size: 7.5px;
        padding: 3px 0;
    }
    .p-img-wrap .sale-countdown {
        bottom: 6px;
        left: 6px;
        right: 6px;
        font-size: 10px;
        padding: 4px 6px;
    }
}

/* Price history */
.price-history{
    display:flex;
    justify-content:flex-end;
    gap:6px;
    margin-bottom:2px;
    align-items:center;
    flex-wrap:wrap;
}

.price-history del{
    color: rgba(255, 255, 255, 0.85);
    font-size:10px;
}

.flash-price{
    font-size:19px;
    font-family:Orbitron,sans-serif;
    font-weight:900;
    color:#ffcf4d;
    text-shadow:
        0 0 10px rgba(255,190,0,.7),
        0 0 20px rgba(255,90,0,.4);
    animation:priceGlow 1.5s infinite;
}

@keyframes flashSweep{
    from{
        left:-140%;
    }
    to{
        left:180%;
    }
}

@keyframes flashSaleGlow{
    0%,100%{
        box-shadow:
            0 0 15px rgba(255,70,70,.25),
            0 0 40px rgba(255,120,0,.15);
    }
    50%{
        box-shadow:
            0 0 26px rgba(255,70,70,.55),
            0 0 60px rgba(255,120,0,.3);
    }
}

@keyframes borderPulse{
    50%{
        opacity:.25;
    }
}

@keyframes ribbonPulse{
    50%{
        filter:brightness(1.2);
    }
}

@keyframes priceGlow{
    50%{
        transform:scale(1.05);
        text-shadow:
            0 0 18px #ffbf00,
            0 0 35px #ff6a00;
    }
}

@keyframes discountPulse{
    50%{
        transform:scale(1.08);
    }
}