/* ==========================================
   VSHN SYSTEM BRAND SHShared STYLESHEET
   ========================================== */

/* Design Tokens & Variables */
:root {
  --bg: #09090c;
  --card-bg: #121217;
  --card-bg-glass: rgba(18, 18, 23, 0.78);
  --border: #24242e;
  
  --neon-pink: #ff007f;
  --neon-cyan: #00e5ff;
  --star-yellow: #ffd700;
  --success-green: #00ff66;
  
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --font-display: 'Syne', sans-serif;
  --font-headings: 'Orbitron', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --shadow-pink: 0 0 15px rgba(255, 0, 127, 0.35);
  --shadow-cyan: 0 0 15px rgba(0, 229, 255, 0.35);
  --border-radius: 4px;
}

/* Reset & Global Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  /* Dotted Halftone Grid Background */
  background-image: 
    radial-gradient(rgba(255, 0, 127, 0.08) 1.5px, transparent 1.5px),
    radial-gradient(rgba(0, 229, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  position: relative;
}

body.admin-body {
  background-image: 
    radial-gradient(rgba(0, 229, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* Typography Helpers */
.neon-pink-text { color: var(--neon-pink); text-shadow: 0 0 5px rgba(255,0,127,0.5); }
.neon-cyan-text { color: var(--neon-cyan); text-shadow: 0 0 5px rgba(0,229,255,0.5); }
.cyan-txt { color: var(--neon-cyan); }
.text-right { text-align: right; }
.id-code { font-family: var(--font-headings); color: var(--text); background: #1f1f29; padding: 2px 6px; border-radius: 4px; font-size: 0.85em; border: 1px solid var(--border); }
.font-orbitron { font-family: var(--font-headings); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-pink); }

/* ==========================================
   DEVELOPER UTILITY OVERLAYS
   ========================================== */
.dev-console-float {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #0f0f14;
  border: 1px dashed var(--border);
  padding: 8px 14px;
  border-radius: 4px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dev-title {
  font-family: var(--font-headings);
  font-size: 0.72em;
  font-weight: 900;
  color: var(--neon-pink);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dev-title .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success-green);
  box-shadow: 0 0 4px var(--success-green);
}

.admin-link-btn {
  font-family: var(--font-headings);
  font-size: 0.7em;
  font-weight: 700;
  color: var(--neon-cyan) !important;
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

/* ==========================================
   STREETWEAR COMPONENT STYLES
   ========================================== */
.vshn-btn {
  background: #000;
  border: 2px solid var(--neon-pink);
  color: var(--text);
  padding: 12px 24px;
  font-family: var(--font-headings);
  font-size: 0.85em;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 4px 4px 0px var(--neon-pink);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.vshn-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--neon-pink), 0 0 10px rgba(255, 0, 127, 0.3);
}

.vshn-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--neon-pink);
}

.vshn-btn.hover-cyan {
  border-color: var(--neon-cyan);
  box-shadow: 4px 4px 0px var(--neon-cyan);
}
.vshn-btn.hover-cyan:hover {
  box-shadow: 6px 6px 0px var(--neon-cyan), 0 0 10px rgba(0, 229, 255, 0.3);
}
.vshn-btn.hover-cyan:active {
  box-shadow: 2px 2px 0px var(--neon-cyan);
}

.vshn-btn.hover-green {
  border-color: var(--success-green);
  box-shadow: 4px 4px 0px var(--success-green);
}
.vshn-btn.hover-green:hover {
  box-shadow: 6px 6px 0px var(--success-green), 0 0 10px rgba(0, 255, 102, 0.3);
}


.vshn-btn.primary {
  background: var(--neon-pink);
  color: #000;
  border-color: var(--neon-pink);
  box-shadow: 4px 4px 0px var(--text);
}
.vshn-btn.primary:hover {
  background: #ff3399;
  border-color: #ff3399;
  box-shadow: 6px 6px 0px var(--text), 0 0 10px rgba(255, 0, 127, 0.4);
}
.vshn-btn.primary:active {
  box-shadow: 2px 2px 0px var(--text);
}

.vshn-btn.full-width { width: 100%; justify-content: center; }
.vshn-btn.outline-btn { background: transparent; border-color: var(--border); box-shadow: none; }
.vshn-btn.outline-btn:hover { border-color: var(--neon-cyan); }


.btn-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  transition: transform 0.2s ease;
}
.vshn-btn:hover .btn-arrow { transform: translateX(4px); }

/* Glass panel */
.glass-panel {
  background: var(--card-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  position: relative;
}

.decor-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--neon-pink);
}
.decor-corner.top-left { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.decor-corner.top-right { top: -2px; right: -2px; border-left: none; border-bottom: none; border-color: var(--neon-cyan); }
.decor-corner.bottom-left { bottom: -2px; left: -2px; border-right: none; border-top: none; border-color: var(--neon-cyan); }
.decor-corner.bottom-right { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* Status Badges */
.badge {
  display: inline-block;
  padding: 4px 8px;
  font-family: var(--font-headings);
  font-size: 0.72em;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
}
.badge.new { background: rgba(255, 0, 127, 0.1); color: var(--neon-pink); border-color: rgba(255, 0, 127, 0.3); }
.badge.sent { background: rgba(0, 229, 255, 0.1); color: var(--neon-cyan); border-color: rgba(0, 229, 255, 0.3); }
.badge.pending-verification { background: rgba(255, 165, 0, 0.1); color: orange; border-color: rgba(255, 165, 0, 0.3); }
.badge.paid { background: rgba(0, 255, 102, 0.1); color: var(--success-green); border-color: rgba(0, 255, 102, 0.3); }
.badge.completed { background: #1c1c24; color: var(--text-muted); border-color: var(--border); }

/* ==========================================
   CUSTOMER SITE (HERO & COLLAGE LOOKBOOK)
   ========================================== */
.client-view-section {
  display: none;
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.client-view-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.halftone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(black 20%, transparent 20%);
  background-size: 4px 4px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 10;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #000;
  border-bottom: 2px solid var(--neon-pink);
  padding: 10px 0;
}
.ticker {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.ticker span {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 0.8em;
  color: var(--text);
  letter-spacing: 0.15em;
}

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

.vshn-hero {
  position: relative;
  padding: 40px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  margin-top: 50px;
  width: 100%;
  max-width: 900px;
}

.collage-container {
  position: relative;
  display: inline-block;
  padding: 40px;
  z-index: 5;
}

.glitch-text {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: #fff;
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .glitch-text { 
    font-size: clamp(4.5rem, 18vw, 5.5rem); 
    margin-bottom: 12px;
  }
  .hero-tagline {
    font-size: 0.8rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 24px !important;
  }
  .vshn-hero .vshn-btn {
    font-size: 0.72rem !important;
    padding: 10px 18px !important;
    letter-spacing: 0.05em !important;
  }
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.svg-star {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: -1;
  fill: currentColor;
}
.star-blue { color: var(--neon-cyan); top: 10px; left: -20px; }
.star-yellow { color: var(--star-yellow); bottom: 0px; right: -20px; }

.spin-slow { animation: spin 12s linear infinite; }
.pulse-slow { animation: pulse 4s ease-in-out infinite; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 8px currentColor); }
  100% { transform: scale(1); opacity: 0.8; }
}

/* LOOKBOOK COLLAGE SECTION */
.gallery-section {
  max-width: 1100px;
  margin: 60px auto 120px;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.3em;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: var(--neon-pink);
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -45px;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: start;
}

.collage-card {
  background: #111116;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 8px 8px 0px #000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}
.collage-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0px var(--neon-pink);
  border-color: var(--neon-pink);
}

.shape-1 { transform: none; }
.shape-2 { transform: none; }
.shape-3 { transform: none; }

.card-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0d0d12;
}

.lookbook-img {
  width: 100%;
  height: auto;
  display: block;
}

.polaroid-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--neon-pink);
  pointer-events: none;
  z-index: 2;
}
.polaroid-border.border-cyan { border-color: var(--neon-cyan); }

.mock-image-v1, .mock-image-v2, .mock-image-v3 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.halftone-img-1 .mock-image-v1 {
  background: 
    radial-gradient(circle at 50% 50%, transparent 50%, #000 100%),
    repeating-radial-gradient(circle, rgba(0,0,0,0.9) 0px, rgba(0,0,0,0.9) 2px, transparent 4px, transparent 10px),
    linear-gradient(to bottom, rgba(255,0,127,0.7), rgba(13,13,18,0.9));
}
.halftone-img-2 .mock-image-v2 {
  background: 
    repeating-linear-gradient(45deg, rgba(0,0,0,0.85) 0px, rgba(0,0,0,0.85) 2px, transparent 4px, transparent 8px),
    linear-gradient(to top, var(--neon-cyan) 0%, #08101a 100%);
}
.halftone-img-3 .mock-image-v3 {
  background: 
    radial-gradient(circle at 70% 30%, var(--star-yellow) 0%, transparent 60%),
    repeating-radial-gradient(circle, rgba(0,0,0,0.9) 1px, transparent 3px, transparent 8px),
    linear-gradient(to right, #24242e, #09090b);
}

.collage-card:hover .mock-image-v1,
.collage-card:hover .mock-image-v2,
.collage-card:hover .mock-image-v3 {
  transform: scale(1.05);
}

.card-caption {
  margin-top: 15px;
  font-family: var(--font-headings);
  font-size: 0.72em;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

/* COMMISSION FORM SECTION */
.form-section {
  max-width: 750px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.form-container {
  padding: 50px 40px;
  border-radius: 4px;
  border: 2px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.star-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: var(--star-yellow);
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
  z-index: 10;
}

.form-title {
  font-size: 2.2em;
  margin-bottom: 8px;
  font-family: var(--font-headings);
  text-align: center;
}
.form-subtitle {
  color: var(--text-muted);
  font-size: 0.95em;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.form-row.split > .input-group { flex: 1; }

@media (max-width: 600px) {
  .form-row.split { flex-direction: column; gap: 24px; }
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.input-group label {
  font-family: var(--font-headings);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}
.input-group label .req { color: var(--neon-pink); }

.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group input[type="date"],
.input-group input[type="number"],
.input-group input[type="password"],
.input-group select,
.input-group textarea {
  background: #111116;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95em;
  width: 100%;
  transition: all 0.25s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
  background: #14141d;
}

.input-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300e5ff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px !important;
}

.input-group select option { background: #101014; color: #fff; }

.upload-container {
  border: 2px dashed var(--border);
  background: #0d0d12;
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}
.upload-container:hover { border-color: var(--neon-cyan); background: #11111a; }
.upload-container input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 5; }
.upload-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; pointer-events: none; }
.upload-icon { width: 32px; height: 32px; stroke: var(--text-muted); fill: none; stroke-width: 2; }
.upload-placeholder p { font-size: 0.9em; color: var(--text-muted); }
.upload-placeholder p span { color: var(--neon-cyan); text-decoration: underline; font-weight: 500; }
.upload-limit { font-size: 0.72em; color: #52525b; }
.upload-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; z-index: 10; }
.upload-preview-wrap img { max-width: 100%; max-height: 200px; border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.5); }

.remove-upload-btn {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgb(239, 68, 68);
  color: rgb(239, 68, 68);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-headings);
  font-size: 0.72em;
  font-weight: 700;
  cursor: pointer;
}

.form-footer { margin-top: 40px; display: flex; justify-content: flex-end; }
.hidden { display: none !important; }

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #101014;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border-radius: 4px;
}
.success-content { max-width: 450px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.success-icon-wrap { width: 60px; height: 60px; border-radius: 50%; background: rgba(0, 255, 102, 0.1); border: 2px solid var(--success-green); display: flex; align-items: center; justify-content: center; color: var(--success-green); margin-bottom: 10px; }
.success-icon-wrap svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 3; }
.success-content h3 { font-size: 1.8em; color: var(--success-green); text-shadow: 0 0 10px rgba(0, 255, 102, 0.2); }
.success-content p { font-size: 0.95em; line-height: 1.5; color: var(--text); }
.success-content p.secondary-p { color: var(--text-muted); font-size: 0.85em; margin-bottom: 15px; }

/* Footer Grid Layout */
.customer-footer {
  border-top: 1px solid var(--border);
  padding: 60px 20px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

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

.footer-brand h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-headings);
  transition: all 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 5px rgba(255,255,255,0.5);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px dashed var(--border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom .copy {
  font-size: 0.72em;
  color: #52525b;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ==========================================
   PRODUCTION STOREFRONT HEADER NAVIGATION
   ========================================== */
.vshn-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 50px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--font-headings);
  font-size: 1.8em;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.nav-logo:hover {
  color: var(--neon-pink);
  text-shadow: var(--shadow-pink);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-headings);
  font-size: 0.8em;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
}

@media (max-width: 680px) {
  .vshn-nav { padding: 18px 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.7em; }
}

/* ==========================================
   PRODUCTION CLIENT STATUS TIMELINE & SEARCH
   ========================================== */
.track-search-row {
  display: flex;
  border: 1px solid var(--border);
  background: #0d0d12;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.track-search-row:focus-within {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.track-search-row input {
  background: transparent;
  border: none !important;
  color: #fff;
  padding: 16px 20px;
  font-size: 0.95em;
  flex: 1;
  outline: none;
}

.track-search-row button {
  border: none;
  background: var(--neon-cyan);
  color: #000 !important;
  font-family: var(--font-headings);
  font-weight: 900;
  padding: 0 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  height: auto;
  font-size: 0.85em;
  letter-spacing: 0.05em;
}

.track-search-row button:hover {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}
.track-search-row input:focus {
  border-color: var(--neon-cyan);
  outline: none;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

@media (max-width: 500px) {
  .track-search-row { 
    flex-direction: column !important; 
    border: none !important;
    background: transparent !important;
    gap: 12px;
    box-shadow: none !important;
  }
  .track-search-row input {
    background: #0d0d12 !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    width: 100% !important;
    padding: 14px 20px !important;
  }
  .track-search-row button {
    padding: 14px 30px !important;
    width: 100% !important;
    border-radius: 6px !important;
    box-shadow: 4px 4px 0px var(--neon-cyan) !important;
    border: 2px solid var(--neon-cyan) !important;
    background: transparent !important;
    color: var(--text) !important;
    transition: all 0.2s ease !important;
    height: 48px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .track-search-row button:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3) !important;
  }
}

.track-results-wrapper {
  background: #07070a;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 4px;
  margin-top: 30px;
  animation: fadeIn 0.3s ease;
}

.track-error {
  color: #ef4444;
  font-family: var(--font-headings);
  font-size: 0.8em;
  text-align: center;
  padding: 15px 0;
  letter-spacing: 0.05em;
}
.track-error .cross { font-weight: 900; margin-right: 6px; }

/* Timeline design */
.timeline-stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 45px;
}
.timeline-stepper::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #111116;
  border: 3px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.step-label {
  font-family: var(--font-headings);
  font-size: 0.65em;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-align: center;
}

/* Stepper state modifiers */
.timeline-step.completed .step-dot {
  background: var(--success-green);
  border-color: var(--success-green);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.35);
}
.timeline-step.completed .step-label { color: #fff; }

.timeline-step.active-glow .step-dot {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}
.timeline-step.active-glow .step-label {
  color: var(--neon-cyan);
  font-weight: 900;
  text-shadow: var(--shadow-cyan);
}

.track-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #0d0d12;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.track-details-grid .lbl, 
.track-concept .lbl, 
.track-invoice .lbl, 
.track-artist-notes .lbl, 
.tracking-snippet .lbl {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.6em;
  color: var(--neon-pink);
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}
.track-details-grid .val-bold { font-weight: 700; font-size: 0.85em; }

.track-concept, .track-artist-notes {
  background: #0d0d12;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.85em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.track-concept .desc, .track-artist-notes .desc { color: var(--text-muted); }

.track-invoice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82em;
  margin-bottom: 12px;
}
.track-invoice-table td { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.track-invoice-table tfoot td {
  border-top: 1px dashed var(--border);
  font-weight: 700;
  color: #fff;
  padding-top: 10px;
}
.lead-time-tag { font-size: 0.78em; color: var(--text-muted); margin-top: 8px; }
.lead-time-tag strong { color: var(--neon-cyan); }

.track-action-zone {
  border-top: 1px dashed var(--border);
  padding-top: 24px;
  margin-top: 10px;
  text-align: center;
}
.track-action-zone .action-tip { font-size: 0.82em; margin-bottom: 16px; color: var(--text); }

.track-action-zone.success-zone p {
  color: var(--success-green);
  font-family: var(--font-headings);
  font-size: 0.8em;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px rgba(0, 255, 102, 0.2);
}

.track-action-zone.completed-zone p { color: var(--text-muted); font-size: 0.82em; margin-bottom: 15px; }
.tracking-snippet {
  background: #0d0d12;
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 4px;
  text-align: left;
}

/* ==========================================
   CHECKOUT GATEWAY VIEW
   ========================================== */
#view-checkout { display: none; }
#view-checkout.active { display: block; }
.checkout-wrapper { max-width: 1000px; margin: 30px auto; padding: 0 20px; }
.checkout-container { border-radius: 8px; border: 1px solid var(--border); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.checkout-grid { display: grid; grid-template-columns: 1.1fr 1fr; }

@media (max-width: 800px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .invoice-summary-column { border-right: none; border-bottom: 2px solid var(--border); }
}

.invoice-summary-column { background: #0d0d10; padding: 40px; border-right: 1px solid var(--border); }
.checkout-logo { font-family: var(--font-headings); font-size: 1.8em; font-weight: 900; color: #fff; letter-spacing: 0.15em; margin-bottom: 30px; }
.invoice-meta-info { margin-bottom: 30px; }
.invoice-meta-info h3 { font-size: 1em; color: var(--text-muted); margin-bottom: 6px; }
.invoice-meta-info .meta-tag { font-size: 0.85em; }

.invoice-bill-to { margin-bottom: 30px; }
.invoice-bill-to .label, .invoice-items .label { display: block; font-family: var(--font-headings); font-size: 0.68em; color: var(--neon-pink); margin-bottom: 8px; letter-spacing: 0.1em; }
.invoice-bill-to .val { display: block; font-size: 0.9em; }

.invoice-items { margin-bottom: 35px; }
.checkout-item-list { list-style: none; }
.checkout-item-list li { display: flex; justify-content: space-between; font-size: 0.85em; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.checkout-item-list li .item-name { color: var(--text); }
.checkout-item-list li .item-price { font-family: var(--font-headings); color: var(--neon-cyan); }

.invoice-totals { border-top: 2px solid var(--border); padding-top: 15px; margin-bottom: 30px; }
.totals-row { display: flex; justify-content: space-between; font-size: 0.85em; color: var(--text-muted); margin-bottom: 8px; }
.totals-row.total-grand { color: #fff; font-family: var(--font-headings); font-size: 1.1em; font-weight: 700; border-top: 1px dashed var(--border); padding-top: 12px; margin-top: 12px; }

.invoice-details-footer { font-size: 0.72em; color: #52525b; line-height: 1.6; }
.invoice-details-footer strong { color: var(--text); }
.cancel-checkout-link { display: block; background: transparent; border: none; color: var(--neon-pink); font-family: var(--font-headings); font-size: 0.95em; cursor: pointer; text-align: left; margin-top: 18px; }
.cancel-checkout-link:hover { text-shadow: var(--shadow-pink); color: #fff; }

.payment-form-column { padding: 40px; background: #111116; position: relative; }
.payment-form-column h3 { font-size: 1em; margin-bottom: 20px; }
.pay-method-tabs { display: flex; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 30px; overflow: hidden; }
.pay-tab { flex: 1; text-align: center; padding: 12px; font-family: var(--font-headings); font-size: 0.72em; font-weight: 700; }
.pay-tab.active { background: #1c1c24; color: var(--neon-cyan); display: flex; align-items: center; justify-content: center; gap: 8px; }
.pay-tab.active .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-cyan); }
.pay-tab.disabled { color: #4b5563; background: #0d0d10; cursor: not-allowed; }

.card-checkout-terms { margin-bottom: 24px; font-size: 0.72em; color: var(--text-muted); line-height: 1.5; }
.pay-btn { width: 100%; }
.input-icon-wrap { position: relative; }
.input-icon-wrap input { padding-right: 44px !important; }
.card-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.2em; opacity: 0.6; }

.payment-overlay-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #111116; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 30px; text-align: center; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 320px; }

.gothic-spinner { position: relative; width: 64px; height: 64px; margin-bottom: 10px; }
.spin-circle { width: 100%; height: 100%; border: 3px solid rgba(255, 0, 127, 0.15); border-top-color: var(--neon-pink); border-radius: 50%; animation: spin 1s linear infinite; }
.spinner-letter { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-headings); font-size: 1.4em; font-weight: 900; color: var(--neon-pink); }
.payment-overlay-screen h3 { font-size: 1.3em; margin-bottom: 0px; }
.success-neon-text { color: var(--success-green) !important; text-shadow: 0 0 10px rgba(0, 255, 102, 0.2); }
.success-checkbox-wrap { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--success-green); color: var(--success-green); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.success-checkbox-wrap svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 3; }
.receipt-snippet { background: #0d0d10; border: 1px solid var(--border); padding: 12px 20px; border-radius: 4px; font-family: var(--font-headings); font-size: 0.85em; margin: 10px 0; width: 100%; }
.receipt-snippet p { margin-bottom: 4px; }
.info-p { font-size: 0.78em; color: var(--text-muted); line-height: 1.5; margin-bottom: 15px; }

/* ==========================================
   PASSWORD LOCK SCREEN (admin.html GATE)
   ========================================== */
.password-gate-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #07070a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.password-container {
  width: 100%;
  max-width: 480px;
  padding: 50px 40px;
  border-radius: 4px;
  border: 2px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

.hacker-terminal-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 16px;
}
.terminal-title { font-size: 1.35em; color: var(--neon-cyan); text-shadow: var(--shadow-cyan); }
.terminal-sub { font-size: 0.7em; color: var(--text-muted); letter-spacing: 0.1em; }

.password-hint {
  display: block;
  font-size: 0.72em;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}
.password-hint strong { color: var(--star-yellow); }

.password-error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgb(239, 68, 68);
  color: rgb(239, 68, 68);
  padding: 10px 14px;
  font-size: 0.75em;
  border-radius: 4px;
  margin-bottom: 24px;
  animation: shake 0.3s ease;
}
.error-indicator { font-weight: 700; font-family: var(--font-headings); }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ==========================================
   MERCHANT DASHBOARD WORKSPACE (admin.html)
   ========================================== */
.admin-dashboard-view {
  animation: fadeIn 0.4s ease;
}

.admin-top-nav {
  background: #0d0d12;
  border-bottom: 2px solid var(--border);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
}

.storefront-return-btn {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--neon-cyan) !important;
}

.active-profile-lbl {
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-size: 0.85em;
}

.logout-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-family: var(--font-headings);
  font-size: 0.85em;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
}
.logout-btn:hover { border-color: var(--neon-pink); color: var(--neon-pink); }

.merchant-dashboard-container { max-width: 1400px; margin: 20px auto; padding: 0 20px; }
.merchant-top-header { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--border); background: #0d0d10; padding: 24px; border-radius: 6px; margin-bottom: 20px; gap: 20px; }
@media (max-width: 900px) { .merchant-top-header { flex-direction: column; align-items: stretch; } }

.title-section h2 { font-size: 1.5em; color: var(--neon-pink); text-shadow: var(--shadow-pink); margin-bottom: 4px; }
.title-section p { font-size: 0.8em; color: var(--text-muted); text-transform: uppercase; }

.db-stats { display: flex; gap: 16px; }
@media (max-width: 600px) { .db-stats { flex-direction: column; } }

.stat-card { background: #111116; border: 1px solid var(--border); padding: 12px 20px; border-radius: 4px; min-width: 150px; display: flex; flex-direction: column; justify-content: center; }
.stat-lbl { font-size: 0.6em; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-headings); }
.stat-val { font-size: 1.3em; font-weight: 700; color: #fff; }

.merchant-body-layout { display: grid; grid-template-columns: 360px 1fr; gap: 20px; align-items: start; height: 740px; }
@media (max-width: 950px) { .merchant-body-layout { grid-template-columns: 1fr; height: auto; } }

.dashboard-queue-panel { border: 1px solid var(--border); background: #0d0d10; border-radius: 6px; display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.panel-header { padding: 20px; border-bottom: 1px solid var(--border); }
.panel-header h3 { font-size: 0.95em; color: var(--text); margin-bottom: 12px; }

.queue-filters { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 4px; }
.filter-tab { background: transparent; border: 1px solid var(--border); padding: 6px 10px; border-radius: 4px; font-family: var(--font-headings); font-size: 0.65em; font-weight: 700; cursor: pointer; color: var(--text-muted); }
.filter-tab:hover { border-color: var(--neon-cyan); color: var(--text); }
.filter-tab.active { background: rgba(0, 229, 255, 0.1); border-color: var(--neon-cyan); color: var(--neon-cyan); }

.queue-list { list-style: none; overflow-y: auto; flex: 1; }
.queue-item { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.02); cursor: pointer; }
.queue-item:hover { background: rgba(255, 255, 255, 0.01); }
.queue-item.active { background: #181822; border-left: 3px solid var(--neon-pink); }
.queue-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.queue-item-piece { font-weight: 700; font-size: 0.85em; }
.queue-item-client { font-size: 0.76em; color: var(--text-muted); margin-bottom: 6px; }
.queue-item-footer { display: flex; justify-content: space-between; align-items: center; }
.queue-item-date { font-size: 0.72em; color: #4b5563; }
.queue-item-price { font-family: var(--font-headings); font-size: 0.85em; font-weight: 700; }

.dashboard-workspace-panel { border: 1px solid var(--border); background: #111116; border-radius: 6px; height: 100%; overflow-y: auto; }
.workspace-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); padding: 40px; text-align: center; gap: 16px; }
.db-action-shortcuts { margin-top: 15px; }

.workspace-content { padding: 30px; }
.workspace-header { display: flex; justify-content: space-between; align-items: start; border-bottom: 2px solid var(--border); padding-bottom: 20px; margin-bottom: 24px; }
.id-status-row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.ws-id { font-family: var(--font-headings); font-size: 1.2em; font-weight: 900; color: #fff; }
#ws-piece-title { font-size: 1.6em; }
.date-lbl { font-size: 0.78em; color: var(--text-muted); }

.workspace-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 1200px) { .workspace-grid-layout { grid-template-columns: 1fr; } }
.spec-section-header { font-family: var(--font-headings); font-size: 0.78em; font-weight: 700; color: var(--neon-pink); border-bottom: 1px solid rgba(255, 0, 127, 0.2); padding-bottom: 8px; margin-bottom: 20px; letter-spacing: 0.1em; }

.client-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #0d0d10; padding: 16px; border-radius: 4px; border: 1px solid var(--border); margin-bottom: 20px; }
.client-profile-grid .lbl, .client-specs-details .lbl { display: block; font-size: 0.65em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.client-profile-grid .val { font-size: 0.85em; word-break: break-all; }
.client-profile-grid .val-bold { font-size: 0.85em; font-weight: 700; }
.client-specs-details { display: flex; flex-direction: column; gap: 16px; }
.spec-bullet-row { display: flex; justify-content: space-between; font-size: 0.85em; }

.spec-concept-box { background: #0d0d10; padding: 14px; border-left: 2px solid var(--border); font-size: 0.85em; line-height: 1.5; border-radius: 2px; }
.spec-image-box { display: flex; flex-direction: column; gap: 8px; }
.attachment-preview-box { background: #0d0d10; border: 1px dashed var(--border); border-radius: 4px; height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.no-img-text { font-size: 0.8em; color: #52525b; }
#ws-spec-image-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
#ws-spec-image-link.hidden { display: none !important; }
#ws-spec-image-preview { max-width: 100%; max-height: 100%; object-fit: contain; }

.builder-tip { font-size: 0.8em; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.builder-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.builder-table th { text-align: left; font-family: var(--font-headings); font-size: 0.65em; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.builder-table td { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); vertical-align: middle; }
.builder-table th.width-price, .builder-table td.width-price { width: 90px; }
.builder-table th.width-action, .builder-table td.width-action { width: 36px; text-align: center; }

.builder-table input[type="text"] { background: #0d0d10; border: 1px solid var(--border); padding: 8px 10px; font-size: 0.85em; border-radius: 4px; }
.builder-table input[type="number"] { background: #0d0d10; border: 1px solid var(--border); padding: 8px 10px; font-size: 0.85em; border-radius: 4px; font-family: var(--font-headings); width: 100%; color: var(--neon-cyan); }
.builder-table input:focus { outline: none; border-color: var(--neon-cyan); }
.delete-row-btn { background: transparent; border: none; color: #ef4444; cursor: pointer; font-size: 1.1em; padding: 4px 8px; }
.builder-table-footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.add-row-btn { background: transparent; border: 1px dashed var(--border); color: var(--text-muted); padding: 6px 12px; font-size: 0.72em; font-family: var(--font-headings); font-weight: 700; border-radius: 4px; cursor: pointer; }
.add-row-btn:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.builder-total-display { display: flex; align-items: center; gap: 12px; }
.builder-total-display span { font-family: var(--font-headings); font-size: 0.8em; }
.builder-total-display .total-number { font-size: 1.4em; color: var(--neon-pink); font-weight: 900; text-shadow: var(--shadow-pink); }

.builder-meta-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; border-top: 1px solid var(--border); padding-top: 20px; }
.builder-meta-fields .input-group { margin-bottom: 0; }
.builder-meta-fields input, .builder-meta-fields textarea { background: #0d0d10 !important; }

.status-summary-card { padding: 30px 24px; border-radius: 6px; border: 1px solid var(--border); text-align: center; position: relative; }
.status-summary-card h4 { font-size: 1.1em; margin-bottom: 10px; }
.status-summary-card p { font-size: 0.85em; color: var(--text-muted); line-height: 1.5; }

.sent-card { border-color: var(--neon-cyan); background: rgba(0, 229, 255, 0.01); }
.sent-card h4 { color: var(--neon-cyan); }
.pulsing-radar { width: 14px; height: 14px; background: var(--neon-cyan); border-radius: 50%; margin: 0 auto 16px; position: relative; }
.pulsing-radar::after { content: ''; position: absolute; top: -10px; left: -10px; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--neon-cyan); animation: radar-expand 1.5s linear infinite; opacity: 0; }

@keyframes radar-expand {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

.sent-details-recap { background: #0a0a0c; border: 1px solid var(--border); border-radius: 4px; padding: 16px; text-align: left; margin: 20px 0; }
.sent-details-recap p { font-size: 0.8em; margin-bottom: 8px; color: var(--text); }
.recap-list { list-style: none; font-size: 0.78em; color: var(--text-muted); }
.recap-list li { padding: 4px 0; display: flex; justify-content: space-between; }
.dev-helper-alert { background: #181822; border: 1px solid rgba(255,215,0,0.2); color: var(--star-yellow); padding: 12px; border-radius: 4px; font-size: 0.78em; text-align: left; line-height: 1.5; }

.paid-card { border-color: var(--success-green); background: rgba(0, 255, 102, 0.01); text-align: left; }
.paid-card h4 { color: var(--success-green); margin-top: 10px; }
.paid-card .check-stamp { font-family: var(--font-headings); font-size: 1.4em; font-weight: 900; color: var(--success-green); border: 2px solid var(--success-green); display: inline-block; padding: 4px 10px; letter-spacing: 0.1em; transform: rotate(-3deg); }
.paid-order-meta { background: #0a0a0c; padding: 14px 18px; border-radius: 4px; margin: 16px 0 24px; font-family: var(--font-headings); font-size: 0.85em; display: flex; flex-direction: column; gap: 8px; }

.fulfillment-controls { border-top: 1px dashed var(--border); padding-top: 20px; }
.fulfillment-controls label { font-family: var(--font-headings); font-size: 0.65em; color: var(--text); display: block; margin-bottom: 8px; }
.fulfillment-controls input { background: #0a0a0c; border: 1px solid var(--border); padding: 12px; border-radius: 4px; width: 100%; font-size: 0.85em; color: var(--text); margin-bottom: 16px; }
.fulfillment-controls input:focus { outline: none; border-color: var(--success-green); }

.completed-card { border-color: var(--border); background: #0c0c10; text-align: left; }
.completed-card .archive-stamp { font-family: var(--font-headings); font-size: 1.4em; font-weight: 900; color: var(--text-muted); border: 2px solid var(--border); display: inline-block; padding: 4px 10px; letter-spacing: 0.1em; transform: rotate(2deg); margin-bottom: 14px; }
.completed-summary-info { background: #060608; padding: 16px 20px; border-radius: 4px; font-size: 0.82em; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.val-italic { font-style: italic; color: var(--text); }

/* ==========================================
   TOAST APP NOTIFICATIONS
   ========================================== */
.app-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111116;
  border: 2px solid var(--neon-cyan);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), var(--shadow-cyan);
  z-index: 100000;
  max-width: 420px;
  animation: slideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.toast-indicator { width: 8px; height: 8px; background: var(--neon-cyan); border-radius: 50%; box-shadow: 0 0 6px var(--neon-cyan); }
.toast-body { flex: 1; }
.toast-body h4 { font-size: 0.72em; color: var(--neon-cyan); margin-bottom: 2px; }
.toast-body p { font-size: 0.82em; color: var(--text); line-height: 1.4; }
.toast-close { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; font-size: 1.1em; }
.toast-close:hover { color: var(--text); }

/* ==========================================
   DESKTOP STYLING & PREMIUM EFFECT ENHANCEMENTS
   ========================================== */

/* Retro CRT Scanline Screen Overlay */
@media (min-width: 769px) {
  body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
      rgba(18, 16, 16, 0) 50%, 
      rgba(0, 0, 0, 0.12) 50%
    );
    background-size: 100% 3px;
    z-index: 99999;
    pointer-events: none;
    opacity: 0.4;
  }

  body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 99998;
    pointer-events: none;
  }
}

/* Polaroid Frosted Tape Stickers for Lookbook */
.collage-card {
  position: relative;
  overflow: visible; /* Ensure tape sticks out */
}

.collage-card::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 100px;
  height: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  z-index: 5;
  pointer-events: none;
}

/* Custom Tape Colors per Card Style */
.shape-1::before {
  transform: translateX(-52%) rotate(-5deg);
  background: rgba(255, 0, 127, 0.18); /* Frosted Neon Pink */
  box-shadow: 0 0 8px rgba(255, 0, 127, 0.1);
}

.shape-2::before {
  transform: translateX(-48%) rotate(4deg);
  background: rgba(0, 229, 255, 0.18); /* Frosted Neon Cyan */
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.1);
}

.shape-3::before {
  transform: translateX(-50%) rotate(-1deg);
  background: rgba(255, 215, 0, 0.15); /* Frosted Yellow Star */
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
}

/* Custom visual card preview (holographic/glass) */
.visual-card-preview {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.15) 0%, rgba(0, 229, 255, 0.15) 50%, rgba(18, 18, 23, 0.95) 100%), var(--card-bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.15);
  border-radius: 12px;
  padding: 24px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visual-card-preview:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 0, 127, 0.25);
  border-color: rgba(255, 0, 127, 0.4);
}

.visual-card-preview .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: card-shimmer 8s linear infinite;
}

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

.visual-card-preview .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.visual-card-preview .card-brand {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #fff;
  opacity: 0.8;
  font-weight: 700;
}

.visual-card-preview .card-number-display {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-align: center;
  word-spacing: 0.25em;
}

.visual-card-preview .card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.visual-card-preview .card-holder-display,
.visual-card-preview .card-expiry-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.visual-card-preview .card-lbl {
  font-family: var(--font-headings);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.visual-card-preview .card-val {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

/* Footer Link Custom Muted Style */
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-headings);
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
}

/* ==========================================
   MOBILE & VIEWPORT OPTIMIZATIONS (iPhones)
   ========================================== */
@media (max-width: 768px) {
  /* Prevent horizontal scroll zoom-outs */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  #app-container {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Hide background decoration stars and form badges on mobile to avoid overflow and overlapping text */
  .svg-star, .star-badge, .form-container .star-badge {
    display: none !important;
  }

  /* Navigation: Logo centered, links stacked underneath with clean layout */
  .vshn-nav {
    flex-direction: column !important;
    padding: 20px 16px !important;
    gap: 16px !important;
    text-align: center;
  }
  
  .nav-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
    width: 100% !important;
    padding: 0 8px;
  }
  
  .nav-links a {
    font-size: 0.72em !important;
    letter-spacing: 0.08em;
    padding: 10px 4px !important;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(18, 18, 23, 0.4);
    text-align: center;
    transition: all 0.2s ease;
    display: block;
  }

  .nav-links a.active-link {
    color: var(--neon-cyan) !important;
    text-shadow: var(--shadow-cyan);
    border: 1px solid var(--neon-cyan) !important;
    background: rgba(0, 229, 255, 0.08) !important;
    padding: 10px 4px !important;
  }

  /* iOS Input Font Zoom Prevention */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important; /* Force to at least 16px to prevent iOS Safari auto-zooming */
    padding: 12px 14px !important;
  }

  /* Compact form container paddings to fit narrow mobile displays */
  .form-container {
    padding: 24px 16px !important;
    border-width: 1px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  }
  
  .form-title {
    font-size: 1.6em;
  }
  
  .form-subtitle {
    font-size: 0.85em;
    margin-bottom: 24px;
    line-height: 1.4;
  }
  
  /* Hero title resizing for small viewports */
  .glitch-text {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
    line-height: 0.9;
  }
  
  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }
  
  .vshn-hero {
    padding: 30px 12px 60px !important;
  }

  .collage-container {
    padding: 10px 0 !important;
  }
  
  /* Lookbook grid card adjustments */
  .collage-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 0 12px !important;
  }
  
  .collage-card {
    padding: 12px !important;
    max-width: 340px; /* Constrain card width on mobile so it looks like a real Polaroid */
    width: 100%;
    margin: 0 auto;
    transform: none !important; /* Remove slanted tilts to prevent screen side clipping */
    box-shadow: 6px 6px 0px #000 !important;
  }
  
  .collage-card::before {
    width: 80px !important;
    height: 22px !important;
    top: -10px !important;
  }
  
  .card-image-wrap {
    height: auto !important;
  }

  .card-caption {
    font-size: 0.65em;
  }
  
  /* Timeline Stepper Mobile Fitting */
  .timeline-stepper {
    margin-bottom: 30px;
  }
  .timeline-stepper::before {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .step-dot {
    width: 20px;
    height: 20px;
    border-width: 2px;
    margin-bottom: 8px;
  }
  .step-label {
    font-size: 0.55em;
  }

  /* Checkout column layouts styling on mobile */
  .checkout-wrapper {
    margin: 10px auto;
    padding: 0 10px;
  }
  
  .invoice-summary-column, 
  .payment-form-column {
    padding: 24px 16px;
  }
  
  .visual-card-preview {
    padding: 16px;
    height: 160px;
    margin-bottom: 20px;
  }
  
  .visual-card-preview .card-number-display {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  
  /* Admin responsive queue and layouts */
  .merchant-top-header {
    padding: 16px;
  }
  
  .db-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .stat-card {
    min-width: unset;
    padding: 10px;
  }
  
  .stat-val {
    font-size: 1.1em;
  }
  
  .merchant-body-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .dashboard-queue-panel, 
  .dashboard-workspace-panel {
    height: 500px;
  }
  
  .workspace-content {
    padding: 16px;
  }
  
  .workspace-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .client-profile-grid {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  /* Mobile Grid Restructuring for new Landing elements */
  .manifesto-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .manifesto-text {
    align-items: center;
    text-align: center;
  }
  .manifesto-title {
    font-size: 1.6rem !important;
  }
  .manifesto-desc {
    font-size: 0.85rem !important;
  }
  .manifesto-badges {
    justify-content: center;
  }
  .manifesto-card {
    height: auto !important;
    padding: 24px 20px !important;
    gap: 16px;
  }
  .manifesto-card .visual-logo {
    font-size: 2.2rem !important;
  }
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .cta-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .cta-card {
    padding: 24px !important;
    gap: 12px !important;
  }
  .cta-card h3 {
    font-size: 1.25rem !important;
  }
}

/* ==========================================
   SUB-VIEWS & TAB NAVIGATION SYSTEMS
   ========================================== */
.subview {
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.subview.hidden {
  display: none !important;
}

/* Nav links active highlights */
.nav-links a.active-link {
  color: var(--neon-cyan) !important;
  text-shadow: var(--shadow-cyan);
  border-bottom: 2px solid var(--neon-cyan);
  padding-bottom: 4px;
}

/* ==========================================
   BRAND MANIFESTO SECTION
   ========================================== */
.manifesto-section {
  max-width: 1100px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manifesto-tag {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--neon-pink);
  text-shadow: var(--shadow-pink);
  font-weight: 700;
}

.manifesto-title {
  font-size: 2.2rem;
  line-height: 1.1;
  color: #fff;
}

.manifesto-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.manifesto-badges {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.m-badge {
  background: #111116;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-headings);
  font-size: 0.68em;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.manifesto-visual {
  display: flex;
  justify-content: center;
}

.manifesto-card {
  width: 100%;
  max-width: 320px;
  height: 220px;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--border);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  background: var(--card-bg-glass);
}

.visual-badge {
  font-family: var(--font-headings);
  font-size: 0.65em;
  color: var(--success-green);
  text-shadow: 0 0 5px rgba(0, 255, 102, 0.3);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.visual-badge.closed {
  color: var(--neon-pink);
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.3);
}


.manifesto-card .visual-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}

.visual-details {
  font-family: var(--font-headings);
  font-size: 0.65em;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.visual-slots-bar {
  width: 100%;
  height: 6px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.slots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon-cyan) 100%);
  box-shadow: 0 0 8px var(--neon-pink);
}

/* ==========================================
   HOW IT WORKS PROCESS SECTION
   ========================================== */
.process-section {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

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

.process-step {
  background: #111116;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-num {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
  opacity: 0.25;
}

.process-step h4 {
  font-size: 0.85em;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: 0.1em;
  padding-right: 45px; /* Prevent overlap with step numbers on narrow viewports */
}

.process-step p {
  font-size: 0.85em;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================
   CTA ACTION GRID
   ========================================== */
.cta-section {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cta-card {
  background: #111116;
  border: 2px solid var(--border);
  padding: 40px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 6px 6px 0px #000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
}

.cta-card h3 {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.cta-card p {
  font-size: 0.9em;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-arrow {
  font-family: var(--font-headings);
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: 10px;
  transition: all 0.2s ease;
}

.cta-card.hover-pink:hover {
  border-color: var(--neon-pink);
  box-shadow: 10px 10px 0px var(--neon-pink);
  transform: translate(-4px, -4px);
}
.cta-card.hover-pink:hover .cta-arrow {
  color: var(--neon-pink);
  text-shadow: var(--shadow-pink);
}

.cta-card.hover-cyan:hover {
  border-color: var(--neon-cyan);
  box-shadow: 10px 10px 0px var(--neon-cyan);
  transform: translate(-4px, -4px);
}
.cta-card.hover-cyan:hover .cta-arrow {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
}

/* ==========================================
   LOOKBOOK IMAGE PLACEHOLDERS
   ========================================== */
.image-placeholder {
  width: 100%;
  height: 100%;
  background: #0d0d12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
  position: relative;
  font-family: var(--font-headings);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 8px 8px;
  pointer-events: none;
}

.image-placeholder .camera-icon {
  font-size: 2.2rem;
  opacity: 0.45;
  transition: all 0.3s ease;
}

.collage-card:hover .camera-icon {
  opacity: 0.9;
  transform: scale(1.1);
  color: inherit;
}

.image-placeholder .meta-code {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
  z-index: 2;
}

.image-placeholder .meta-details {
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  z-index: 2;
  text-transform: uppercase;
}

/* Custom glow borders on placeholder contents */
.pt-pink { color: var(--neon-pink); }
.pt-pink .camera-icon { text-shadow: 0 0 10px rgba(255, 0, 127, 0.4); }
.pt-pink .meta-code { text-shadow: 0 0 5px rgba(255, 0, 127, 0.3); }

.pt-cyan { color: var(--neon-cyan); }
.pt-cyan .camera-icon { text-shadow: 0 0 10px rgba(0, 229, 255, 0.4); }
.pt-cyan .meta-code { text-shadow: 0 0 5px rgba(0, 229, 255, 0.3); }

.pt-yellow { color: var(--star-yellow); }
.pt-yellow .camera-icon { text-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
.pt-yellow .meta-code { text-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }

/* ==========================================
   MERCHANT CONTROL STATION: EDIT/DELETE WORKFLOW
   ========================================== */
.ws-header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ws-header-buttons {
  display: flex;
  gap: 8px;
}

.vshn-btn.edit-btn {
  padding: 6px 12px;
  font-size: 0.72em;
  height: 28px;
  border-color: var(--neon-cyan);
  box-shadow: none;
  background: transparent;
}
.vshn-btn.edit-btn:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: var(--shadow-cyan);
}

.vshn-btn.delete-btn {
  padding: 6px 12px;
  font-size: 0.72em;
  height: 28px;
  border-color: var(--neon-pink);
  box-shadow: none;
  background: transparent;
}
.vshn-btn.delete-btn:hover {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

/* Edit Record Modal Overlay */
.edit-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.edit-modal-container {
  width: 100%;
  max-width: 680px;
  padding: 30px;
  border-radius: 4px;
  border: 2px solid var(--border);
  background: var(--card-bg-glass);
  box-shadow: 0 25px 60px rgba(0,0,0,0.8);
  position: relative;
  overflow-y: auto;
  max-height: 95vh;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px;
}

.modal-header h3 {
  font-size: 1.15em;
  color: var(--neon-cyan);
  text-shadow: var(--shadow-cyan);
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-modal-btn:hover {
  color: var(--neon-pink);
  text-shadow: var(--shadow-pink);
}

.modal-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

/* Responsive collapse for footer grid on smaller viewports */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .footer-brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-col {
    text-align: center;
    align-items: center;
  }
}

/* ==========================================
   GLOBAL LOADING OVERLAY STYLES
   ========================================== */
.global-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-loading-overlay .blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 12, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.global-loading-overlay .loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.three-dots-loader {
  display: flex;
  gap: 8px;
}

.three-dots-loader .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
  animation: three-dots-bounce 1.4s infinite ease-in-out both;
}

.three-dots-loader .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.three-dots-loader .dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes three-dots-bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

#global-loading-message {
  font-family: var(--font-headings);
  font-size: 0.8em;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text);
  text-shadow: var(--shadow-cyan);
}

.lookbook-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.collage-card:hover .lookbook-img {
  transform: scale(1.05);
}
