:root {
  --bg: #0f1115;
  --surface: #171a21;
  --surface-soft: #131720;
  --ink: #eceff4;
  --ink-light: #a9b1c2;
  --accent: #7c9cff;
  --accent-dark: #5f7de0;
  --line: #2a3040;
  --radius: 14px;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1040px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(20, 24, 33, 0.82);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-light);
  font-weight: 700;
}

.hero {
  padding: 4rem 0 2.75rem;
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
  margin: 0.5rem 0 0.9rem;
}

.hero-copy {
  color: var(--ink-light);
  max-width: 56ch;
  margin-bottom: 1.4rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.78rem 1.2rem;
  border-radius: 11px;
  font-weight: 800;
  transition: transform 220ms var(--ease-smooth), box-shadow 220ms var(--ease-smooth), background-color 180ms ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.cta:hover,
button:hover {
  background: var(--accent-dark);
}

.hero-card,
.testimonial-card,
.faq-grid details,

.option-lab {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.option-lab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.option-lab-header h3 {
  margin: 0;
}

.option-lab-copy {
  margin: 0.35rem 0 0.75rem;
  color: var(--ink-light);
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem;
  background: #1b212d;
  transition: transform 260ms var(--ease-smooth), box-shadow 260ms var(--ease-smooth), border-color 220ms ease;
}

.option-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
  border-color: #36435f;
}

.option-card h4 {
  margin: 0;
}

.option-price {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0.35rem 0;
  color: var(--accent-dark);
}

.mission-lab {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}


.mission-lab-featured {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  border: 2px solid #3d4d73;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, #1a2233 0%, #171a21 100%);
  position: relative;
  overflow: hidden;
  animation: fade-up 520ms var(--ease-smooth) both;
}

.mission-lab-featured::after {
  content: '';
  position: absolute;
  inset: -120% auto auto -40%;
  width: 42%;
  height: 260%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  animation: mission-sheen 4.2s ease-in-out infinite;
  pointer-events: none;
}

.mission-kicker {
  margin: 0 0 0.45rem;
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #a9c0ff;
  background: #2a3550;
  border: 1px solid #465e95;
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
}
.mission-lab h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.mission-lab textarea,
.mission-lab select {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 10px;
  border: 1px solid #37445f;
  background: #111722;
  color: var(--ink);
  padding: 0.65rem;
  font: inherit;
}

.mission-lab textarea {
  resize: vertical;
}

.mission-result {
  margin-top: 0.85rem;
  background: #1b2331;
  border: 1px solid #36435f;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  color: var(--ink-light);
  font-weight: 600;
}

.order-status-card {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid #42506e;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.order-status-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.order-status-card p {
  margin: 0.3rem 0;
  color: var(--ink-light);
}

.order-status-card .form-actions {
  margin-top: 0.7rem;
}

.quote-next-steps {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.owner-meta {
  color: var(--ink-light);
  font-weight: 700;
  margin-bottom: 0;
}

.section {
  padding: 2.6rem 0;
}

.section h2 {
  margin-top: 0;
  font-size: 1.75rem;
}

.page-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-links-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.page-links-grid a {
  font-weight: 800;
  color: var(--accent-dark);
}

.section-alt {
  background: var(--surface-soft);
  border-block: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.step-image {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #36435f;
  margin-bottom: 0.7rem;
}

.steps span {
  display: inline-flex;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 0.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

.bullets {
  padding-left: 1.1rem;
  color: var(--ink-light);
}

.beginner-grid,
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.samples-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.beginner-grid article,
.samples-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.samples-grid img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #36435f;
}

.field-help {
  margin-top: -0.05rem;
  font-weight: 600;
  color: #a7b3c9;
}
.quote-intro {
  color: var(--ink-light);
  margin-top: -0.2rem;
  margin-bottom: 1rem;
}


.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
  align-items: start;
  gap: 1rem;
}

.quote-main {
  min-width: 0;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: var(--surface);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--ink-light);
}

.quote-form input,
.quote-form select,

.mission-lab .form-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: transform 220ms var(--ease-smooth), box-shadow 220ms var(--ease-smooth), background-color 180ms ease;
}

.mission-lab .form-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.35);
}

.mission-lab .form-actions .secondary-btn {
  background: #2a3345;
  color: var(--ink);
  border: 1px solid #42506e;
}

.quote-form button {
  font: inherit;
}

.delivery-fieldset,
.customization-fieldset {
  border: 1px solid #37445f;
  border-radius: 9px;
  padding: 0.65rem 0.75rem;
  margin: 0;
}

.customization-fieldset {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  background: #171d2a;
}

.delivery-fieldset legend,
.customization-fieldset legend {
  padding: 0 0.35rem;
  color: var(--ink-light);
  font-weight: 700;
}

.quote-form .choice-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.choice-row:first-of-type {
  margin-top: 0.15rem;
}

.choice-row input[type="radio"] {
  accent-color: var(--accent);
}

.quote-form input,
.quote-form select {
  padding: 0.65rem;
  border-radius: 9px;
  border: 1px solid #37445f;
  background: #111722;
  color: var(--ink);
}

.form-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
}

.quote-form button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: transform 220ms var(--ease-smooth), box-shadow 220ms var(--ease-smooth), background-color 180ms ease;
}

.quote-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.35);
}

.quote-form .secondary-btn {
  background: #2a3345;
  color: var(--ink);
  border: 1px solid #42506e;
}

.promo-status {
  grid-column: 1 / -1;
  margin: -0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-light);
  font-weight: 700;
}

.promo-status.is-valid {
  color: #63d689;
}

.promo-status.is-invalid {
  color: #ff7b7b;
}
.checkbox-row {
  flex-direction: row !important;
  align-items: center;
  gap: 0.55rem;
}

.checkbox-row,
.form-actions {
  grid-column: 1 / -1;
}

.draft-status {
  margin: 0.65rem 0 0;
  color: var(--ink-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.checkbox-row input[type="checkbox"] {
  accent-color: var(--accent);
}

.live-estimate {
  margin-top: 0;
  background: #1c2433;
  border: 1px solid #3a4a6a;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  position: sticky;
  top: 5.8rem;
}

.live-estimate h3 {
  margin: 0;
  font-size: 1rem;
}

.live-estimate-value {
  margin: 0.35rem 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #8ea8ff;
}

.live-estimate-time,
.live-estimate-meta {
  margin: 0.2rem 0;
  color: var(--ink-light);
}

.live-breakdown {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-light);
}

.live-breakdown li + li {
  margin-top: 0.2rem;
}

.option-lab {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.option-lab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.option-lab-header h3 {
  margin: 0;
}

.option-lab-copy {
  margin: 0.35rem 0 0.75rem;
  color: var(--ink-light);
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem;
  background: #1b212d;
}

.option-card h4 {
  margin: 0;
}

.option-price {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0.35rem 0;
  color: var(--accent-dark);
}

.mission-lab {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.mission-lab h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.mission-lab textarea,
.mission-lab select {
  width: 100%;
  margin-top: 0.35rem;
  border-radius: 10px;
  border: 1px solid #37445f;
  background: #111722;
  color: var(--ink);
  padding: 0.65rem;
  font: inherit;
}

.mission-lab textarea {
  resize: vertical;
}

.mission-result {
  margin-top: 0.85rem;
  background: #1b2331;
  border: 1px solid #36435f;
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  color: var(--ink-light);
  font-weight: 600;
}
.quote-next-steps {
  margin-top: 1rem;
  box-shadow: none;
}

.quote-next-steps h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.quote-next-steps ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid details {
  box-shadow: none;
}

.faq-grid summary {
  font-weight: 800;
  cursor: pointer;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--ink-light);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  color: var(--ink-light);
}


@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mission-sheen {
  0% {
    left: -45%;
  }

  55% {
    left: 140%;
  }

  100% {
    left: 140%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}



.inventory-updated {
  color: var(--ink-light);
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.inventory-edit-note {
  margin: 0 0 1rem;
  color: var(--ink-light);
}

.inventory-edit-note code {
  background: #202a3b;
  border: 1px solid #42506e;
  border-radius: 6px;
  padding: 0.08rem 0.4rem;
  color: #d6e0ff;
}

.inventory-block {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}


.inventory-block-featured {
  border-color: #4d6394;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
  background: linear-gradient(180deg, #1a2233 0%, #171a21 100%);
}

.inventory-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.inventory-block-compact {
  padding: 0.8rem;
  margin-top: 0.8rem;
}

.inventory-block-compact h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.inventory-block-compact table {
  font-size: 0.9rem;
}

.inventory-block h3 {
  margin-top: 0;
}

.inventory-status {
  display: inline-flex;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.inventory-status-in_stock {
  background: rgba(56, 194, 115, 0.2);
  color: #8ef0b5;
  border: 1px solid rgba(99, 214, 137, 0.45);
}

.inventory-status-low {
  background: rgba(226, 173, 67, 0.2);
  color: #ffd98a;
  border: 1px solid rgba(226, 173, 67, 0.45);
}

.inventory-status-out {
  background: rgba(230, 94, 94, 0.22);
  color: #ff9f9f;
  border: 1px solid rgba(255, 123, 123, 0.5);
}

.inventory-status-available {
  background: rgba(124, 156, 255, 0.22);
  color: #bfd0ff;
  border: 1px solid rgba(124, 156, 255, 0.45);
}

.inventory-status-unavailable {
  background: rgba(230, 94, 94, 0.22);
  color: #ff9f9f;
  border: 1px solid rgba(255, 123, 123, 0.5);
}

#amsSummary ul {
  margin: 0.45rem 0 0.8rem;
  color: var(--ink-light);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.material-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}


.material-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #36435f;
  margin-bottom: 0.65rem;
}

.material-character {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #42506e;
  background: #202a3b;
  color: #b8c9ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.material-variants-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: #b8c9ff;
  font-weight: 700;
  text-decoration: none;
}

.material-variants-link:hover {
  color: #d4ddff;
  text-decoration: underline;
}

.variant-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.variant-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.variant-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #36435f;
}

.variant-card h3 {
  margin: 0;
}

.variant-card p {
  margin: 0.35rem 0 0;
  color: var(--ink-light);
}

.material-card h3 {
  margin-top: 0;
  margin-bottom: 0.3rem;
}

.material-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: var(--ink-light);
}

.material-matrix {
  margin-top: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.table-wrap {
  overflow-x: auto;
}

.material-matrix table {
  width: 100%;
  border-collapse: collapse;
}

.material-matrix th,
.material-matrix td {
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0.5rem;
  text-align: left;
}

.material-matrix th {
  color: var(--ink-light);
  font-size: 0.92rem;
}

.material-note {
  margin: 0.6rem 0 0;
  color: var(--ink-light);
  font-size: 0.92rem;
}

.secondary-link {
  text-align: center;
  background: #2a3345;
  color: var(--ink);
  border: 1px solid #42506e;
}

.secondary-link:hover {
  background: #35435f;
}

@media (max-width: 930px) {
  .hero-grid,
  .about-grid,
  .faq-grid,
  .samples-grid,
  .page-links-grid,
  .materials-grid,
  .inventory-compact-grid {
    grid-template-columns: 1fr;
  }

  .variant-card {
    grid-template-columns: 1fr;
  }

  .customization-fieldset {
    grid-template-columns: 1fr 1fr;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .live-estimate {
    position: static;
    margin-top: 1rem;
  }
}

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

  .steps,
  .quote-form,
  .form-actions,
  .beginner-grid,
  .option-cards,
  .customization-fieldset {
    grid-template-columns: 1fr;
  }
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.admin-card h3 {
  margin-top: 0;
}

.admin-card label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--ink-light);
}

.admin-card input {
  padding: 0.65rem;
  border-radius: 9px;
  border: 1px solid #37445f;
  background: #111722;
  color: var(--ink);
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.admin-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
}

.admin-actions .secondary-btn {
  background: #2a3345;
  color: var(--ink);
  border: 1px solid #42506e;
}

.admin-actions .danger-btn {
  background: #7a2b3a;
}

.admin-json {
  margin: 0;
  max-height: 420px;
  overflow: auto;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #36435f;
  background: #111722;
  color: #c8d6ff;
  font-size: 0.9rem;
}

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

.admin-orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.admin-orders-header h3 {
  margin: 0;
}

.admin-card .secondary-btn {
  border: 1px solid #42506e;
  border-radius: 10px;
  background: #2a3345;
  color: var(--ink);
  font-weight: 800;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
}

.orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  max-height: 340px;
  overflow: auto;
}

.orders-list-empty {
  color: var(--ink-light);
  font-weight: 700;
  padding: 0.6rem 0.55rem;
}

.order-list-item {
  width: 100%;
  text-align: left;
  border: 1px solid #36435f;
  border-radius: 9px;
  background: #111722;
  color: var(--ink);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.order-list-item:hover {
  border-color: #4a5f89;
}

.order-list-meta {
  color: var(--ink-light);
  font-size: 0.85rem;
  text-transform: capitalize;
}

.admin-details-card {
  margin-top: 1rem;
}

.admin-simple p {
  margin: 0.4rem 0;
  color: var(--ink-light);
}

.admin-simple strong {
  color: var(--ink);
}

.receipt-card,
.admin-receipt-card {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.receipt-card h3,
.admin-receipt-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.receipt-meta {
  margin: 0;
  color: var(--ink-light);
  font-weight: 700;
}

.receipt-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
}

.receipt-grid p {
  margin: 0;
  color: var(--ink-light);
}

.receipt-grid strong {
  color: var(--ink);
}

.receipt-lines {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #36435f;
}

.receipt-lines li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2f3b54;
  color: var(--ink-light);
}

.receipt-lines li strong {
  color: var(--ink);
}

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