/* =========================================================
   West Midlands Delivery — WMD branded site
   Palette (matches the WMD logo):
     navy  #1B2A4E  (primary brand — W and wordmark)
     blue  #1B458F  (M, D, and DELIVERY accent)
     dark  #0A0A0A
     grey  #F4F4F4
   --red and --red-dark are kept as variable names for
   backwards compatibility but now point to the navy palette
   so every existing var(--red*) usage picks up the new theme.
========================================================= */

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

:root {
  --red: #1B2A4E;
  --red-dark: #142143;
  --brand: #1B2A4E;
  --brand-dark: #142143;
  --brand-blue: #1B458F;
  --blue: #1B458F;
  --blue-dark: #163874;
  --dark: #0A0A0A;
  --ink: #1B1B1B;
  --grey: #F4F4F4;
  --grey-2: #E7E7E7;
  --muted: #6B6B6B;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 4px;
}

html, body { margin: 0; padding: 0; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* =========================================================
   TOP BAR (PFW style - red bar with logo + icons)
========================================================= */
.topbar {
  background: var(--red);
  color: #fff;
  position: relative;
  z-index: 30;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 18px;
}
.topbar-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-link {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 10px;
  white-space: nowrap;
}
.topbar-link:hover { color: #fff; text-decoration: underline; }

.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.15); }
.icon-btn svg { width: 22px; height: 22px; }
.menu-btn { margin-left: 4px; }

/* =========================================================
   PRIMARY NAV (PFW style - red bar with nav links + CTA)
========================================================= */
.primary-nav {
  background: var(--red);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.primary-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 24px;
}
.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 32px;
}
.primary-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  position: relative;
}
.primary-nav a:hover { color: #fff; text-decoration: none; }
.primary-nav a.has-caret::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  opacity: 0.8;
}
.nav-cta {
  background: #fff;
  color: var(--red) !important;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { background: var(--dark); color: #fff !important; text-decoration: none; }
.nav-cta span { font-size: 16px; }

/* =========================================================
   HERO (PFW style - deep blue with white text + white card)
========================================================= */
.hero {
  position: relative;
  background: var(--blue);
  color: #fff;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero::before {
  /* subtle world-map dot pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.hero-bullets {
  list-style: none;
  margin: 0; padding: 0;
}
.hero-bullets li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
}

/* Hero card (right) */
.hero-card {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  overflow: hidden;
}
.hero-card-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--grey-2);
}
.badge-mail {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid #FFD400;
  position: relative;
}
.badge-mail::after {
  content: "✉";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: #FFD400;
  color: var(--red);
  font-size: 14px;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.badge-wmd {
  background: #fff;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  font-style: italic;
  padding: 6px 12px;
  border: 2px solid var(--red);
  letter-spacing: 0.04em;
}
.badge-wmd em {
  font-style: italic;
  font-weight: 800;
  font-size: 9px;
  display: block;
  text-align: center;
  margin-top: -2px;
  letter-spacing: 0.1em;
}

/* Tabs */
.hero-card-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--grey-2);
}
.tab {
  background: transparent;
  border: 0;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: background 0.15s ease, color 0.15s ease;
}
.tab.is-active {
  background: #fff;
  color: var(--ink);
  border-bottom-color: var(--red);
}
.tab:hover:not(.is-active) { color: var(--ink); }

/* Tab panels */
.tab-panel { padding: 24px 24px 26px; }
.send-question {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--ink);
}
.select-wrap {
  position: relative;
  margin-bottom: 14px;
}
.select-wrap select {
  width: 100%;
  padding: 16px 44px 16px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
}
.select-wrap select:focus { outline: 0; border-color: var(--red); }
.select-caret {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--ink);
  font-size: 18px;
}
.track-input {
  width: 100%;
  padding: 16px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  margin-bottom: 14px;
}
.track-input:focus { outline: 0; border-color: var(--red); }

.btn-send {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: 0;
  padding: 18px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s ease;
}
.btn-send:hover { background: var(--red-dark); }
.btn-send .plane { font-size: 16px; }

.send-already {
  text-align: center;
  margin: 14px 0 0;
  font-size: 14px;
}
.send-already a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 500;
}
.send-prices {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-2);
  font-size: 14px;
}
.send-prices a {
  color: var(--ink);
  text-decoration: underline;
  font-weight: 500;
}

/* =========================================================
   FEATURE CARDS (PFW style - 4 white cards with red icons)
========================================================= */
.feature-cards {
  position: relative;
  margin-top: -56px;
  z-index: 2;
  padding: 0 0 60px;
}
.feature-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}
.feature-card a {
  display: block;
  padding: 28px 24px;
  color: var(--ink);
  text-decoration: none;
}
.feature-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  color: var(--red);
  margin-bottom: 12px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.feature-card h3 .arrow {
  color: var(--red);
  font-weight: 800;
  font-size: 22px;
  transition: transform 0.15s ease;
}
.feature-card:hover h3 .arrow { transform: translateX(4px); }
.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* =========================================================
   TRACK RESULT (hidden by default)
========================================================= */
.track-result { padding: 60px 0; background: var(--grey); }
.track-result h2 {
  font-size: 24px;
  margin: 0 0 24px;
  font-weight: 800;
}
.track-result h2 span { color: var(--red); font-family: "Courier New", monospace; }
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--grey-2);
}
.timeline li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}
.timeline .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grey-2);
  flex-shrink: 0;
  margin-top: 6px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--grey-2);
}
.timeline li.done .dot { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.timeline time { display: block; font-size: 13px; color: var(--muted); margin: 2px 0 4px; }
.timeline p { margin: 0; color: var(--ink); font-size: 14px; }
.timeline strong { color: var(--ink); font-size: 15px; }

/* =========================================================
   SERVICES
========================================================= */
.services { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.service-card.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--red);
}
.service-card.featured p,
.service-card.featured li { color: rgba(255,255,255,0.85); }
.service-card .badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  min-height: 60px;
}
.service-card ul {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  font-size: 14px;
}
.service-card li {
  padding: 6px 0;
  border-top: 1px solid var(--grey-2);
}
.service-card.featured li { border-color: rgba(255,255,255,0.15); }
.service-card strong { color: var(--red); }
.service-card.featured strong { color: #ffffff; }
.link-arrow {
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}

/* =========================================================
   WHY
========================================================= */
.why {
  padding: 90px 0;
  background: var(--grey);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.why p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }
.check-list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.big-circle {
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.big-circle::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: 0.4;
}
.big-letter {
  font-family: "Arial Black", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 240px;
  color: var(--white);
  line-height: 1;
  margin-left: -20px;
}
.big-circle::after {
  content: "M";
  position: absolute;
  font-family: "Arial Black", Impact, sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 240px;
  color: var(--red);
  line-height: 1;
  margin-left: 100px;
}

/* =========================================================
   FAQ
========================================================= */
.help { padding: 90px 0; }
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: 12px;
  padding: 0 22px;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--red); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }

/* =========================================================
   CTA
========================================================= */
.cta {
  padding: 80px 0;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.cta p { font-size: 18px; margin: 0 0 28px; opacity: 0.95; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--red); padding: 12px 22px; border-radius: 999px; font-weight: 700; }
.btn-light:hover { background: var(--grey); text-decoration: none; }
.btn-outline-light { background: transparent; color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 700; border: 2px solid #fff; }
.btn-outline-light:hover { background: #fff; color: var(--red); text-decoration: none; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { height: 64px; width: auto; max-width: 100%; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; margin: 0 0 12px; line-height: 1.7; }
.contact-line { font-weight: 600; }
.site-footer h4 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin: 6px 0 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.site-footer a:hover { color: var(--red); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .topbar-inner { height: 56px; }
  .topbar-logo img { height: 32px; }
  .topbar-link { display: none; }
  .primary-nav-inner { height: auto; flex-wrap: wrap; padding: 12px 24px; gap: 12px; }
  .primary-nav ul { gap: 18px; flex-wrap: wrap; font-size: 14px; }
  .primary-nav a { font-size: 14px; }
  .nav-cta { padding: 10px 18px; font-size: 14px; }
  .hero { padding: 40px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy h1 { font-size: 32px; }
  .hero-bullets li { font-size: 16px; }
  .feature-cards { margin-top: -32px; }
  .section-head h2,
  .why h2,
  .cta h2 { font-size: 30px; }
  .big-circle { width: 280px; height: 280px; }
  .big-letter, .big-circle::after { font-size: 180px; }
  .big-circle::after { margin-left: 70px; }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 26px; }
  .hero-copy > p,
  .hero-bullets li { font-size: 14px; }
  .hero-bullets li { padding: 6px 0 6px 24px; }
  .hero-bullets li::before { width: 8px; height: 8px; top: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-card-tabs .tab { padding: 14px; font-size: 15px; }
  .tab-panel { padding: 18px 18px 20px; }
  .btn-send { padding: 16px; font-size: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom .container { flex-direction: column; }
  .cta h2 { font-size: 26px; }
  .services, .why, .help { padding: 60px 0; }
}

/* =========================================================
   PAGE HERO (sub-pages)
========================================================= */
.page-hero {
  background: var(--grey);
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--grey-2);
}
.page-hero h1 {
  font-size: 38px;
  font-weight: 800;
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 18px;
}
.page-hero p strong { color: var(--ink); }
.page-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.page-hero-cta .btn-primary { background: var(--red); color: #fff; padding: 12px 22px; border-radius: 999px; font-weight: 700; }
.page-hero-cta .btn-primary:hover { background: var(--red-dark); text-decoration: none; }
.page-hero-cta .btn-outline-light { background: transparent; color: var(--ink); padding: 12px 22px; border-radius: 999px; font-weight: 700; border: 2px solid var(--ink); }

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}
.breadcrumb a { color: var(--ink); }
.breadcrumb span { color: var(--muted); margin: 0 4px; }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* Track page form (large) */
.track-page-form { margin-top: 18px; max-width: 720px; }
.track-page-input {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--grey-2);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow);
}
.track-page-input svg { width: 22px; height: 22px; color: var(--muted); flex-shrink: 0; }
.track-page-input input {
  flex: 1; border: 0; outline: 0;
  font-size: 16px; padding: 14px 12px;
  background: transparent; color: var(--ink);
  font-family: inherit;
}
.track-page-input input::placeholder { color: #999; }
.track-page-input .btn {
  background: var(--red); color: #fff;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; border: 0;
}
.track-page-input .btn:hover { background: var(--red-dark); }
.track-hint { font-size: 13px; color: var(--muted); margin: 10px 4px 0; }

/* Track progress bar (above timeline) */
.track-progress {
  display: flex;
  justify-content: space-between;
  margin: 0 0 24px;
  padding: 16px 0;
  position: relative;
}
.track-progress::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 26px;
  height: 3px;
  background: var(--grey-2);
  z-index: 0;
}
.progress-step {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 38px;
}
.progress-step::before {
  content: "";
  position: absolute;
  left: 50%; top: 18px;
  transform: translateX(-50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--grey-2);
}
.progress-step.done::before { background: var(--red); border-color: var(--red); }
.progress-step.done { color: var(--ink); }
.progress-step.active::before { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,0.2); }
.progress-step.active { color: var(--red); font-weight: 800; }

/* Track help cards */
.track-help { padding: 60px 0; background: #fff; }
.track-help-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.track-help-card {
  background: var(--grey);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
}
.track-help-card .th-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  color: var(--red);
  margin-bottom: 12px;
}
.track-help-card .th-icon svg { width: 100%; height: 100%; }
.track-help-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 800; }
.track-help-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.track-help-card .link-arrow { font-weight: 700; color: var(--red); font-size: 14px; }

/* =========================================================
   BOOKING SECTION (shared by send / redelivery / return / collection)
========================================================= */
.booking-section { padding: 80px 0; background: #fff; }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.booking-copy h2 { font-size: 30px; font-weight: 800; margin: 0 0 12px; }
.booking-copy p { color: var(--muted); font-size: 16px; margin: 0 0 18px; }
.booking-copy .check-list li { font-size: 15px; }

.booking-form {
  background: #fff;
  border: 1.5px solid var(--grey-2);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.booking-form h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-2);
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 0; border-color: var(--red); }
.booking-form textarea { resize: vertical; font-family: inherit; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .btn-primary {
  background: var(--red); color: #fff;
  padding: 14px 24px; border-radius: 999px; font-weight: 800; border: 0;
  margin-top: 8px;
}
.booking-form .btn-primary:hover { background: var(--red-dark); }
.booking-result {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fdf2f3;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}
.booking-result.is-success { background: #ecf9f0; border-left-color: #2d9d5b; }

/* =========================================================
   PAYMENT BUTTONS (Apple Pay, Google Pay — checkout page)
========================================================= */
.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 22px;
  border: 0;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.pay-btn:hover { transform: translateY(-1px); }
.pay-btn:active { transform: translateY(0); }
.pay-btn-apple {
  background: #000;
  color: #fff;
}
.pay-btn-apple:hover { background: #1a1a1a; }
.pay-btn-google {
  background: #fff;
  color: #3c4043;
  border: 1.5px solid #dadce0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.pay-btn-google:hover { background: #f7f8f8; }
.pay-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pay-divider::before,
.pay-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--grey-2);
}
.pay-divider span { padding: 0 12px; }

/* =========================================================
   SEND PAGE (service cards)
========================================================= */
.send-page { padding: 70px 0; background: #fff; }
.send-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.send-service-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--grey-2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.send-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.send-service-card.featured {
  background: var(--dark);
  color: #fff;
  border-color: var(--red);
}
.send-service-card.featured h2,
.send-service-card.featured .price strong { color: #fff; }
.send-service-card.featured ul li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.15); }
.send-service-card .badge {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.send-service-card h2 { margin: 0 0 6px; font-size: 22px; font-weight: 800; }
.send-service-card .price { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.send-service-card .price strong { color: var(--red); font-size: 18px; }
.send-service-card ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  font-size: 13px;
}
.send-service-card li {
  padding: 7px 0;
  border-top: 1px solid var(--grey-2);
}
.send-service-card .btn-primary {
  background: var(--red); color: #fff;
  padding: 12px 18px; border-radius: 999px; font-weight: 800; border: 0;
  display: block; text-align: center;
}
.send-service-card .btn-primary:hover { background: var(--red-dark); text-decoration: none; }
.send-service-card .btn-light {
  background: #fff; color: var(--red);
  padding: 12px 18px; border-radius: 999px; font-weight: 800; border: 0;
  display: block; text-align: center;
}
.send-service-card .btn-light:hover { background: var(--grey); text-decoration: none; }

/* =========================================================
   LIVE QUOTE BOX (in booking form)
========================================================= */
.quote-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 18px 0 4px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff8f8 0%, #fff 100%);
  border: 1.5px solid var(--red);
  border-radius: 12px;
}
.quote-box-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.quote-box-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  margin-left: 6px;
}
.quote-box-breakdown {
  width: 100%;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* =========================================================
   BOOKING FORM SECTIONS (send page)
========================================================= */
.booking-form h3 {
  margin: 22px 0 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--grey-2);
  padding-bottom: 6px;
}
.booking-form h3:first-of-type { margin-top: 0; }
.booking-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 10px;
  padding: 10px 12px;
  background: var(--grey);
  border-radius: 8px;
}
.booking-form .checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}
.booking-form .field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.booking-submit-row {
  margin-top: 8px;
}
.booking-submit-note {
  margin: 8px 4px 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.booking-form .btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  margin-top: 8px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.booking-form .btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.35);
}
.booking-form .btn-whatsapp:active { transform: translateY(0); }

/* =========================================================
   OPTION GRID (redelivery / return options)
========================================================= */
.option-grid-section { padding: 60px 0; background: #fff; }
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.option-card {
  background: #fff;
  border: 1.5px solid var(--grey-2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.option-card .th-icon {
  display: inline-flex;
  width: 56px; height: 56px;
  color: var(--red);
  margin-bottom: 14px;
}
.option-card .th-icon svg { width: 100%; height: 100%; }
.option-card h2 { margin: 0 0 8px; font-size: 22px; font-weight: 800; }
.option-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.option-card .btn-primary {
  background: var(--red); color: #fff;
  padding: 12px 18px; border-radius: 999px; font-weight: 800; border: 0;
  display: block; text-align: center;
}
.option-card .btn-primary:hover { background: var(--red-dark); text-decoration: none; }
.return-grid-section { padding: 60px 0; background: #fff; }

/* =========================================================
   APP HERO + APP FEATURES
========================================================= */
.app-hero {
  background:
    linear-gradient(135deg, #1B458F 0%, #163874 100%);
  color: #fff;
  padding: 60px 0 80px;
  overflow: hidden;
}
.app-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.app-copy .eyebrow { color: #FFD400; }
.app-copy h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.app-copy p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 28px;
  max-width: 520px;
}
.app-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A0A0A;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s ease;
}
.store-btn:hover { background: #1f1f1f; text-decoration: none; }
.store-btn svg { width: 26px; height: 26px; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-size: 10px; opacity: 0.8; }
.store-btn strong { font-size: 16px; font-weight: 800; }

/* Phone mockup */
.app-phone { display: flex; justify-content: center; }
.phone-frame {
  width: 260px; height: 520px;
  background: #0A0A0A;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  border: 2px solid #333;
}
.phone-screen {
  background: #fff;
  width: 100%; height: 100%;
  border-radius: 28px;
  padding: 22px 16px;
  overflow: hidden;
  color: var(--ink);
}
.phone-header {
  text-align: center;
  font-family: "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
}
.phone-header small {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 2px;
}
.phone-card {
  background: var(--red);
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  font-size: 12px;
}
.phone-card strong { font-size: 13px; display: block; }
.phone-card p { margin: 2px 0 0; opacity: 0.95; font-size: 11px; }
.phone-card-light { background: var(--grey); color: var(--ink); }
.phone-progress { display: flex; gap: 4px; margin-top: 8px; }
.phone-progress span {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}
.phone-progress span:nth-child(-n+3) { background: #fff; }

.app-features { padding: 80px 0; }
.service-grid-section { padding: 80px 0; background: #fff; }

/* =========================================================
   PRICES PAGE
========================================================= */
.prices-section { padding: 80px 0; }
.prices-section.grey { background: var(--grey); }
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--grey-2);
}
.price-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-table td strong { color: var(--ink); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover { background: #fafafa; }
.price-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 16px auto 0;
  max-width: 800px;
}

/* =========================================================
   HELP / CONTACT
========================================================= */
.help-section { padding: 70px 0; background: #fff; }
.help-search {
  display: flex;
  gap: 8px;
  max-width: 640px;
  margin-top: 16px;
  background: #fff;
  border: 1.5px solid var(--grey-2);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
}
.help-search input {
  flex: 1; border: 0; outline: 0;
  font-size: 16px; padding: 12px;
  background: transparent; color: var(--ink);
  font-family: inherit;
}
.help-search .btn-primary {
  background: var(--red); color: #fff;
  padding: 12px 22px; border-radius: 999px; font-weight: 800; border: 0;
}
.help-search .btn-primary:hover { background: var(--red-dark); }

.contact-section { padding: 60px 0 80px; background: var(--grey); }
.contact-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: left;
}
.contact-card .th-icon {
  display: inline-flex;
  width: 48px; height: 48px;
  color: var(--red);
  margin-bottom: 12px;
}
.contact-card .th-icon svg { width: 100%; height: 100%; }
.contact-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 800; }
.contact-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.contact-card .link-arrow { font-weight: 700; color: var(--red); font-size: 14px; }

/* =========================================================
   LOGIN
========================================================= */
.login-section { padding: 60px 0 80px; background: var(--grey); min-height: 70vh; }
.login-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.login-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.login-card.register { background: #fff; }
.login-card h1 { margin: 0 0 6px; font-size: 26px; font-weight: 800; }
.login-card > p { color: var(--muted); margin: 0 0 20px; font-size: 15px; }
.login-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.login-card input {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-2);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}
.login-card input:focus { outline: 0; border-color: var(--red); }
.login-card .btn-primary {
  background: var(--red); color: #fff;
  padding: 14px 22px; border-radius: 999px; font-weight: 800; border: 0;
  margin-top: 6px;
}
.login-card .btn-primary:hover { background: var(--red-dark); }
.login-card .btn-outline-dark {
  background: transparent; color: var(--ink);
  padding: 12px 22px; border-radius: 999px; font-weight: 700; border: 1.5px solid var(--grey-2);
  margin-top: 10px;
  display: block; text-align: center;
  text-decoration: none;
}
.login-card .btn-outline-dark:hover { border-color: var(--ink); text-decoration: none; }
.login-meta { text-align: center; margin: 14px 0 0; }
.login-meta a { color: var(--red); font-size: 13px; }
.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--grey-2);
  margin: 0 12px;
}

/* =========================================================
   PAGE RESPONSIVE (extend base responsive)
========================================================= */
@media (max-width: 1024px) {
  .send-page-grid,
  .track-help-inner,
  .option-grid,
  .contact-inner,
  .login-inner { grid-template-columns: 1fr 1fr; }
  .app-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .page-hero h1 { font-size: 28px; }
  .send-page-grid,
  .track-help-inner,
  .option-grid,
  .contact-inner,
  .login-inner,
  .app-hero-inner { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; }
  .app-copy h1 { font-size: 30px; }
  .phone-frame { width: 220px; height: 440px; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: 13px; }
}

/* =========================================================
   TOAST (front-end)
========================================================= */
.wmd-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0A0A0A;
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: wmd-toast-in 240ms ease-out;
}
.wmd-toast.is-error { background: #B00020; }
.wmd-toast.is-success { background: #137333; }
.wmd-toast .close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 8px;
}
@keyframes wmd-toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   ACCOUNT DASHBOARD (lightweight, on storefront)
========================================================= */
.status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f1f1f1;
  color: var(--ink);
}
.status-pill.delivered,
.status-pill.completed { background: #E6F4EA; color: #137333; }
.status-pill.in-transit,
.status-pill.active { background: #E8F0FE; color: #1B458F; }
.status-pill.exception,
.status-pill.error { background: #FCE8E6; color: #C8102E; }
.status-pill.label-created { background: #FEF7E0; color: #B06000; }
.status-pill.customs { background: #F3E8FD; color: #6750A4; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--grey-2);
}
.admin-table th {
  background: #fafafa;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-table tr:last-child td { border-bottom: 0; }

/* =========================================================
   FORM VALIDATION
========================================================= */
.wmd-field-error {
  border-color: #C8102E !important;
  background: #FFF5F6 !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.18) !important;
  transition: background 120ms, border-color 120ms, box-shadow 120ms;
}
.wmd-shake { animation: wmd-shake 380ms cubic-bezier(.36,.07,.19,.97) both; }
@keyframes wmd-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

/* =========================================================
   AUTH: signed-in topbar + already-signed-in banner
========================================================= */
.topbar-link-signed-in {
  color: #fff !important;
  font-weight: 700 !important;
}
.topbar-signout {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-left: 8px;
  transition: background 150ms, border-color 150ms;
}
.topbar-signout:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}
.wmd-signedin-banner {
  background: #E8F5E9;
  border-bottom: 1px solid #C8E6C9;
  color: #1B5E20;
  font-size: 14px;
  font-weight: 500;
}
.wmd-signedin-banner strong { color: #1B5E20; font-weight: 800; }
.wmd-signedin-banner .btn-primary { background: #137333; }
.wmd-signedin-banner .btn-primary:hover { background: #0E5A26; }
.wmd-banner-signout:hover { border-color: #1B5E20 !important; color: #1B5E20; }

/* =========================================================
   PARCEL STATUS � extended
========================================================= */
.status-pill.paid             { background: #E3F2FD; color: #0D47A1; }
.status-pill.collected        { background: #FFF3E0; color: #E65100; }
.status-pill.at-depot         { background: #F3E5F5; color: #6A1B9A; }
.status-pill.out-for-delivery { background: #E0F7FA; color: #006064; }
.status-pill.returned         { background: #ECEFF1; color: #37474F; }
