/* ============================================================
   JA TO MRDAM — FUNKY / WILD / PUNK-MEETS-DIGITAL
   Proposal #2: The one that melts eyeballs (in a good way)
   ============================================================ */

/* --- Google Fonts loaded in HTML:
   Space Mono (monospace hacker vibe)
   Bebas Neue (ultra-bold display)
   Permanent Marker (hand-drawn punk)
   --- */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Neon palette */
  --neon-pink: #ff2d95;
  --neon-cyan: #00f0ff;
  --acid-green: #39ff14;
  --uv-purple: #b026ff;
  --neon-orange: #ff6b35;
  --neon-yellow: #ffe600;

  /* Backgrounds */
  --bg-void: #0a0a0f;
  --bg-dark: #111118;
  --bg-card: #1a1a25;
  --bg-card-hover: #222233;

  /* Text */
  --text-white: #f0f0f5;
  --text-gray: #8888aa;
  --text-muted: #555577;

  /* Fonts */
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-marker: 'Permanent Marker', cursive;
  --font-body: 'Space Mono', monospace;

  /* Sizes */
  --nav-height: 70px;
  --container-max: 1300px;
  --radius-brutal: 0px;
  --radius-small: 4px;

  /* Glitch colors */
  --glitch-1: #ff2d95;
  --glitch-2: #00f0ff;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--bg-void);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-pink), var(--uv-purple));
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--neon-cyan), var(--acid-green));
}

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  cursor: crosshair;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

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

::selection {
  background: var(--neon-pink);
  color: var(--bg-void);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.text-center { text-align: center; }

.neon-text-pink { color: var(--neon-pink); text-shadow: 0 0 20px rgba(255,45,149,0.5); }
.neon-text-cyan { color: var(--neon-cyan); text-shadow: 0 0 20px rgba(0,240,255,0.5); }
.neon-text-green { color: var(--acid-green); text-shadow: 0 0 20px rgba(57,255,20,0.5); }
.neon-text-purple { color: var(--uv-purple); text-shadow: 0 0 20px rgba(176,38,255,0.5); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   ANIMATED BACKGROUND — scanlines + noise
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,240,255,0.015) 2px,
    rgba(0,240,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 10000;
  animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--neon-pink);
  color: var(--bg-void);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  z-index: 100;
}

.marquee-strip .marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee-strip .marquee-content span {
  padding: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,45,149,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-marker);
  font-size: 22px;
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(255,45,149,0.6), 0 0 30px rgba(255,45,149,0.3);
  letter-spacing: 1px;
  position: relative;
}

.nav-logo:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0,240,255,0.6), 0 0 30px rgba(0,240,255,0.3);
  animation: glitch-text 0.3s ease;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-gray);
  padding: 8px 14px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: '>';
  position: absolute;
  left: 2px;
  opacity: 0;
  color: var(--neon-cyan);
  transition: all 0.3s ease;
  transform: translateX(-5px);
}

.nav-links a:hover {
  color: var(--text-white);
  text-shadow: 0 0 8px rgba(0,240,255,0.4);
}

.nav-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.nav-links a.active {
  color: var(--neon-pink);
  text-shadow: 0 0 8px rgba(255,45,149,0.4);
}

.nav-cart {
  position: relative;
  font-size: 13px;
  color: var(--neon-cyan) !important;
  border: 1px solid var(--neon-cyan);
  padding: 8px 16px !important;
}

.nav-cart:hover {
  background: var(--neon-cyan);
  color: var(--bg-void) !important;
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
}

.cart-count {
  background: var(--neon-pink);
  color: var(--bg-void);
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  animation: pulse-badge 2s ease infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); box-shadow: 0 0 10px var(--neon-pink); }
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--neon-pink);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(255,45,149,0.5);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(176,38,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,45,149,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(0,240,255,0.1) 0%, transparent 60%);
  animation: hero-bg-shift 8s ease-in-out infinite alternate;
}

@keyframes hero-bg-shift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Floating geometric shapes */
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(255,45,149,0.2);
  top: 15%;
  right: 10%;
  transform: rotate(45deg);
  animation: float-shape 15s ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50% { transform: rotate(90deg) translateY(-30px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero-pre {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-marker);
  font-size: clamp(60px, 12vw, 140px);
  line-height: 0.95;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  animation: glitch-text 3s ease-in-out infinite;
}

.hero-title .word-ja { color: var(--text-white); }
.hero-title .word-to { color: var(--neon-cyan); }
.hero-title .word-mrdam {
  color: var(--neon-pink);
  text-shadow:
    0 0 20px rgba(255,45,149,0.6),
    0 0 40px rgba(255,45,149,0.3),
    0 0 80px rgba(255,45,149,0.15);
}

/* Glitch effect for title */
@keyframes glitch-text {
  0%, 92%, 100% { transform: translate(0); }
  93% { transform: translate(-3px, 2px); }
  94% { transform: translate(3px, -2px); }
  95% { transform: translate(-2px, -1px); }
  96% { transform: translate(2px, 1px); }
}

.hero-title::before,
.hero-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-title::before {
  color: var(--glitch-1);
  z-index: -1;
  animation: glitch-layer-1 4s ease-in-out infinite;
}

.hero-title::after {
  color: var(--glitch-2);
  z-index: -2;
  animation: glitch-layer-2 4s ease-in-out infinite;
}

@keyframes glitch-layer-1 {
  0%, 90%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  91% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 0); }
  93% { clip-path: inset(50% 0 20% 0); transform: translate(4px, 0); }
  95% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 0); }
}

@keyframes glitch-layer-2 {
  0%, 88%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  89% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 0); }
  92% { clip-path: inset(30% 0 40% 0); transform: translate(-3px, 0); }
  94% { clip-path: inset(70% 0 5% 0); transform: translate(2px, 0); }
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-gray);
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.hero-sub em {
  font-style: normal;
  color: var(--acid-green);
  text-shadow: 0 0 10px rgba(57,255,20,0.4);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--neon-pink);
  color: var(--bg-void);
  box-shadow: 0 0 20px rgba(255,45,149,0.3);
}

.btn-primary:hover {
  background: var(--text-white);
  color: var(--bg-void);
  box-shadow: 0 0 40px rgba(255,45,149,0.5);
  transform: skewX(-3deg) scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0,240,255,0.2);
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--bg-void);
  box-shadow: 0 0 30px rgba(0,240,255,0.4);
  transform: skewX(3deg) scale(1.05);
}

.btn-small {
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 2px;
}

.btn-ghost {
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--text-muted);
}

.btn-ghost:hover {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255,45,149,0.2);
}

.btn-acid {
  background: var(--acid-green);
  color: var(--bg-void);
  box-shadow: 0 0 20px rgba(57,255,20,0.3);
}

.btn-acid:hover {
  box-shadow: 0 0 40px rgba(57,255,20,0.5);
  transform: scale(1.05) rotate(-1deg);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.section-title .outline-text {
  -webkit-text-stroke: 2px var(--neon-pink);
  color: transparent;
}

.section-title .fill-text {
  color: var(--text-white);
}

.section-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 16px auto 0;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,45,149,0.15);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--uv-purple), var(--neon-cyan));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  border-color: rgba(255,45,149,0.4);
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(255,45,149,0.1);
}

.category-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(1deg);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0);
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(255,45,149,0.5));
}

.category-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 8px;
}

.category-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-gray);
  letter-spacing: 1px;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,38,255,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  -webkit-text-stroke: 2px var(--neon-pink);
  color: transparent;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.step-icon {
  font-size: 50px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(176,38,255,0.15), rgba(255,45,149,0.15));
  border-top: 1px solid rgba(255,45,149,0.2);
  border-bottom: 1px solid rgba(255,45,149,0.2);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255,45,149,0.05) 60deg,
    transparent 120deg,
    rgba(0,240,255,0.05) 180deg,
    transparent 240deg,
    rgba(176,38,255,0.05) 300deg,
    transparent 360deg
  );
  animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner .cta-title {
  font-family: var(--font-marker);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.brand-statement .big-quote {
  font-family: var(--font-marker);
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 30px;
}

.brand-statement .big-quote .highlight-pink {
  color: var(--neon-pink);
  text-shadow: 0 0 30px rgba(255,45,149,0.4);
}

.brand-statement .big-quote .highlight-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 30px rgba(0,240,255,0.4);
}

.brand-statement .brand-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,45,149,0.15);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: var(--font-marker);
  font-size: 24px;
  color: var(--neon-pink);
  text-shadow: 0 0 15px rgba(255,45,149,0.4);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.8;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 8px; }

.footer ul a {
  font-size: 12px;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.footer ul a:hover {
  color: var(--neon-pink);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
}

.footer-bottom a:hover {
  color: var(--neon-pink);
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,45,149,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0,240,255,0.1) 0%, transparent 50%);
}

.page-header .page-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  display: block;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-header .page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.page-header .page-title .outline {
  -webkit-text-stroke: 2px var(--neon-pink);
  color: transparent;
}

.page-header .page-desc {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-gray);
  max-width: 550px;
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 60px 0 100px;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  align-self: start;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,45,149,0.2);
}

.edition-list { list-style: none; }

.edition-list li {
  margin-bottom: 4px;
}

.edition-list a {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-gray);
  padding: 10px 14px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.edition-list a:hover,
.edition-list a.active {
  color: var(--neon-pink);
  border-left-color: var(--neon-pink);
  background: rgba(255,45,149,0.05);
  text-shadow: 0 0 8px rgba(255,45,149,0.3);
}

/* Top filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-gray);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,240,255,0.15);
}

.filter-select {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--bg-card);
  color: var(--text-gray);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  cursor: pointer;
  appearance: none;
  outline: none;
}

.filter-select:focus {
  border-color: var(--neon-cyan);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: rgba(255,45,149,0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.3),
    0 0 20px rgba(255,45,149,0.1);
}

.product-card:nth-child(odd):hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.product-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.5deg);
}

.product-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}

.product-img::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,45,149,0.1), transparent);
  transition: left 0.6s ease;
}

.product-card:hover .product-img::after {
  left: 100%;
}

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 10px;
}

.badge-material {
  background: var(--uv-purple);
  color: var(--text-white);
}

.badge-bestseller {
  background: var(--neon-pink);
  color: var(--bg-void);
  animation: badge-glow 2s ease infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(255,45,149,0.3); }
  50% { box-shadow: 0 0 15px rgba(255,45,149,0.6); }
}

.badge-new {
  background: var(--acid-green);
  color: var(--bg-void);
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 4px;
}

.product-variant {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars {
  color: var(--neon-yellow);
  font-size: 13px;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 10px;
  color: var(--text-muted);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255,45,149,0.3);
  letter-spacing: 1px;
}

.product-stock {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--acid-green);
  letter-spacing: 1px;
}

.product-stock.low {
  color: var(--neon-orange);
  animation: blink 1.5s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn-cart {
  width: 100%;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px;
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cart:hover {
  background: var(--neon-cyan);
  color: var(--bg-void);
  box-shadow: 0 0 25px rgba(0,240,255,0.3);
  transform: skewX(-2deg);
}

/* ============================================================
   CUSTOM / NA MIRU PAGE
   ============================================================ */
.custom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.custom-step {
  background: var(--bg-card);
  border: 1px solid rgba(0,240,255,0.1);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.custom-step:hover {
  border-color: rgba(0,240,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.custom-step-num {
  font-family: var(--font-display);
  font-size: 60px;
  -webkit-text-stroke: 1px var(--neon-cyan);
  color: transparent;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.custom-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 10px;
}

.custom-step-text {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Pricing table */
.pricing-section {
  margin-bottom: 80px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
}

.pricing-table thead {
  background: rgba(255,45,149,0.1);
}

.pricing-table th {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-pink);
  padding: 16px 12px;
  text-align: center;
  border-bottom: 2px solid rgba(255,45,149,0.3);
}

.pricing-table th:first-child {
  text-align: left;
}

.pricing-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.pricing-table td:first-child {
  text-align: left;
  color: var(--text-white);
  font-weight: bold;
}

.pricing-table tbody tr:hover {
  background: rgba(0,240,255,0.03);
}

.pricing-table tbody tr:hover td {
  color: var(--text-white);
}

.price-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* Order form */
.order-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-white);
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255,45,149,0.15);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.file-upload {
  border: 2px dashed rgba(255,45,149,0.3);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255,45,149,0.02);
}

.file-upload:hover {
  border-color: var(--neon-pink);
  background: rgba(255,45,149,0.05);
}

.file-upload-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.file-upload-text {
  font-size: 12px;
  color: var(--text-gray);
}

.file-upload-text strong {
  color: var(--neon-pink);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 2;
  margin-bottom: 16px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.about-visual .visual-box {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
  border: 1px solid rgba(255,45,149,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.about-visual .visual-box::before {
  content: '';
  position: absolute;
  width: 150%; height: 150%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255,45,149,0.05),
    transparent,
    rgba(0,240,255,0.05),
    transparent
  );
  animation: rotate-bg 15s linear infinite;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(176,38,255,0.3);
  transform: translateY(-5px) rotate(-1deg);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--uv-purple);
  margin-bottom: 8px;
}

.value-text {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.contact-card:hover {
  border-color: rgba(0,240,255,0.3);
  transform: translateY(-5px);
}

.contact-card-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.contact-card-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 13px;
  color: var(--text-gray);
}

.contact-card-value a {
  color: var(--text-gray);
}

.contact-card-value a:hover {
  color: var(--neon-pink);
}

.contact-form-section {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-white);
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  border-color: rgba(255,45,149,0.4);
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,45,149,0.2);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-card));
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(10,10,15,0.9));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 4px;
}

.gallery-overlay-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-pink);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   SKEWED DIVIDER STRIPS
   ============================================================ */
.skew-strip {
  padding: 10px 0;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-1deg) scaleX(1.05);
  margin: -2px 0;
  position: relative;
  z-index: 10;
}

.skew-strip-pink {
  background: var(--neon-pink);
  color: var(--bg-void);
}

.skew-strip-cyan {
  background: var(--neon-cyan);
  color: var(--bg-void);
  transform: rotate(1deg) scaleX(1.05);
}

.skew-strip-purple {
  background: var(--uv-purple);
  color: var(--text-white);
}

/* ============================================================
   WILD DECORATIVE ELEMENTS
   ============================================================ */
.corner-decoration {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  z-index: 100;
  opacity: 0.3;
}

.floating-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon-pink);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.15;
  pointer-events: none;
  white-space: nowrap;
}

/* ============================================================
   ANIMATED GRADIENT BORDER
   ============================================================ */
.gradient-border {
  position: relative;
  padding: 3px;
  background: linear-gradient(135deg, var(--neon-pink), var(--uv-purple), var(--neon-cyan), var(--acid-green));
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
}

.gradient-border-inner {
  background: var(--bg-void);
  padding: 30px;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,15,0.98);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid rgba(255,45,149,0.3);
  }

  .nav-links.open { display: flex; }

  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(48px, 15vw, 80px); }
  .hero-ctas { flex-direction: column; align-items: center; }

  .categories-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .custom-steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .pricing-table { font-size: 11px; }
  .pricing-table th, .pricing-table td { padding: 10px 6px; }

  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

  .skew-strip { font-size: 11px; letter-spacing: 3px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .btn { padding: 14px 24px; font-size: 15px; }
}

/* ============================================================
   EXTRA WILD ANIMATIONS
   ============================================================ */

/* Neon flicker for emphasis text */
.neon-flicker {
  animation: neon-flicker 3s ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 4px var(--neon-pink),
      0 0 11px var(--neon-pink),
      0 0 19px var(--neon-pink),
      0 0 40px var(--neon-pink);
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

/* Floating animation for decorative elements */
.float-anim {
  animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Color cycle for links/accents */
.color-cycle {
  animation: color-cycle 5s linear infinite;
}

@keyframes color-cycle {
  0% { color: var(--neon-pink); }
  25% { color: var(--neon-cyan); }
  50% { color: var(--acid-green); }
  75% { color: var(--uv-purple); }
  100% { color: var(--neon-pink); }
}

/* Wobble on hover */
.wobble-hover:hover {
  animation: wobble 0.5s ease;
}

@keyframes wobble {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

/* Typing cursor effect */
.typing-cursor::after {
  content: '|';
  color: var(--neon-cyan);
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Shake effect for attention */
.shake-attention {
  animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
  0% { transform: translateX(0); }
  100% { transform: translateX(3px); }
}
