﻿/* ============================================
   PEACEOFFERINGZ - Retro Alien / Neon
   ============================================ */

:root {
  --bg-deep:       #0a0420;
  --bg-mid:        #1a0a3a;
  --bg-purple:     #2d0e5e;
  --neon-pink:     #ff2dd1;
  --neon-magenta:  #ff00aa;
  --neon-cyan:     #00f0ff;
  --neon-green:    #39ff14;
  --neon-yellow:   #fff03a;
  --neon-orange:   #ff6b1a;
  --text-bright:   #fff7ff;
  --text-dim:      #c8b8e8;
  --border-glow:   rgba(255, 45, 209, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Mono', monospace;
  background: var(--bg-deep);
  color: var(--text-bright);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* ============== ANIMATED BACKGROUND ============== */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 100%, #ff2dd1 0%, transparent 45%),
    radial-gradient(ellipse at 20% 60%, #4a0e8a 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, #00f0ff 0%, transparent 35%),
    linear-gradient(180deg, #0a0420 0%, #1a0a3a 40%, #2d0e5e 70%, #ff6b1a 95%, #ffaa1a 100%);
  background-color: var(--bg-deep);
}

.stars, .stars2 {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 80% 20%, #fff, transparent),
    radial-gradient(1px 1px at 30% 80%, #00f0ff, transparent),
    radial-gradient(2px 2px at 90% 60%, #fff, transparent),
    radial-gradient(1px 1px at 15% 50%, #ff2dd1, transparent),
    radial-gradient(1.5px 1.5px at 50% 15%, #fff, transparent),
    radial-gradient(1px 1px at 70% 40%, #fff, transparent);
  background-size: 100% 100%;
  animation: twinkle 4s ease-in-out infinite;
  opacity: 0.6;
}
.stars2 {
  background-position: 50% 50%;
  background-size: 80% 80%;
  animation-delay: 2s;
  opacity: 0.4;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

/* Retro grid floor */
.grid-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  background-image:
    linear-gradient(0deg, transparent 0%, rgba(255, 45, 209, 0.4) 100%),
    linear-gradient(90deg, transparent 49.5%, var(--neon-pink) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, var(--neon-pink) 50%, transparent 50.5%);
  background-size: 100% 100%, 60px 100%, 100% 60px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom;
  opacity: 0.35;
  animation: gridmove 3s linear infinite;
}
@keyframes gridmove {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 0 60px; }
}

.sun-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, var(--neon-orange) 0%, var(--neon-pink) 30%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  z-index: -1;
}

/* Scanlines overlay */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.05) 2px,
    rgba(0, 0, 0, 0.05) 4px
  );
  opacity: 0.6;
}

/* ============== NAVIGATION ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(10, 4, 32, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 0 30px rgba(255, 45, 209, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-bright);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan), inset 0 0 8px rgba(0, 240, 255, 0.3);
  object-fit: cover;
}

.brand-text {
  font-family: 'Bungee', cursive;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 45, 209, 0.6);
}

.brand-accent {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-bright);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--neon-cyan); }
.nav-links a:hover::after { width: 100%; }

.cart-btn {
  position: relative;
  background: transparent;
  border: 2px solid var(--neon-pink);
  color: var(--neon-pink);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 45, 209, 0.5), inset 0 0 8px rgba(255, 45, 209, 0.15);
  transition: all 0.3s;
}

.cart-btn:hover {
  background: var(--neon-pink);
  color: var(--bg-deep);
  transform: scale(1.08);
  box-shadow: 0 0 25px var(--neon-pink);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--neon-cyan);
  color: var(--bg-deep);
  font-family: 'Bungee', cursive;
  font-size: 0.7rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  padding: 4rem 3rem;
  gap: 3rem;
}

.hero-tag {
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--neon-cyan);
  animation: blink 1.5s ease-in-out infinite;
}

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

.hero-title {
  font-family: 'Monoton', cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-title span {
  display: block;
  opacity: 0;
  animation: slideIn 0.8s forwards;
}

.line-1 {
  color: var(--neon-pink);
  text-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
  animation-delay: 0.2s !important;
}
.line-2 {
  color: var(--text-bright);
  text-shadow: 0 0 15px var(--text-bright);
  animation-delay: 0.4s !important;
  transform: translateX(2rem);
}
.line-3 {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
  animation-delay: 0.6s !important;
  transform: translateX(-1rem);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0) translateX(var(--tx, 0)); }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--neon-pink);
  color: var(--bg-deep);
  font-family: 'Bungee', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 25px rgba(255, 45, 209, 0.6), 4px 4px 0 var(--neon-cyan);
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0 0 35px rgba(255, 45, 209, 0.8), 6px 6px 0 var(--neon-cyan);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 15px rgba(255, 45, 209, 0.6), 1px 1px 0 var(--neon-cyan);
}

.btn-ghost {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--neon-cyan);
  font-family: 'Bungee', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid var(--neon-cyan);
  transition: all 0.2s;
}

.btn-ghost:hover {
  background: var(--neon-cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 25px var(--neon-cyan);
}

/* UFO - logo image with float + glow animations */
.hero-ufo {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ufo-img {
  width: 380px;
  max-width: 90%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  animation: ufoFloat 5s ease-in-out infinite;
  filter:
    drop-shadow(0 0 30px var(--neon-pink))
    drop-shadow(0 0 60px rgba(0, 240, 255, 0.5));
}

@keyframes ufoFloat {
  0%,  100% { transform: translateY(0)     rotate(-1.5deg); }
  25%        { transform: translateY(-18px) rotate(1deg);   }
  50%        { transform: translateY(-28px) rotate(2deg);   }
  75%        { transform: translateY(-12px) rotate(-0.5deg);}
}

/* Pulsing glow ring behind the image */
.ufo-glow-ring {
  position: absolute;
  width: 360px;
  max-width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 209, 0.45) 0%, rgba(0, 240, 255, 0.25) 40%, transparent 70%);
  filter: blur(28px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%,  100% { opacity: 0.7; transform: scale(1);    }
  50%        { opacity: 1;   transform: scale(1.12); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--neon-pink);
  color: var(--bg-deep);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 2px solid var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-pink);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: 'Bungee', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

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

/* ============== SECTIONS ============== */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.section-title {
  font-family: 'Monoton', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-bright);
  text-shadow: 0 0 25px var(--neon-pink), 0 0 50px var(--neon-pink);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ============== SHOP ============== */
.shop {
  padding: 6rem 3rem;
  position: relative;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter {
  background: transparent;
  border: 2px solid rgba(255, 45, 209, 0.3);
  color: var(--text-dim);
  padding: 0.7rem 1.4rem;
  font-family: 'Bungee', cursive;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}

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

.filter.active {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: var(--bg-deep);
  box-shadow: 0 0 18px var(--neon-pink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: rgba(26, 10, 58, 0.75);
  border: 2px solid rgba(255, 45, 209, 0.25);
  backdrop-filter: blur(10px);
  overflow: visible;
  transition: all 0.4s;
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 240, 255, 0.15));
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 15px 40px rgba(255, 45, 209, 0.4), 0 0 30px rgba(0, 240, 255, 0.3);
}

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

.product-img {
  height: 240px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-mid));
}

.product-img-photo,
.product-img:has(.product-photo) {
  background: transparent;
}

.product-img-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  filter:
    drop-shadow(0 0 14px var(--glow-1))
    drop-shadow(0 0 30px var(--glow-2))
    drop-shadow(0 0 48px rgba(255, 45, 209, 0.28));
}

.cart-item-img .product-photo {
  padding: 0.35rem;
}

.product-info {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.product-cat {
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 6px var(--neon-cyan);
}

.product-name {
  font-family: 'Bungee', cursive;
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: 'Monoton', cursive;
  font-size: 1.6rem;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.add-btn {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 0.55rem 1rem;
  font-family: 'Bungee', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

.add-btn:hover {
  background: var(--neon-cyan);
  color: var(--bg-deep);
  box-shadow: 0 0 15px var(--neon-cyan);
}

/* ============== ABOUT ============== */
.about {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
  margin: 0.5rem 0 1.5rem;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed rgba(255, 45, 209, 0.3);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Monoton', cursive;
  font-size: 2.5rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  line-height: 1;
}

.stat-label {
  font-family: 'Bungee', cursive;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
}

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

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 0 50px var(--neon-pink), inset 0 0 30px rgba(255, 45, 209, 0.3);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

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

.about-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--neon-pink), transparent 60%);
  filter: blur(50px);
  opacity: 0.5;
  z-index: 1;
}

/* ============== FOOTER ============== */
.footer {
  background: rgba(10, 4, 32, 0.9);
  border-top: 2px solid var(--neon-pink);
  padding: 4rem 3rem 2rem;
  margin-top: 4rem;
  box-shadow: 0 -20px 40px rgba(255, 45, 209, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.brand-footer { margin-bottom: 1rem; }

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  font-family: 'Bungee', cursive;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.footer a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

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

/* ============== PAYMENT CARDS - EQUAL SIZE ============== */
.payments {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pay-card {
  width: 60px;
  height: 38px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  flex-shrink: 0;
  display: block;
}

.pay-card svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 45, 209, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-tag { color: var(--neon-cyan); }

.footer-policies {
  display: flex;
  gap: 1.4rem;
}

.footer-policies a {
  display: inline;
  color: var(--text-dim);
  text-decoration: none;
  margin: 0;
  font-family: 'VT323', monospace;
  font-size: 1rem;
  transition: color 0.2s;
}

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

/* ============== CART DRAWER ============== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #1a0a3a, #0a0420);
  border-left: 2px solid var(--neon-pink);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 50px rgba(255, 45, 209, 0.4);
}

.cart-drawer.open { right: 0; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-glow);
}

.cart-header h3 {
  font-family: 'Bungee', cursive;
  font-size: 1.2rem;
  color: var(--neon-pink);
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px var(--neon-pink);
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--text-bright);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.cart-close:hover {
  color: var(--neon-cyan);
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
.cart-items::-webkit-scrollbar-thumb { background: var(--neon-pink); border-radius: 3px; }

.cart-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-dim);
  font-family: 'Bungee', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.cart-empty-img {
  width: 160px;
  height: auto;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 45, 209, 0.4));
  animation: emptyBob 3s ease-in-out infinite;
}

@keyframes emptyBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-8px) rotate(3deg); }
}

.cart-empty-sub {
  margin-top: 0.8rem;
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  font-size: 1rem;
  text-shadow: 0 0 6px var(--neon-cyan);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(255, 45, 209, 0.2);
  align-items: center;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.cart-item-info { min-width: 0; }

.cart-item-name {
  font-family: 'Bungee', cursive;
  font-size: 0.78rem;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: 'Space Mono', monospace;
  color: var(--neon-cyan);
  font-size: 0.9rem;
  font-weight: 700;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  background: transparent;
  border: 1px solid var(--neon-pink);
  color: var(--neon-pink);
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-family: 'Bungee', cursive;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--neon-pink);
  color: var(--bg-deep);
}

.qty-display {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--text-bright);
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.3rem;
  transition: color 0.2s;
}

.remove-btn:hover { color: var(--neon-pink); }

.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--border-glow);
  background: rgba(10, 4, 32, 0.6);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-family: 'Bungee', cursive;
  font-size: 1.1rem;
  color: var(--text-bright);
}

.cart-total span:last-child {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  font-size: 1.4rem;
}

.cart-checkout {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.cart-payments {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pay-card-sm {
  width: 44px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.pay-card-sm svg { width: 100%; height: 100%; display: block; }

/* ============== TOAST ============== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--neon-pink);
  color: var(--bg-deep);
  padding: 0.9rem 1.6rem;
  font-family: 'Bungee', cursive;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  z-index: 2000;
  box-shadow: 0 0 30px var(--neon-pink), 5px 5px 0 var(--neon-cyan);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============== THE CREW ============== */
.crew {
  padding: 6rem 3rem 4rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.crew-card {
  position: relative;
  background: rgba(26, 10, 58, 0.55);
  border: 2px solid rgba(255, 45, 209, 0.25);
  backdrop-filter: blur(8px);
  padding: 1.5rem 1.2rem 1.8rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.3s,
              box-shadow 0.3s;
  overflow: hidden;
}

.crew-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at top, var(--accent-glow, rgba(255,45,209,0.25)), transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.crew-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 50px rgba(255, 45, 209, 0.35), 0 0 30px rgba(0, 240, 255, 0.25);
}

.crew-card:hover::before { opacity: 1; }

.crew-1 { --accent-glow: rgba(255, 105, 180, 0.35); }
.crew-2 { --accent-glow: rgba(186, 85, 255, 0.35); }
.crew-3 { --accent-glow: rgba(57, 255, 20, 0.30); }
.crew-4 { --accent-glow: rgba(255, 107, 26, 0.32); }

.crew-img-wrap {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  z-index: 1;
}

.crew-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: crewBob 4s ease-in-out infinite;
}

.crew-card:nth-child(1) .crew-img { animation-delay: 0s; }
.crew-card:nth-child(2) .crew-img { animation-delay: 0.5s; }
.crew-card:nth-child(3) .crew-img { animation-delay: 1s; }
.crew-card:nth-child(4) .crew-img { animation-delay: 1.5s; }

@keyframes crewBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}

.crew-card:hover .crew-img {
  transform: translateY(-15px) rotate(0deg) scale(1.05);
  animation-play-state: paused;
}

.crew-info {
  position: relative;
  z-index: 2;
}

.crew-tag {
  display: inline-block;
  font-family: 'VT323', monospace;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 6px var(--neon-cyan);
}

.crew-name {
  font-family: 'Monoton', cursive;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-bright);
  text-shadow: 0 0 15px var(--neon-pink), 0 0 25px var(--neon-pink);
  line-height: 1;
  margin: 0.2rem 0;
}

.crew-role {
  font-family: 'Bungee', cursive;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 0.6rem;
}

.crew-bio {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

/* ============== SHOP DECOR (surfer alien peek) ============== */
.shop {
  position: relative;
  overflow: hidden;
}

.shop-decor {
  position: absolute;
  top: 1rem;
  right: -60px;
  width: 200px;
  height: auto;
  opacity: 0.18;
  transform: rotate(15deg);
  pointer-events: none;
  filter: drop-shadow(0 0 20px var(--neon-cyan));
  animation: shopDecorBob 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes shopDecorBob {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50%      { transform: rotate(12deg) translateY(-15px); }
}

.shop .section-head,
.shop .filters,
.shop .product-grid {
  position: relative;
  z-index: 1;
}

/* ============== ABOUT COMPANION (camera alien) ============== */
.about-visual { position: relative; }

.about-companion {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 180px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 18px rgba(0, 240, 255, 0.45));
  animation: companionFloat 4s ease-in-out infinite;
}

@keyframes companionFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}


@media (max-width: 1100px) {
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-ufo { height: 280px; }
  .shop, .about, .footer, .crew { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-text .section-title { text-align: center; }
  .about-companion { width: 130px; bottom: -10px; right: 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .brand-text { font-size: 1.1rem; }
  .shop-decor { width: 140px; opacity: 0.12; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; gap: 1rem; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .hero-title { font-size: 3rem; }
  .line-2, .line-3 { transform: none !important; }
  .crew-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .crew-img-wrap { height: 200px; }
}
