/* ============================================
   SHADOWSTRIKE WEB — MAIN STYLESHEET
   Theme: Dark Samurai | Red Accent | Bold
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  --black:       #070a0a;
  --dark:        #0d1010;
  --dark2:       #111717;
  --dark3:       #181f1f;
  --border:      #1e2828;
  --red:         #c0392b;
  --red-bright:  #e74c3c;
  --red-glow:    rgba(192,57,43,0.35);
  --red-dim:     rgba(192,57,43,0.12);
  --grey:        #5a6a6a;
  --grey-light:  #8a9a9a;
  --white:       #e8eded;
  --white-dim:   rgba(232,237,237,0.6);
  --font-title:  'Cinzel', serif;
  --font-body:   'Rajdhani', sans-serif;
  --font-mono:   'Share Tech Mono', monospace;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(7,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

nav.scrolled {
  padding: 0.8rem 4rem;
  border-bottom-color: var(--red);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--red));
}

.nav-logo span {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo span em {
  color: var(--red);
  font-style: normal;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--red);
  font-family: var(--font-title) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-1px); box-shadow: 0 4px 20px var(--red-glow); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(192,57,43,0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 75%);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title .accent {
  color: var(--red);
  display: block;
  text-shadow: 0 0 60px var(--red-glow);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--grey-light);
  max-width: 560px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-logo-bg {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  opacity: 0.04;
  pointer-events: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: var(--transition);
  box-shadow: 0 0 0 rgba(192,57,43,0);
}

.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid var(--border);
  cursor: pointer;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--red);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SERVICES / PRICING ── */
#services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 4rem;
  border: 2px solid var(--border);
}

.service-card {
  background: var(--dark2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover { background: var(--dark3); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(135deg, var(--dark3), var(--dark2));
  border: 1px solid var(--red);
}

.service-card.featured::before { transform: scaleX(1); }

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.featured .service-tag {
  background: var(--red);
  color: var(--white);
  display: inline-block;
  padding: 0.2rem 0.8rem;
}

.service-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 1rem 0;
}

.service-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; }
.service-price span { font-size: 0.9rem; color: var(--grey-light); font-weight: 400; }

.service-desc {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--grey-light);
}

.service-features li::before {
  content: '▸';
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-extra {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey);
  padding: 0.8rem 1rem;
  background: var(--dark);
  border-left: 2px solid var(--red);
  margin-bottom: 2rem;
}

/* ── HOW IT WORKS ── */
#process { background: var(--black); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--red), var(--border), transparent);
}

.step {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-number {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  background: var(--black);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step:hover .step-number {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 30px var(--red-glow);
}

.step-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.step-text {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* ── ORDER FORM ── */
#order { background: var(--dark); }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.order-info-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.order-info-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.order-info-box::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; }

.info-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

.info-value {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--white);
  text-align: right;
}

.info-value.red { color: var(--red); }

/* FORM */
.order-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  text-transform: uppercase;
}

input, select, textarea {
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c0392b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: var(--dark2); }

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

.price-preview {
  background: var(--dark3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-left: 3px solid var(--red);
}

.price-preview-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-preview-value {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
}

.price-breakdown {
  font-size: 0.8rem;
  color: var(--grey);
  font-family: var(--font-mono);
  margin-top: 0.3rem;
}

.form-notice {
  font-size: 0.8rem;
  color: var(--grey);
  font-family: var(--font-mono);
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  filter: drop-shadow(0 0 6px var(--red));
}

.footer-logo span {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--grey-light);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--red); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--grey);
  font-family: var(--font-mono);
}

.footer-copy span { color: var(--red); }

/* ── SUCCESS MESSAGE ── */
.success-msg {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--dark2);
  border: 1px solid var(--red);
}

.success-msg.show { display: block; }
.success-msg h3 { font-family: var(--font-title); font-size: 1.8rem; color: var(--red); margin-bottom: 1rem; }
.success-msg p { color: var(--grey-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%       { box-shadow: 0 0 0 12px transparent; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 5rem 1.5rem; }
  .order-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.5rem; }
  .process-steps::before { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── ADMIN STYLES (used in admin.php) ── */
.admin-body {
  background: var(--black);
  font-family: var(--font-body);
  color: var(--white);
}

.admin-header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header .logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}

.admin-header .logo em { color: var(--red); font-style: normal; }

.admin-main { padding: 2.5rem; max-width: 1400px; margin: 0 auto; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.stat-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.stat-value.red { color: var(--red); }

.orders-table-wrap {
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow-x: auto;
}

.orders-table-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.orders-table-header h2 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--grey-light);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead th {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--dark3);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

tbody tr:hover { background: var(--dark3); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 1rem 1.5rem;
  color: var(--white-dim);
  vertical-align: top;
}

td.client { font-weight: 600; color: var(--white); }
td.type { font-family: var(--font-mono); font-size: 0.75rem; }
td.price { font-family: var(--font-title); font-weight: 700; color: var(--red); }

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid;
}

.badge-new     { color: #3498db; border-color: #3498db; background: rgba(52,152,219,0.1); }
.badge-review  { color: #f39c12; border-color: #f39c12; background: rgba(243,156,18,0.1); }
.badge-active  { color: #2ecc71; border-color: #2ecc71; background: rgba(46,204,113,0.1); }
.badge-done    { color: var(--grey); border-color: var(--grey); background: rgba(90,106,106,0.1); }
.badge-html    { color: var(--red-bright); border-color: var(--red-bright); background: var(--red-dim); }
.badge-fs      { color: #9b59b6; border-color: #9b59b6; background: rgba(155,89,182,0.1); }

.action-btn {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey-light);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  margin-right: 0.3rem;
}

.action-btn:hover { border-color: var(--red); color: var(--red); }
.action-btn.danger:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* Status select in admin */
.status-select {
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  outline: none;
}

.status-select:focus { border-color: var(--red); }

/* Order detail panel */
.detail-desc {
  font-size: 0.85rem;
  color: var(--grey-light);
  font-style: italic;
  max-width: 300px;
  white-space: pre-wrap;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.login-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-top: 2px solid var(--red);
  border-left: 2px solid var(--red);
}

.login-box::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

.login-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.login-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--grey);
  text-align: center;
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
}

.login-box .form-group { margin-bottom: 1.2rem; }
.login-box label { display: block; margin-bottom: 0.4rem; }
.login-box input { width: 100%; }
.login-box .btn-primary { width: 100%; justify-content: center; margin-top: 1rem; clip-path: none; }

.error-msg {
  background: rgba(192,57,43,0.15);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 0.8rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
