/* ============================================================
   PAGE: baggage — student / excess baggage courier country pages
   Load order: fonts → slp-critical → slp-deferred → pickles.css → this file
   Shared layout (sticky TOC, hero copy, trust strip, rates, packing, FAQ,
   pickup search, mobile CTA, etc.) comes from pickles.css.
   This file only adds baggage-specific visuals and blocks not on pickle pages.
   ============================================================ */

.hero--baggage {
  background-image: linear-gradient(135deg, #4a0072 0%, #6a0099 42%, #9c27b0 100%);
  background-color: #4a0072;
}

/* Weight savings comparison (airline excess vs SLP) */
.savings-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.savings-card {
  border-radius: var(--r-xl);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid var(--hairline);
  position: relative;
}
.savings-card--airline {
  background: #fff7ed;
  border-color: #fed7aa;
}
.savings-card--slp {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.savings-card .label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 14px;
}
.savings-card--airline .label { color: #c2410c; }
.savings-card--slp .label { color: var(--accent); }

.savings-card .amount {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.savings-card--airline .amount { color: #9a3412; }
.savings-card--slp .amount { color: var(--white); }

.savings-card .per {
  font-size: 14px;
  font-weight: 600;
}
.savings-card--airline .per { color: #c2410c; }
.savings-card--slp .per { color: rgba(255, 213, 79, 0.9); }

.savings-card .note {
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.6;
}
.savings-card--airline .note { color: #7c2d12; }
.savings-card--slp .note { color: rgba(255, 255, 255, 0.75); }

.savings-arrow {
  font-size: 36px;
  color: var(--accent);
  text-align: center;
  margin: 18px auto;
  display: block;
  font-weight: 800;
}

@media (max-width: 900px) {
  .savings-compare { grid-template-columns: 1fr; }
}

/* Item checklist (what to send) */
.item-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 30px auto 0;
  list-style: none;
  padding: 0;
}
.item-checklist li {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.item-checklist li:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.item-checklist li .tick {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.item-checklist li .emoji {
  font-size: 18px;
  margin-right: -4px;
}

/* TR / customs explainer */
.customs-note-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin-top: 30px;
}
.customs-note-box h3 {
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 12px;
}
.customs-note-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}
.customs-note-box p:last-child { margin-bottom: 0; }

/* How-it-works steps */
.steps-ol {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.steps-ol li {
  counter-increment: steps;
  padding: 24px 0 24px 64px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.steps-ol li:last-child { border-bottom: none; }
.steps-ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 24px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.steps-ol li h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}
.steps-ol li p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

/* Documentation two-column grid */
.doc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 24px;
}
.doc-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 30px;
}
.doc-icon { font-size: 32px; margin-bottom: 14px; }
.doc-card h3 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 14px;
}
.doc-card ul { list-style: none; padding: 0; }
.doc-card li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid var(--hairline);
  color: var(--text);
}
.doc-card li:last-child { border-bottom: none; }

/* Related destination pills (not in pickles.css) */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.pill {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
}
.pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.related-pills-h {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.text-center { text-align: center; }
.mt-6 { margin-top: 40px; }

@media (max-width: 800px) {
  .doc-grid-2 { grid-template-columns: 1fr; }
}
