/* ═══════════════════════════════════════════════════════
   STATIC REVIVAL — MAIN STYLESHEET
   assets/css/main.css
═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg:         #0a0a0f;
  --bg-2:       #0e0e16;
  --blue:       #00c3ff;
  --pink:       #ff2d78;
  --chrome:     #c8d6e5;
  --green:      #a3ff47;
  --muted:      #3a3a50;
  --text:       #e8eaf0;
  --text-dim:   #7a7a9a;

  --font-head:  'Space Grotesk', sans-serif;
  --font-mono:  'DM Mono', monospace;

  --scanline: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.18) 2px,
    rgba(0,0,0,0.18) 4px
  );

  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 3rem);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }

/* ─── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--muted); border-radius: 3px; }

/* ─── CRT SCANLINE OVERLAY ───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--scanline);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ─── CONTAINER ──────────────────────────────────────── */
.sr-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes glitch-1 {
  0%,100% { clip-path: inset(0 0 95% 0);  transform: translate(-3px,0); }
  20%     { clip-path: inset(60% 0 20% 0); transform: translate(3px,0); }
  40%     { clip-path: inset(30% 0 50% 0); transform: translate(-2px,0); }
  60%     { clip-path: inset(80% 0 5% 0);  transform: translate(2px,0); }
  80%     { clip-path: inset(10% 0 75% 0); transform: translate(-4px,0); }
}
@keyframes glitch-2 {
  0%,100% { clip-path: inset(50% 0 30% 0); transform: translate(3px,0);  color: var(--pink); }
  25%     { clip-path: inset(15% 0 70% 0); transform: translate(-3px,0); color: var(--blue); }
  50%     { clip-path: inset(70% 0 10% 0); transform: translate(4px,0);  color: var(--green); }
  75%     { clip-path: inset(5% 0 80% 0);  transform: translate(-2px,0); color: var(--pink); }
}
@keyframes flicker {
  0%,100% { opacity: 1; }
  92%     { opacity: 1; }
  93%     { opacity: 0.7; }
  94%     { opacity: 1; }
  97%     { opacity: 0.85; }
  98%     { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes iridescent {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes chrome-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 300% center; }
}
@keyframes pixel-pulse {
  0%,100% { opacity: 0.04; }
  50%     { opacity: 0.08; }
}
@keyframes bump {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.5); }
  100% { transform: scale(1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,214,229,0.12);
  padding: 0 var(--container-pad);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--scanline);
  opacity: 0.5;
  pointer-events: none;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 0.12em;
  display: inline-block;
  background: linear-gradient(90deg, var(--chrome) 0%, #fff 40%, var(--blue) 55%, var(--chrome) 70%, var(--pink) 85%, var(--chrome) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chrome-shine 4s linear infinite;
  position: relative;
  z-index: 1;
}
/* Hide default WP custom logo styling */
.nav-logo .custom-logo-link { display: contents; }
.nav-logo .custom-logo { max-height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
  position: relative;
  z-index: 1;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item a { color: var(--blue); }

.nav-cart { position: relative; }
.nav-cart-link { display: flex; align-items: center; gap: 0.4rem; }
.cart-badge {
  background: var(--pink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform 0.2s;
}
.cart-badge.bump { animation: bump 0.3s ease; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--chrome);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,15,0.6);
  z-index: 98;
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.active { display: block; }

@media (max-width: 768px) {
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: min(280px, 80vw);
    height: calc(100vh - 60px);
    background: var(--bg-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--container-pad);
    gap: 1.5rem;
    z-index: 99;
    border-left: 1px solid rgba(200,214,229,0.1);
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem,8vw,6rem) var(--container-pad);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,195,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,45,120,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(163,255,71,0.04) 0%, transparent 60%);
  animation: iridescent 8s ease infinite;
  background-size: 200% 200%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--scanline);
  opacity: 0.6;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,214,229,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,229,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: pixel-pulse 3s ease-in-out infinite;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem,1.5vw,0.75rem);
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.5rem,12vw,9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  display: inline-block;
  animation: flicker 5s infinite;
  margin-bottom: 0.3em;
}
.glitch-layer {
  position: absolute;
  inset: 0;
  color: var(--blue);
}
.glitch-layer:nth-child(1) { animation: glitch-1 3.5s infinite steps(1); color: var(--blue); }
.glitch-layer:nth-child(2) { animation: glitch-2 2.7s infinite steps(1); }
.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem,2vw,0.9rem);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--muted), transparent);
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.15); }
.btn-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 20px rgba(255,45,120,0.4), 0 0 40px rgba(255,45,120,0.15);
}
.btn-pink:hover {
  box-shadow: 0 0 30px rgba(255,45,120,0.6), 0 0 60px rgba(255,45,120,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 0 16px rgba(0,195,255,0.2), inset 0 0 16px rgba(0,195,255,0.05);
}
.btn-outline:hover {
  background: rgba(0,195,255,0.08);
  box-shadow: 0 0 24px rgba(0,195,255,0.4), inset 0 0 20px rgba(0,195,255,0.08);
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--pink);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 1.5rem;
  font-weight: 500;
}
.marquee-item.star { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem,5vw,3.5rem);
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem,5vw,3rem);
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════════════ */
.products {
  padding: clamp(3rem,8vw,6rem) var(--container-pad);
  background: var(--bg-2);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px)  { .products-grid { grid-template-columns: repeat(3,1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4,1fr); } }

.products-footer {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Product Card ─────────────────────────────────── */
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200,214,229,0.08);
  background: rgba(14,14,22,0.8);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(200,214,229,0.25);
  transform: translateY(-3px);
}
.product-img {
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.product-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-photo { transform: scale(1.04); }
.product-img-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-img-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem;
  line-height: 1.6;
}
.grad-1 { background: linear-gradient(135deg,#1a0a2e 0%,#0d1b3e 40%,#0a1a30 100%); }
.grad-2 { background: linear-gradient(135deg,#1c0a1a 0%,#2a0a20 50%,#0a0a1f 100%); }
.grad-3 { background: linear-gradient(135deg,#0a1a0a 0%,#0d2a1a 50%,#0a1f1a 100%); }
.grad-4 { background: linear-gradient(135deg,#1a1a0a 0%,#2a1a0a 50%,#1a0a0a 100%); }
.grad-5 { background: linear-gradient(135deg,#0a0a2e 0%,#1a0a3e 40%,#2a0a2a 100%); }
.grad-6 { background: linear-gradient(135deg,#0d1a0a 0%,#1a2a0a 50%,#0a1a1a 100%); }
.grad-7 { background: linear-gradient(135deg,#1a0a0a 0%,#2e0a18 50%,#1a0a2e 100%); }
.grad-8 { background: linear-gradient(135deg,#0a1a2e 0%,#0a2a1a 50%,#1a0a2e 100%); }

.product-card-hover-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.8rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  border: none;
  width: 100%;
  display: block;
}
.product-card:hover .product-card-hover-btn { transform: translateY(0); }
.product-card.sold-out .product-card-hover-btn { display: none; }

.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.65);
  display: none;
  align-items: center;
  justify-content: center;
}
.product-card.sold-out .sold-out-overlay { display: flex; }
.sold-out-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
  border: 1px solid var(--chrome);
  padding: 0.4rem 0.8rem;
  background: rgba(10,10,15,0.8);
}
.product-info {
  padding: 0.9rem;
  border-top: 1px solid rgba(200,214,229,0.06);
  display: block;
}
.product-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 500;
}
.product-card.sold-out .product-name,
.product-card.sold-out .product-tag,
.product-card.sold-out .product-price { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════
   FEATURE STRIP
═══════════════════════════════════════════════════════ */
.features {
  padding: clamp(2.5rem,6vw,4rem) var(--container-pad);
  background: var(--bg);
  border-top: 1px solid rgba(200,214,229,0.08);
  border-bottom: 1px solid rgba(200,214,229,0.08);
}
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-inner { grid-template-columns: repeat(3,1fr); } }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 2.5rem;
  gap: 0.75rem;
  position: relative;
}
@media (max-width: 767px) {
  .feature-item + .feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,214,229,0.15), transparent);
  }
}
@media (min-width: 768px) {
  .feature-item + .feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 100%;
    background: linear-gradient(var(--bg), rgba(200,214,229,0.15), var(--bg));
  }
}
.feature-icon { font-size: 1.4rem; color: var(--green); line-height: 1; }
.feature-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--chrome);
  text-transform: uppercase;
}
.feature-desc {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 200px;
}

/* ═══════════════════════════════════════════════════════
   LOOKBOOK
═══════════════════════════════════════════════════════ */
.lookbook {
  padding: clamp(3rem,8vw,6rem) var(--container-pad);
  background: var(--bg-2);
}
.lookbook-grid {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .lookbook-grid { columns: 3; column-gap: 1.25rem; } }

.lookbook-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.lookbook-item:hover .lookbook-overlay { opacity: 1; }
.lookbook-img {
  width: 100%;
  display: block;
  position: relative;
}
.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,45,120,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lookbook-overlay-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 1rem;
}
.lb-1 { height: 280px; background: linear-gradient(160deg,#0d0d20 0%,#1a0a2e 40%,#2a0a1a 100%); }
.lb-2 { height: 180px; background: linear-gradient(140deg,#0a1a30 0%,#0a2a1a 100%); }
.lb-3 { height: 220px; background: linear-gradient(150deg,#1a0a18 0%,#0a0a30 100%); }
.lb-4 { height: 190px; background: linear-gradient(135deg,#0a2a10 0%,#1a1a0a 100%); }
.lb-5 { height: 260px; background: linear-gradient(155deg,#200a2e 0%,#0a0a1a 60%,#0a1a2e 100%); }
.lb-6 { height: 200px; background: linear-gradient(145deg,#1a0a0a 0%,#2e0a18 60%,#0a0a1a 100%); }
.lookbook-img-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about {
  padding: clamp(4rem,10vw,8rem) var(--container-pad);
  background: var(--bg);
  text-align: center;
}
.about-inner {
  max-width: 640px;
  margin: 0 auto;
}
.about-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.15;
}
.about-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--muted);
}
.about-divider::before,
.about-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--muted);
}
.about-divider-star { font-size: 0.8rem; color: var(--chrome); }
.about p, .about-inner p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  text-align: left;
}

/* ═══════════════════════════════════════════════════════
   EMAIL SIGNUP
═══════════════════════════════════════════════════════ */
.signup {
  padding: clamp(4rem,10vw,7rem) var(--container-pad);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.signup-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,214,229,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,214,229,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  animation: pixel-pulse 4s ease-in-out infinite;
}
.signup-inner { position: relative; max-width: 500px; margin: 0 auto; }
.signup-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem,4vw,2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.signup-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.signup-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 1rem;
}
.signup-input {
  flex: 1;
  background: rgba(200,214,229,0.05);
  border: 1px solid rgba(200,214,229,0.15);
  border-right: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-input::placeholder { color: var(--text-dim); }
.signup-input:focus { border-color: rgba(0,195,255,0.5); }
.signup-btn {
  background: var(--pink);
  color: #fff;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  transition: filter 0.2s;
  white-space: nowrap;
}
.signup-btn:hover { filter: brightness(1.2); }
.signup-fine {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.signup-success {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  padding: clamp(3rem,7vw,5rem) 0 2rem;
  background: var(--bg);
  border-top: 1px solid rgba(200,214,229,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--chrome) 0%, #fff 40%, var(--blue) 55%, var(--chrome) 70%, var(--pink) 85%, var(--chrome) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: chrome-shine 4s linear infinite;
  margin-bottom: 0.75rem;
  display: inline-block;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  font-style: italic;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--chrome);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.footer-links a, .footer-links li a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-links li a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,214,229,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ═══════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════ */
.sr-page-main,
.sr-shop-main,
.sr-cart-main,
.sr-checkout-main,
.sr-product-main,
.sr-thankyou-main {
  min-height: 60vh;
  padding: clamp(2rem,5vw,4rem) 0;
  background: var(--bg);
}
.sr-page-header {
  margin-bottom: 3rem;
  padding-top: 1rem;
}
.sr-page-title {
  font-family: var(--font-head);
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.sr-page-article { animation: fadeInUp 0.4s ease; }
.sr-page-content {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 720px;
}
.sr-page-content p { margin-bottom: 1.25rem; }
.sr-page-content a { color: var(--blue); text-decoration: underline; }
.sr-page-content h2, .sr-page-content h3 {
  font-family: var(--font-head);
  color: var(--text);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

/* Breadcrumb */
.sr-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.sr-breadcrumb a { color: var(--blue); }
.sr-breadcrumb__sep { margin: 0 0.4rem; opacity: 0.4; }

/* ─── Shop ────────────────────────────────────────────── */
.sr-shop-header {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sr-shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.woocommerce-result-count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.woocommerce-ordering select {
  background: var(--bg-2);
  border: 1px solid rgba(200,214,229,0.15);
  color: var(--chrome);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.5rem 0.8rem;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.08em;
}
.woocommerce-ordering select:focus { border-color: var(--blue); }

/* WooCommerce pagination */
.woocommerce-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(200,214,229,0.15);
  color: var(--text-dim);
  transition: all 0.2s;
  display: block;
}
.woocommerce-pagination ul li a:hover { border-color: var(--blue); color: var(--blue); }
.woocommerce-pagination ul li span.current { border-color: var(--pink); color: var(--pink); }

/* ─── WooCommerce Notices ─────────────────────────────── */
.woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid;
  list-style: none;
}
.woocommerce-message { border-color: var(--green); color: var(--green); background: rgba(163,255,71,0.05); }
.woocommerce-error   { border-color: var(--pink);  color: var(--pink);  background: rgba(255,45,120,0.05); }
.woocommerce-info    { border-color: var(--blue);  color: var(--blue);  background: rgba(0,195,255,0.05); }
.woocommerce-message a, .woocommerce-error a, .woocommerce-info a { color: inherit; text-decoration: underline; }

/* Mobile */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .signup-form { flex-direction: column; }
  .signup-input { border-right: 1px solid rgba(200,214,229,0.15); }
}
