@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #060109;
  --bg-alt: #0b0410;
  --card-bg: #100816;
  --red: #ff2596;
  --red-glow: #ff259666;
  --violet: #8b2fff;
  --cyan: #00d4c8;
  --gold: #ffe135;
  --text: #f4eef8;
  --text-dim: #b9a9c9;
  --text-faint: #7a6a8a;
  --border: #2a1a35;
  --radius: 14px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --display: 'Bebas Neue', var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); letter-spacing: 0.02em; margin: 0 0 0.4em; }
p { color: var(--text-dim); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: rgba(6, 1, 9, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.brand-accent { color: var(--red); text-shadow: 0 0 18px var(--red-glow); }

.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--red); }

.nav-cta { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.nav-ig-link { display: flex; align-items: center; color: var(--text-dim); transition: color 0.2s; }
.nav-ig-link:hover { color: var(--red); }

@media (max-width: 720px) {
  .main-nav { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), #a4002a);
  color: #fff;
  box-shadow: 0 0 24px var(--red-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px var(--red-glow); }

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-ghost {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}
.btn-ghost:hover { background: var(--red); color: #fff; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 20%, var(--red-glow), transparent 40%),
    radial-gradient(circle at 80% 70%, #8b2fff55, transparent 45%),
    radial-gradient(circle at 50% 100%, #00f0ff33, transparent 40%);
  animation: drift 14s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 2%) scale(1.08); }
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.95;
  margin: 0.2em 0 0.3em;
}
.hero-accent {
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-section { padding: 5rem 2rem; max-width: 1280px; margin: 0 auto; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.section-head h2 { font-size: 2.4rem; }

.filter-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.filter-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  min-width: 4.5rem;
}
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.filter-chip {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--red); color: var(--text); }
.filter-chip.active { background: var(--red); border-color: var(--red); color: #fff; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
}
.loading, .empty { color: var(--text-faint); padding: 3rem 0; text-align: center; grid-column: 1/-1; }

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 14px 40px -12px var(--red-glow);
}
.product-card .thumb {
  aspect-ratio: 5/7;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.product-card .info { padding: 1rem 1.1rem 1.2rem; }
.product-card .card-cat {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.product-card .card-name { font-family: var(--display); font-size: 1.4rem; margin: 0.15em 0 0.3em; letter-spacing: 0.02em; }
.product-card .card-price { color: var(--gold); font-weight: 600; font-family: var(--sans); }
.badge-sold, .badge-featured, .badge-type {
  position: absolute;
  top: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}
.badge-sold, .badge-featured { left: 0.7rem; }
.badge-sold { background: #000000cc; color: #ff5470; border: 1px solid var(--red); }
.badge-featured { background: var(--gold); color: #1a1100; }
.badge-type {
  right: 0.7rem;
  background: #000000b3;
  color: var(--cyan);
  border: 1px solid var(--border);
}
.badge-type.type-original { color: var(--gold); }
.badge-type.type-magnet { color: var(--red); }
.badge-type.type-print { color: var(--cyan); }
.badge-type.type-sticker { color: #39ff9d; }

.modal-detail .badge-type {
  position: static;
  display: inline-block;
  margin-bottom: 0.6rem;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.25rem 0.7rem;
}

/* ---------- About ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px;
  margin: 2rem auto 6rem;
  padding: 0 2rem;
}
.about-art {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, var(--red-glow), transparent 55%),
    radial-gradient(circle at 75% 80%, #8b2fff55, transparent 55%),
    linear-gradient(135deg, #12081a, #05010a);
  border: 1px solid var(--border);
  position: relative;
}
.about-art::after {
  content: "✒";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.5;
  text-shadow: 0 0 40px var(--red-glow);
}
.about-copy h2 { font-size: 2.2rem; }
.social-links { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem; }
.social-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 860px) {
  .about-section { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-section { max-width: 1000px; margin: 0 auto 6rem; padding: 0 2rem; }
.faq-section h2 { text-align: center; font-size: 2.2rem; margin-bottom: 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.faq-item h3 { font-family: var(--sans); font-size: 1rem; color: var(--red); margin-bottom: 0.4em; }
.faq-item p { margin: 0; font-size: 0.92rem; }
@media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-faint);
}
.site-footer .brand { justify-content: center; margin-bottom: 0.6rem; display: block; }
.site-footer p { font-size: 0.85rem; }
.footer-admin-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--text-faint);
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-admin-link:hover { color: var(--red); opacity: 1; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 0, 6, 0.82);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px -20px #000000cc, 0 0 60px -10px var(--red-glow);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00000080;
  border: 1px solid var(--border);
  color: var(--text);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.modal-close:hover { border-color: var(--red); color: var(--red); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.modal-body img { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.modal-detail { padding: 2.2rem; display: flex; flex-direction: column; }
.modal-detail .card-cat { color: var(--red); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.modal-detail h2 { font-size: 2rem; margin: 0.2em 0 0.3em; }
.modal-detail .price { color: var(--gold); font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; font-family: var(--sans); }
.modal-detail .desc { flex: 1; margin-bottom: 1.4rem; }
.format-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  background: #ffffff0a;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1rem;
}
.format-note a { color: var(--cyan); text-decoration: underline; }
.format-note.format-exclusive { color: var(--gold); border-color: var(--gold); }

.shipping-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff08;
}
.shipping-row label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); }
.shipping-row select {
  background: #0a0410;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
}
.shipping-total { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-left: auto; }

.buy-stack { display: flex; flex-direction: column; gap: 0.7rem; }
.paypal-slot { min-height: 45px; }
.checkout-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 0.6rem; }
@media (max-width: 700px) {
  .modal-body { grid-template-columns: 1fr; }
  .modal-body img { aspect-ratio: 5/7; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: var(--card-bg);
  border: 1px solid var(--red);
  color: var(--text);
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 300;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 10px 30px -8px #000c;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
