/* Layout-only styles — typography & colors come from main.css / my.css */


.tour-detail-page .tour-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: var(--tg-common-white);
  border: 1px solid var(--tg-border-1);
  border-radius: 25px;
  padding: 2px;
  box-shadow: 0 0 15px 0 #efefef;
  position: sticky;
  top: 100px;
  z-index: 5;
}

.tour-detail-page .tour-detail-tabs button {
  border: none;
  background: transparent;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .tour-detail-page .tour-detail-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tour-detail-page .tour-detail-tabs::-webkit-scrollbar {
    display: none;
  }

  .tour-detail-page .tour-detail-tabs__desktop-only {
    display: none;
  }
}
.tour-detail-page .tour-detail-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
}

.tour-detail-page .tour-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 575px) {
  .tour-detail-page .tour-highlights-grid {
    grid-template-columns: 1fr;
  }
}

.tour-detail-page .tour-highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tg-common-white);
  border: 1px solid #e7ebf3;
  border-radius: 15px;
  padding: 13px 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.tour-detail-page .tour-highlight-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e8c2f38;
  color: #787171;
  font-size: 12px;
}

.tour-detail-page .tour-highlight-card__text {
  font-size: 16px;
  line-height: 1.45;
  color: #353844;
  font-weight: 400;
}

.tour-detail-page .tour-included-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .tour-detail-page .tour-included-row {
    grid-template-columns: 1fr;
  }
}

.tour-detail-page .tour-included-card {
  background: var(--tg-common-white);
  border: 1px solid #e7ebf3;
  border-radius: 20px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tour-detail-page .tour-included-card__label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa3b2;
}

.tour-detail-page .tour-included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-detail-page .tour-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tour-detail-page .tour-included-list li:not(:last-child) {
  margin-bottom: 14px;
}

.tour-detail-page .tour-included-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.tour-detail-page .tour-included-list__icon--check {
  background: #0e8c2f38;
  color: #2e2929;
}

.tour-detail-page .tour-included-list__icon--x {
  background: #fdecec;
  color: #d64545;
}

.tour-detail-page .tour-included-list__text {
  font-size: 16px;
  line-height: 1.45;
  color: #353844;
  font-weight: 400;
}

.tour-detail-page .tour-addon-subtitle {
  font-size: 14px;
  line-height: 1.5;
  color: #9aa3b2;
  margin-bottom: 1rem;
}

.tour-detail-page .tour-addon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tour-detail-page .tour-addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 16px;
  line-height: 1.3;
  font-weight: 500;
  font-size: 14px;
  /* color: #000369; */
  background: var(--tg-common-white);
  border: 1px solid #e0e4ec;
}

.tour-detail-page .tour-addon-pill__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e8c2f;
}

.tour-detail-page .tour-itinerary-timeline {
  position: relative;
  padding-left: 3.5rem;
}

.tour-detail-page .tour-itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: var(--tg-border-1);
}

.tour-detail-page .tour-itinerary-step {
  position: relative;
  padding-bottom: 2rem;
}

.tour-detail-page .tour-itinerary-step:last-child {
  padding-bottom: 0;
}

.tour-detail-page .tour-itinerary-step__num {
  position: absolute;
  left: -3.5rem;
  top: 8px;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #000369;
  color: var(--tg-common-white);
  font-weight: 600;
  font-size: 12px;
}

.tour-detail-page .tour-itinerary-step__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.5rem;
}

.tour-detail-page .tour-pickup-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 30px;
  padding: 1.25rem 1.5rem;
}

.tour-detail-page .tour-itinerary-step__label {
  color: #000369;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.35rem;
  letter-spacing: 1px;
}

.tour-detail-page .tour-itinerary-step__title {
  color: #000369;
  font-weight: 500 !important;
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.tour-detail-page .tour-itinerary-step__body {
  font-size: 16px;
  line-height: 1.55;
  color: #5a5f6e;
}

.tour-detail-page .tour-itinerary-step__meta .day_tour_of_locations {
  color: #5a5f6e;
  font-size: 14px;
}

.tour-detail-page .tour-itinerary-accordion {
  background: var(--tg-common-white);
  border: 1px solid #e7ebf3;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.tour-detail-page .tour-itinerary-accordion__item {
  border-bottom: 1px solid #e8ebf0;
}

.tour-detail-page .tour-itinerary-accordion__item:last-child {
  border-bottom: none;
}

.tour-detail-page .tour-itinerary-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.tour-detail-page .tour-itinerary-accordion__num {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  background: var(--tg-common-white);
  color: #000369;
  border: 2px solid #000369;
}

.tour-detail-page .tour-itinerary-accordion__item.is-open .tour-itinerary-accordion__num {
  background: #000369;
  color: var(--tg-common-white);
  border-color: #000369;
}

.tour-detail-page .tour-itinerary-accordion__title {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #000369;
  line-height: 1.45;
}

.tour-detail-page .tour-itinerary-accordion__chevron {
  color: #7b9fd4;
  font-size: 13px;
  flex-shrink: 0;
}

.tour-detail-page .tour-itinerary-accordion__item.is-open .tour-itinerary-accordion__chevron {
  transform: rotate(180deg);
}

.tour-detail-page .tour-itinerary-accordion__body {
  padding: 0 20px 18px 4.6rem;
}

.tour-detail-page .tour-itinerary-accordion__body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #353844;
}

.tour-detail-page .tour-itinerary-accordion__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 4px;
}

.tour-detail-page .tour-itinerary-accordion__meta .day_tour_of_locations {
  color: #5a5f6e;
  font-size: 14px;
}

.tour-detail-page .tour-pickup-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #000369;
  color: var(--tg-common-white);
}

.tour-detail-page .tour-pickup-locations {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-detail-page .tour-pickup-locations__item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #353844;
}

.tour-detail-page .tour-pickup-locations__item:last-child {
  margin-bottom: 0;
}

.tour-detail-page .tour-pickup-locations__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #198754;
}

.tour-detail-page .tour-info-block__title {
  font-size: 16px;
  font-weight: 600;
  color: #000369;
}

.tour-detail-page .tour-booking-card {
  margin-left: 0;
  border: none;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.tour-detail-page .tour-booking-card__from {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9aa3b2;
  margin-bottom: 4px;
}

.tour-detail-page .tour-booking-card__amount-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.tour-detail-page .tour-booking-card__price-value {
  font-size: 36px;
  font-weight: 700;
  color: #000369;
  line-height: 1.1;
}

.tour-detail-page .tour-booking-card__price-unit {
  font-size: 15px;
  color: #6c757d;
  font-weight: 400;
}

.tour-detail-page .tour-booking-card__divider {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 20px 0;
  opacity: 1;
}

.tour-detail-page .tour-booking-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-detail-page .tour-booking-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #6c757d;
}

.tour-detail-page .tour-booking-card__features li:last-child {
  margin-bottom: 0;
}

.tour-detail-page .tour-booking-card__features li i {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  color: #9aa3b2;
  margin-top: 2px;
}

.tour-detail-page .tour-booking-card__star {
  color: #ffc107;
}

.tour-detail-page .tour-booking-card__highlight {
  font-weight: 600;
  color: #000369;
}

.tour-detail-page .tour-booking-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-detail-page .tour-booking-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}

.tour-detail-page .tour-booking-card__btn--primary {
  background: #0e8c2f;
  color: #fff;
  border-color: #0e8c2f;
}

.tour-detail-page .tour-booking-card__btn--secondary {
  background: #fff;
  color: #000369;
  border-color: #c5d0e0;
}

.tour-detail-page .tour-details-mbl-carousel {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.tour-detail-page .tour-faq-card {
  background: var(--tg-common-white);
  border: 1px solid #e7ebf3;
  border-radius: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.tour-detail-page .tour-faq-item {
  border-bottom: 1px solid #e8ebf0;
}

.tour-detail-page .tour-faq-item:last-child {
  border-bottom: none;
}

.tour-detail-page .tour-faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.tour-detail-page .tour-faq-item__question {
  font-size: 18px;
  font-weight: 500;
  color: #000369;
  line-height: 1.45;
}

.tour-detail-page .tour-faq-item__chevron {
  color: #7b9fd4;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tour-detail-page .tour-faq-item.is-open .tour-faq-item__chevron {
  transform: rotate(180deg);
}

.tour-detail-page .tour-faq-item__body {
  padding: 0 20px 18px;
}

.tour-detail-page .tour-faq-item__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #353844;
}

.tour-detail-page .tour-faq-static {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tour-detail-page .tour-faq-static__item {
  max-width: 720px;
}

.tour-detail-page .tour-faq-static__question {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #000369;
  line-height: 1.4;
}

.tour-detail-page .tour-faq-static__answer {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #353844;
}

.tour-detail-page .tour-cancellation-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-detail-page .tour-cancellation-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #353844;
}

.tour-detail-page .tour-cancellation-list li:last-child {
  margin-bottom: 0;
}

.tour-detail-page .tour-cancellation-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #198754;
}
a:hover, button:hover {
  color: #0e8c2f;
}

.tour-detail-page .tour-schedule-table-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.tour-detail-page .tour-schedule-table th,
.tour-detail-page .tour-schedule-table td {
  font-size: 14px;
  vertical-align: middle;
}

.tour-detail-page .tour-schedule-table th {
  background: #f8f9fa;
  font-weight: 600;
  white-space: nowrap;
}

.tour-detail-page .tour-schedule-notes {
  padding-left: 1.25rem;
  margin: 0;
}

.tour-detail-page .tour-schedule-notes li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.tour-detail-page .tour-schedule-notes li:last-child {
  margin-bottom: 0;
}
.tour-faq-static__question{
  color: #000369;
}

/* Contact — Appendix A verify table */
.contact-verify-appendix {
  margin-top: 40px;
}

.contact-verify-appendix__title {
  color: #000369;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.contact-verify-appendix__intro {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-verify-table-wrap {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-verify-table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
  line-height: 1.45;
  color: #1a1a1a;
  border: 0 !important;
}

.contact-verify-table__col-item {
  width: 28%;
}

.contact-verify-table__col-where {
  width: 32%;
}

.contact-verify-table__col-value {
  width: 40%;
}

.contact-verify-table > :not(caption) > * > * {
  border-width: 1px;
}

.contact-verify-table th,
.contact-verify-table td {
  border: 1px solid #ddd !important;
  padding: 12px 14px !important;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}

.contact-verify-table thead th {
  background-color: #000369 !important;
  color: #fff !important;
  font-weight: 700;
  white-space: nowrap;
  border-color: #000369 !important;
}

.contact-verify-table tbody tr:nth-child(odd) td {
  background-color: #fff;
}

.contact-verify-table tbody tr:nth-child(even) td {
  background-color: #f2f2f2;
}

@media (max-width: 767px) {
  .contact-verify-appendix__title {
    font-size: 22px;
  }

  .contact-verify-table {
    table-layout: auto;
    min-width: 640px;
  }

  .contact-verify-table th,
  .contact-verify-table td {
    font-size: 13px;
    padding: 10px 12px !important;
    white-space: normal;
  }
}