:root {
  --bg: #536569;
  --surface: #6E7D80;
  --surface-hover: #7e8d90;
  --border: #8a9698;
  --text: #e6e6e6;
  --muted: #9DA9AD;
  --accent: #226096;
  --accent-hover: #0C4377;
  --accent-text: #9DA9AD;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
}

a { color: var(--accent); text-decoration: none; }

/* ===== Header / Nav ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(83, 101, 105, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(138, 150, 152, 0.25);
  transition: background var(--transition), box-shadow var(--transition);
}

header.scrolled {
  background: rgba(83, 101, 105, 0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}

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

nav h1 {
  color: var(--accent-text);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Main Layout ===== */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  max-width: 1200px;
  margin: 24px auto 48px;
  padding: 80px 24px;
  background: linear-gradient(145deg, rgba(34, 96, 150, 0.18), rgba(83, 101, 105, 0.4) 50%, rgba(12, 67, 119, 0.12)),
              var(--surface);
  border: 1px solid rgba(138, 150, 152, 0.3);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(34, 96, 150, 0.08), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(157, 169, 173, 0.04), transparent 50%);
  animation: hero-shift 12s ease-in-out infinite alternate;
}

@keyframes hero-shift {
  0% { transform: translate(-5%, -5%); }
  100% { transform: translate(5%, 5%); }
}

.hero h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 32px;
  position: relative;
}

.hero .btn {
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: inline-block;
  position: relative;
  box-shadow: 0 4px 16px rgba(34, 96, 150, 0.35);
}

.hero .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 96, 150, 0.45);
}

/* ===== Section Headings ===== */
section { animation: fade-up 0.5s ease both; }

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

section h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 48px 0 4px;
  letter-spacing: -0.01em;
}

.category-title,
.Service_Price h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-text);
  margin: 48px 0 18px;
  letter-spacing: -0.01em;
}

.subhead {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-text);
  margin: 24px 0 14px;
}

/* ===== Services Grid ===== */
.service {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.service-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ===== Boss Images ===== */
.price-card-img-wrap {
  text-align: center;
  margin-bottom: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.boss-img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  image-rendering: pixelated;
}

.checkout-boss-img {
  display: block;
  margin: 0 auto 16px;
  max-width: 120px;
  max-height: 120px;
  image-rendering: pixelated;
}

/* ===== Quantity Chip Selector ===== */
.qty-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.qty-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.qty-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.qty-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  min-width: 44px;
  text-align: center;
}

.qty-chip:hover {
  border-color: var(--accent);
  color: #fff;
}

.qty-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.qty-custom { font-size: 1.1rem; font-weight: 700; }

.qty-custom-input { margin-top: 8px; }

.qty-custom-input input {
  width: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}

.qty-custom-input input:focus { border-color: var(--accent); }

.qty-custom-input input::-webkit-inner-spin-button,
.qty-custom-input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-total {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--text);
}

.qty-times, .qty-eq { color: var(--muted); margin: 0 4px; }

.qty-total strong {
  color: var(--accent-text);
  font-size: 1.2rem;
}

.qty-bulk {
  font-size: 0.8rem;
  color: var(--accent-text);
  margin-top: 8px;
  opacity: 0.35;
}

.bulk-tag {
  font-size: 0.82rem;
  color: var(--accent-text);
  background: rgba(157, 169, 173, 0.12);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-top: 4px;
}

/* ===== Price Grid + Cards ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 20px;
  margin: 0 0 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(34, 96, 150, 0.3), 0 8px 32px rgba(34, 96, 150, 0.15);
  transition: opacity var(--transition);
  pointer-events: none;
}

.price-card:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.price-card:hover::after { opacity: 1; }

.price-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.price-card-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.price-card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-text);
  white-space: nowrap;
}

.price-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 6px;
}

.price-card .btn {
  margin-top: auto;
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  box-shadow: 0 2px 8px rgba(34, 96, 150, 0.25);
}

.price-card .btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 96, 150, 0.35);
}

/* ===== Notes / Requirements ===== */
.notes {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 16px 0 8px;
}

.notes h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.notes p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}

.notes ul { margin: 0; padding-left: 20px; }

.notes li {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.notes li::marker { color: var(--accent-text); }

/* ===== Guides Section ===== */
.guides-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.guide-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.guide-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guide-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.guide-item:hover .guide-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  transition: background 0.2s;
  opacity: 0.85;
}

.guide-item:hover .play-overlay {
  background: rgba(0,0,0,0.2);
  opacity: 1;
}

.guide-item h2 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding: 14px 16px;
}

/* ===== Contact ===== */
.contact-section {
  text-align: center;
  padding: 48px 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-section p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform 0.15s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  width: 100%;
}

/* ===== Checkout ===== */
.checkout-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 20px;
  max-width: 900px;
}

.checkout-page h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

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

.summary-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.summary-card > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.summary-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-text);
}

/* ===== Form ===== */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkbox-label a { color: var(--accent-text); text-decoration: underline; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 96, 150, 0.15);
}

.field-error {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 2px;
}

.disclaimer {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
  font-size: 3rem;
  color: #4ade80;
  margin-bottom: 12px;
}

.modal-content h2 {
  color: #fff;
  margin-bottom: 8px;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.order-id-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 24px;
}

.order-id-box strong { color: var(--accent-text); }

.hidden { display: none !important; }

/* ===== Spinner ===== */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(157, 169, 173, 0.27);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Toast ===== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: toast-in 0.3s ease;
  max-width: 360px;
}

.toast-error { background: #dc2626; }
.toast-success { background: #16a34a; }
.toast-info { background: var(--accent); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== Order Status Page ===== */
.order-status-page {
  padding: 40px 20px;
  max-width: 600px;
  margin-top: 80px;
}

.order-status-page h2 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.order-lookup {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.order-lookup input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}

.order-lookup input:focus { border-color: var(--accent); }

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

.order-card h3 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.order-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.order-detail:last-child { border-bottom: none; }

.order-detail span:first-child { color: var(--muted); }
.order-detail span:last-child { color: var(--text); }

.status-pending { color: #fbbf24; }
.status-progress { color: #60a5fa; }
.status-completed { color: #4ade80; }
.status-expired { color: #f87171; }

.error { color: #f87171; }

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.back-link:hover { color: var(--accent-hover); }

.lookup-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent-text); border-bottom-color: var(--accent); }

.tab-content { display: none; }
.tab-content.active { display: block; }

#auto-refresh-indicator {
  font-size: 0.8rem;
  color: #60a5fa;
  margin-top: 8px;
}

/* ===== Timeline ===== */
.timeline { position: relative; padding-left: 24px; margin-top: 12px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; padding-bottom: 16px; }
.timeline-dot { position: absolute; left: -18px; top: 4px; width: 10px; height: 10px; border-radius: 50%; }
.timeline-dot.status-completed { background: #4ade80; }
.timeline-dot.status-progress { background: #60a5fa; }
.timeline-dot.status-expired { background: #f87171; }
.timeline-content { font-size: 0.85rem; color: var(--text); }
.timeline-content p { color: var(--muted); font-size: 0.8rem; margin-top: 2px; }
.timeline-date { font-size: 0.75rem; color: #888; display: block; margin-top: 2px; }

/* ===== Admin ===== */
.admin-page { padding: 40px 20px; max-width: 1200px; margin-top: 80px; }
.admin-page h2 { color: #fff; margin-bottom: 24px; }
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-toolbar span { color: var(--muted); font-size: 0.9rem; }
.admin-filters { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.admin-filters select,
.admin-filters input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}
.admin-filters select:focus,
.admin-filters input:focus { border-color: var(--accent); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th {
  text-align: left;
  padding: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.admin-table td { padding: 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.admin-table tr:hover td { background: rgba(157, 169, 173, 0.06); }
.admin-table .status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.status-pending-bg { background: #fbbf2422; color: #fbbf24; }
.status-claimed-bg, .status-in-progress-bg { background: #60a5fa22; color: #60a5fa; }
.status-completed-bg { background: #4ade8022; color: #4ade80; }
.status-expired-bg { background: #f8717122; color: #f87171; }
.admin-table .action-btn {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  margin-right: 4px;
}
.admin-table code { color: var(--accent-text); }
.pagination-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 16px; }
.pagination-controls button:disabled { opacity: 0.4; cursor: not-allowed; }
#pagination-info { color: var(--muted); font-size: 0.85rem; }
#login-form { max-width: 400px; }
#login-form .form-group { margin-bottom: 12px; }
#login-form input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}
#login-form input:focus { border-color: var(--accent); }
#orders-table-wrapper { overflow-x: auto; }

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.stat-value { font-size: 2rem; font-weight: 800; color: var(--accent-text); }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 200px; padding: 16px 0; overflow-x: auto; }
.bar-item { display: flex; flex-direction: column; align-items: center; min-width: 36px; }
.bar-track { width: 28px; height: 150px; background: var(--border); border-radius: 4px 4px 0 0; position: relative; }
.bar-fill { position: absolute; bottom: 0; width: 100%; background: var(--accent); border-radius: 4px 4px 0 0; transition: height 0.3s; }
.bar-label { font-size: 0.7rem; color: #888; margin-top: 4px; }
.bar-value { font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }

/* ===== Footer ===== */
footer {
  margin-top: auto;
  background: var(--bg);
  border-top: 1px solid rgba(138, 150, 152, 0.25);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  padding: 24px;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ===== Mobile nav overlay ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  backdrop-filter: blur(2px);
  transition: opacity var(--transition);
}

.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav ul {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(83, 101, 105, 0.96);
    backdrop-filter: blur(14px);
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(138, 150, 152, 0.25);
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 999;
  }

  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul li { width: 100%; }
  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(138, 150, 152, 0.12);
  }
  nav ul li:last-child a { border-bottom: none; }

  nav a::after { display: none; }

  .checkout-page { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px; margin: 24px auto 32px; }
  .hero h2 { font-size: 1.8rem; }
  .price-grid { grid-template-columns: 1fr; }
  .service { grid-template-columns: 1fr; }
  nav ul { gap: 0; }
  .main { padding: 0 16px 60px; }
  .order-lookup { flex-direction: column; }

  section h1 {
    font-size: 22px;
    margin: 36px 0 4px;
  }

  .Service_Price h2 {
    font-size: 18px;
    margin: 36px 0 14px;
  }

  .guides-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px 18px;
  }

  .price-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .notes {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  body { padding-top: 56px; }

  .main { padding: 0 12px 40px; }

  .hero {
    padding: 36px 16px;
    margin: 16px -4px 24px;
    border-radius: 14px;
  }

  .hero h2 { font-size: 1.4rem; }
  .hero p { font-size: 15px; margin: 0 0 24px; }
  .hero .btn { padding: 12px 28px; font-size: 15px; }

  section h1 { font-size: 19px; margin: 28px 0 4px; }

  .Service_Price h2 {
    font-size: 16px;
    margin: 28px 0 10px;
  }

  .service-card h2 { font-size: 15px; }
  .service-card p { font-size: 13px; }

  .price-card-head h3 { font-size: 15px; }
  .price-card .price { font-size: 17px; }
  .price-card { padding: 18px; }

  .guide-item h2 {
    font-size: 14px;
    padding: 12px 14px;
  }

  .notes h3 { font-size: 15px; }
  .notes p { font-size: 13px; }
  .notes li { font-size: 13px; }

  .contact-section { padding: 32px 0; }
}
