/* WeekendGo — my-trips.css */

.mytrips-page {
  background: #0D0D1C;
  color: #F2F0FF;
  font-family: 'Inter', -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
}
.mytrips-page * { box-sizing: border-box; }

/* ── INTRO BAND ── */
.mt-intro-band {
  position: relative;
  overflow: hidden;
  padding: 48px 28px 52px;
  border-bottom: 1px solid rgba(255,107,53,.15);
}
.mt-intro-band-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 10% 50%, rgba(255,107,53,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 30%, rgba(252,211,77,.10) 0%, transparent 60%),
    linear-gradient(180deg, #0D0D1C 0%, #12102a 100%);
}
.mt-intro-inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
}
.mt-intro-icon {
  font-size: 52px; line-height: 1; flex-shrink: 0;
  filter: drop-shadow(0 0 24px rgba(255,107,53,.5));
}
.mt-intro-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; letter-spacing: -.03em;
  margin: 0 0 6px; color: #F0EEFF;
}
.mt-intro-sub {
  font-size: 15px; color: rgba(242,240,255,.52);
  margin: 0; line-height: 1.5;
}

/* ── MAIN ── */
.mt-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

/* ── AUTH CARD ── */
.mt-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 40px 36px;
}
.mt-card-auth {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,107,53,.06) 0%, rgba(255,255,255,.03) 100%);
  border-color: rgba(255,107,53,.22);
  box-shadow: 0 0 0 1px rgba(255,107,53,.08), 0 24px 60px rgba(0,0,0,.35);
}
.mt-auth-icon {
  width: 72px; height: 72px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,107,53,.22), rgba(252,211,77,.14));
  border: 1px solid rgba(255,107,53,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(255,107,53,.22);
}
.mt-auth-icon svg { width: 32px; height: 32px; stroke: #FDBA74; fill: none; }
.mt-auth-icon-mail { background: linear-gradient(135deg, rgba(6,255,165,.16), rgba(255,107,53,.12)); border-color: rgba(6,255,165,.28); }
.mt-auth-icon-mail svg { stroke: #06FFA5; }

.mt-card h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px; font-weight: 800;
  margin: 0 0 8px; color: #F0EEFF;
  text-align: center; letter-spacing: -.02em;
}
.mt-card-sub {
  font-size: 14px; color: rgba(242,240,255,.52);
  margin: 0 0 26px; line-height: 1.65; text-align: center;
}
.mt-highlight { color: #FF6B35; font-weight: 700; }

/* ── FIELDS ── */
.mt-field-wrap { margin-bottom: 16px; }
.mt-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(242,240,255,.45); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .06em;
}
.mt-input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 12px; color: #F2F0FF; font-size: 15px; font-family: 'Inter', sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.mt-input:focus { outline: none; border-color: rgba(255,107,53,.65); box-shadow: 0 0 0 3px rgba(255,107,53,.13); }
.mt-input::placeholder { color: rgba(255,255,255,.22); }

.mt-otp-input {
  width: 100%; padding: 18px 16px;
  background: rgba(255,107,53,.07); border: 2px solid rgba(255,107,53,.35);
  border-radius: 14px; color: #FDBA74;
  font-size: 32px; font-weight: 800; letter-spacing: .22em;
  font-family: 'Space Grotesk', monospace;
  text-align: center; transition: border-color .15s, box-shadow .15s;
}
.mt-otp-input:focus { outline: none; border-color: rgba(255,107,53,.85); box-shadow: 0 0 0 3px rgba(255,107,53,.15); }
.mt-otp-input::placeholder { color: rgba(255,107,53,.28); font-size: 24px; letter-spacing: .08em; }

/* ── BUTTONS ── */
.mt-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, #FF6B35 0%, #FCD34D 100%);
  color: #fff; padding: 14px 24px; border-radius: 14px;
  font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 26px rgba(255,107,53,.38); transition: transform .12s, box-shadow .12s;
}
.mt-btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.mt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,.5); }
.mt-btn-primary:active { transform: translateY(0); }
.mt-btn-full { width: 100%; }

.mt-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); padding: 12px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none;
  transition: background .15s; width: 100%;
}
.mt-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.mt-btn-ghost-sm {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); padding: 8px 14px; border-radius: 8px;
  font-size: 13px; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.mt-btn-ghost-sm:hover { border-color: rgba(255,107,53,.5); color: #FDBA74; }

.mt-link-btn {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 13px; color: rgba(255,107,53,.75); font-family: inherit;
  transition: color .15s;
}
.mt-link-btn:hover { color: #FDBA74; }

/* ── MISC AUTH ── */
.mt-error {
  background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.24);
  color: #FCA5A5; border-radius: 10px;
  padding: 10px 14px; font-size: 13px; margin-bottom: 12px;
}
.mt-auth-hint {
  text-align: center; font-size: 12px; color: rgba(242,240,255,.3);
  margin: 14px 0 0; line-height: 1.55;
}
.mt-otp-links {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.22);
}

/* ── LOADING ── */
.mt-loading-wrap { text-align: center; padding: 100px 0; }
.mt-spinner-ring {
  width: 52px; height: 52px; margin: 0 auto 20px;
  border: 3px solid rgba(255,107,53,.15);
  border-top-color: #FF6B35;
  border-radius: 50%; animation: mt-spin .85s linear infinite;
}
@keyframes mt-spin { to { transform: rotate(360deg); } }
.mt-loading-wrap p { color: rgba(242,240,255,.4); font-size: 14px; }

/* ── EMPTY ── */
.mt-empty-wrap { display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.mt-empty-card {
  max-width: 420px; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 48px 32px;
}
.mt-empty-ico { font-size: 56px; margin-bottom: 18px; }
.mt-empty-card h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px; font-weight: 800; margin: 0 0 10px; color: #F0EEFF;
}
.mt-empty-card p { color: rgba(242,240,255,.45); font-size: 14px; margin: 0 0 28px; }

/* ── RESULTS ── */
.mt-results-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
}
.mt-results-label { font-size: 13px; color: rgba(242,240,255,.38); margin: 0 0 4px; }
.mt-results-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px; font-weight: 800; margin: 0; color: #F0EEFF; letter-spacing: -.02em;
}

.mt-trips-grid { display: grid; gap: 16px; }

/* ── TRIP CARD ── */
.trip-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.trip-card:hover {
  border-color: rgba(255,107,53,.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.28);
}
.tc-paid    { border-left: 3px solid #FF6B35; background: rgba(255,107,53,.03); }
.tc-pending { border-left: 3px solid rgba(255,255,255,.1); }

.tc-top {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px 16px;
}
.tc-transport {
  font-size: 32px; line-height: 1; flex-shrink: 0; width: 48px; text-align: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.tc-route-wrap { flex: 1; min-width: 0; }
.tc-route {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.tc-from, .tc-to {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700; font-size: 18px; color: #F0EEFF;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.tc-to { color: #FDBA74; }
.tc-arr { color: rgba(255,255,255,.28); font-size: 14px; flex-shrink: 0; }

.tc-meta-row {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  font-size: 12px; color: rgba(242,240,255,.4);
}
.tc-meta-row span::before { content: '· '; }
.tc-meta-row span:first-child::before { content: ''; }

.tc-status-wrap { flex-shrink: 0; }
.tc-status {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.tc-status-paid    { background: rgba(255,107,53,.18); color: #FDBA74; }
.tc-status-pending { background: rgba(255,255,255,.07); color: rgba(255,255,255,.42); }

.tc-actions {
  padding: 0 24px 20px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.tc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 10px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform .12s;
}
.tc-btn-primary {
  background: linear-gradient(135deg, #FF6B35, #FCD34D);
  color: #fff; box-shadow: 0 4px 16px rgba(255,107,53,.35);
}
.tc-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(255,107,53,.5); }
.tc-btn-secondary {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65);
}
.tc-btn-secondary:hover { border-color: rgba(255,107,53,.4); color: #FDBA74; }

/* ── BOTTOM CTA ── */
.mt-results-cta { margin-top: 40px; }
.mt-cta-band {
  background: linear-gradient(135deg, rgba(255,107,53,.1), rgba(252,211,77,.06));
  border: 1px solid rgba(255,107,53,.22);
  border-radius: 18px; padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.mt-cta-band span { font-size: 15px; color: rgba(242,240,255,.65); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .mt-intro-inner { flex-direction: column; gap: 14px; }
  .mt-intro-icon { font-size: 40px; }
  .mt-intro-title { font-size: 24px; }
  .mt-card { padding: 28px 20px; }
  .mt-main { padding: 32px 16px 60px; }
  .tc-top { gap: 12px; padding: 18px 18px 12px; }
  .tc-from, .tc-to { font-size: 15px; }
  .tc-transport { font-size: 26px; width: 36px; }
  .tc-actions { padding: 0 18px 18px; }
  .mt-results-top { flex-direction: column; }
  .mt-cta-band { flex-direction: column; text-align: center; }
  .mt-cta-band .mt-btn-primary { width: 100%; justify-content: center; }
}
