.muted {
  color: #6b7280;
  font-size: 0.95rem;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 84, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(102, 187, 176, 0.08), transparent 24%),
    #f6f7fb;
}

.airbar {
  width: min(1180px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.aircell {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: 18px;
  background: #f8fafc;
  color: #1f2937;
  flex: 1 1 180px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.aircell:hover,
.aircell:focus-within {
  border-color: rgba(255, 107, 84, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 107, 84, 0.08);
  background: #fff;
}

.aircell i {
  color: #ff6b54;
}

.aircell input,
.aircell select,
.airbtn {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-weight: 600;
  min-height: 52px;
}

.airbtn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 0;
  text-align: left;
}

.airbtn span {
  flex: 1;
}

.airchev {
  color: #9ca3af;
  font-size: 0.85rem;
}

.airsep {
  width: 1px;
  align-self: stretch;
  background: rgba(148, 163, 184, 0.18);
}

.aircta {
  min-width: 58px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff6b54, #ff9472);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 107, 84, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.aircta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(255, 107, 84, 0.28);
}

.aircta.alt {
  background: #111827;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.airdrop {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;
  max-width: min(92vw, 760px);
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}

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

.airdrop-lg {
  min-width: 360px;
}

.airdrop-xl {
  min-width: 420px;
}

.airdrop.centered {
  left: 50%;
  transform: translate(-50%, 6px);
}

.airdrop.centered.open {
  transform: translate(-50%, 0);
}

.airdrop-head {
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  font-weight: 700;
}

.airdrop-scroll {
  max-height: 340px;
  overflow: auto;
  padding: 10px 14px 14px;
}

.airdrop-search {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
}

.airdrop-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.airdrop-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
}

.airdrop-btn.primary {
  background: #ff6b54;
  color: #fff;
}

.airdrop-btn.ghost {
  background: #f3f4f6;
  color: #111827;
}

.air-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  cursor: pointer;
  color: #111827;
  transition: background 0.15s ease;
}

.air-option:hover {
  background: #f8fafc;
}

.air-option-check input {
  accent-color: #ff6b54;
}

.wk-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.wk-day {
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #fff;
  border-radius: 14px;
  min-height: 42px;
  font-weight: 700;
}

.wk-day.active {
  border-color: #ff6b54;
  background: rgba(255, 107, 84, 0.1);
  color: #ff6b54;
}

.hrs-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.hrs-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hrs-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6b7280;
}

.hrs-select {
  min-height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 0 12px;
  background: #fff;
  outline: none;
}

.hrs-add {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 700;
}

.hrs-hint {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.85rem;
}

.block-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.block-chip .sub {
  font-size: 0.85rem;
  color: #6b7280;
}

.block-chip .kill {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 1.1rem;
}

.quote-summary {
  position: sticky;
  top: 118px;
}

.quote-summary-card,
.combo-block,
.nx-row {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.quote-summary-card {
  padding: 20px;
}

.quote-kpi {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.95rem;
}

.quote-kpi strong {
  color: #111827;
  text-align: right;
}

.quote-summary-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 107, 84, 0.1), rgba(102, 187, 176, 0.08));
  color: #374151;
  font-size: 0.92rem;
}

.quote-summary-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.quote-inline-btn,
.quote-inline-link {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
}

.quote-inline-btn {
  border: 0;
  background: #111827;
  color: #fff;
}

.quote-inline-link {
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #111827;
  background: #fff;
}

.quote-share-status {
  margin-top: 10px;
  color: #0f766e;
  font-size: 0.85rem;
}

.package-group {
  margin-bottom: 28px;
}

.package-group__head {
  margin-bottom: 14px;
}

.package-card__summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.package-card__summary h4 {
  margin: 8px 0 6px;
  font-size: 1.15rem;
}

.package-card__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ff6b54;
  white-space: nowrap;
}

.quote-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 107, 84, 0.1);
  color: #ff6b54;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.combo-block {
  padding: 20px;
  margin-bottom: 16px;
}

.package-insight {
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 84, 0.08), rgba(102, 187, 176, 0.08));
}

.package-insight__eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 6px;
}

.package-insight__copy {
  margin: 0 0 12px;
  color: #374151;
  font-size: 0.92rem;
}

.package-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.package-badge {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #111827;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.ab-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.14);
  min-height: 126px;
}

.ab-thumb {
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  background: #e5e7eb;
}

.ab-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-body {
  min-width: 0;
}

.ab-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.ab-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
}

.ab-dot.warn {
  background: #f59e0b;
}

.ab-dot.hot {
  background: #ef4444;
}

.ab-title {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #111827;
}

.ab-meta,
.ab-price {
  color: #6b7280;
  font-size: 0.82rem;
}

.ab-price {
  margin-top: 6px;
  color: #374151;
  font-weight: 700;
}

.package-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.quote-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quote-link-btn.primary {
  background: #111827;
  color: #fff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.14);
}

.quote-link-btn.ghost {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.quote-link-btn:hover {
  transform: translateY(-1px);
}

.nx-row {
  padding: 18px;
}

.nx-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.nx-title {
  margin-bottom: 4px;
}

.nx-sub {
  color: #6b7280;
}

.nx-wrap {
  position: relative;
}

.nx-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 270px);
  gap: 14px;
  overflow: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.nx-track::-webkit-scrollbar,
.airdrop-scroll::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.nx-track::-webkit-scrollbar-thumb,
.airdrop-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: 999px;
}

.nx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 24, 39, 0.88);
  color: #fff;
  z-index: 2;
}

.nx-arrow.left {
  left: -10px;
}

.nx-arrow.right {
  right: -10px;
}

.nx-arrow:disabled {
  opacity: 0.35;
}

.pulse {
  animation: quotePulse 0.7s ease;
}

@keyframes quotePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.01); }
  100% { transform: scale(1); }
}

@media (max-width: 991px) {
  .airbar {
    border-radius: 24px;
  }

  .airsep {
    display: none;
  }

  .aircell,
  .aircta {
    flex: 1 1 calc(50% - 8px);
  }

  .quote-summary {
    position: static;
  }

  .ab-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .airbar {
    padding: 12px;
  }

  .aircell,
  .aircta {
    flex: 1 1 100%;
  }

  .airdrop,
  .airdrop-lg,
  .airdrop-xl {
    min-width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    left: 0;
    transform: translateY(6px);
  }

  .airdrop.centered,
  .airdrop.centered.open {
    left: 0;
    transform: translateY(0);
  }

  .wk-row,
  .hrs-row {
    grid-template-columns: 1fr;
  }

  .package-card__summary {
    flex-direction: column;
  }

  .package-actions {
    flex-direction: column;
  }

  .quote-link-btn {
    width: 100%;
  }

  .quote-summary-actions {
    flex-direction: column;
  }

  .quote-inline-btn,
  .quote-inline-link {
    width: 100%;
  }

  .nx-track {
    grid-auto-columns: minmax(240px, 240px);
  }
}
