/* Bảng giá tuyến */

.price-routes-section {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
}

.price-routes-head {
  text-align: center;
  margin-bottom: 32px;
}

.price-routes-title {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-family: "Display-Bold", "SVN-Bold", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.price-routes-desc {
  margin: 0;
  color: #6b7280;
  font-size: 15px;
}

/* Card chính */
.price-routes-card {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecf1;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* Tabs loại xe */
.price-routes-card .price-route-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 20px 20px 0;
  list-style: none;
  background: #fff;
  border-bottom: 0;
  margin-bottom: 20px;
}

.price-routes-card .price-route-tabs .nav-item {
  list-style: none;
}

.price-routes-card .price-route-tabs .nav-link {
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #475569;
  font-family: "Display-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: all 0.2s ease;
  box-shadow: none;
}

.price-routes-card .price-route-tabs .nav-link:hover,
.price-routes-card .price-route-tabs .nav-link:focus {
  color: #FF4605;
  border-color: #ffc9b3;
  background: #fff7f3;
}

.price-routes-card .price-route-tabs .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #FF4605 0%, #ff6b2e 100%);
  border-color: #FF4605;
  box-shadow: 0 4px 14px rgba(255, 70, 5, 0.3);
}

/* Nội dung tab */
.price-routes-card .price-route-tab-content {
  padding: 0;
}

.price-route-table-wrap {
  overflow: hidden;
}

/* Header bảng */
.price-route-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: #f8fafc;
  border-bottom: 1px solid #e8ecf1;
}

.price-route-table-head span {
  font-family: "Display-Bold", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.price-route-table-head span:last-child {
  min-width: 120px;
  text-align: right;
}

/* Danh sách 2 cột */
.price-routes-section ul.price-route-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-routes-section .price-route-row {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.price-routes-section .price-route-row:last-child {
  border-bottom: 0;
}

.price-routes-section .price-route-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px 24px;
  text-decoration: none;
  color: inherit;
}

.price-routes-section a.price-route-link {
  cursor: pointer;
}

.price-routes-section a.price-route-link:hover {
  background: #fafbfc;
}

.price-routes-section .price-route-row.is-hot .price-route-link {
  background: linear-gradient(90deg, #fff8f3 0%, #fff 100%);
}

.price-routes-section .price-route-row.is-hot a.price-route-link:hover {
  background: linear-gradient(90deg, #fff3eb 0%, #fffaf7 100%);
}

.price-routes-section .price-route-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.price-routes-section .price-route-text {
  color: #1e293b;
  font-family: "Display-Medium", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.price-routes-section .price-route-hot {
  flex-shrink: 0;
}

.price-routes-section .price-route-price {
  flex-shrink: 0;
  min-width: 120px;
  text-align: right;
  font-family: "Display-Bold", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FF4605;
  white-space: nowrap;
}

.price-routes-section .price-route-price.is-contact {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: transparent;
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
}

.price-routes-section .price-route-empty {
  padding: 40px 24px;
  text-align: center;
  color: #94a3b8;
  margin: 0;
  font-size: 15px;
}

.price-routes-section .price-routes-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.price-routes-section .price-routes-btn {
  margin-top: 0;
}

@media (max-width: 768px) {
  .price-routes-section {
    padding: 36px 0 44px;
  }

  .price-routes-title {
    font-size: 24px;
  }

  .price-routes-card {
    border-radius: 12px;
  }

  .price-routes-card .price-route-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 16px 12px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .price-routes-card .price-route-tabs::-webkit-scrollbar {
    display: none;
  }

  .price-routes-card .price-route-tabs .nav-item {
    flex: 0 0 auto;
  }

  .price-routes-card .price-route-tabs .nav-link {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .price-route-table-head,
  .price-routes-section .price-route-link {
    padding: 12px 16px;
  }

  .price-route-table-head span:last-child,
  .price-routes-section .price-route-price {
    min-width: 90px;
    font-size: 14px;
  }

  .price-routes-section .price-route-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .price-routes-section .price-route-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-routes-section .price-route-price {
    align-self: flex-end;
    min-width: 0;
  }

  .price-route-table-head {
    display: none;
  }
}
