.tour-single .tour-hero {
  margin-bottom: 16px;
}

.tour-single .tour-title {
  margin: 0 0 8px;
}

.tour-single .tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6b7280;
  font-size: 14px;
}

.tour-single .tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-single .tour-meta__icon,
.tour-single .tour-quick-icon,
.tour-single .tour-booking__icon {
  font-size: 14px;
  color: #6b7280;
  margin-right: 7px;
}

.tour-single .tour-quick-info {
  margin: 16px 0 24px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f7f7f7;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.tour-single .tour-quick-item {
  font-size: 14px;
  color: #374151;
}

.tour-single .tour-quick-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.tour-single .tour-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.tour-single .tour-highlight {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tour-single .tour-highlight::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--primary-color, #1e73be);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.tour-single .tour-tabs {
  margin-bottom: 24px;
}

.tour-single .tour-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.tour-single .tour-tab {
  border: 1px solid transparent;
  background: #f3f4f6;
  color: #374151;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tour-single .tour-tab i {
  margin-right: 6px;
  font-size: 14px;
}

.tour-single .tour-tab.is-active {
  background: #1e73be;
  color: #fff;
}

.tour-single .tour-tabs__panel {
  display: none;
}

.tour-single .tour-tabs__panel.is-active {
  display: block;
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  margin-bottom: 10px;
  overflow: hidden;
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  list-style: none;
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] summary::-webkit-details-marker {
  display: none;
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.7 9.3a1 1 0 0 1 1.4 0L12 13.2l3.9-3.9a1 1 0 1 1 1.4 1.4l-4.6 4.6a1 1 0 0 1-1.4 0L6.7 10.7a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  background-color: #111827;
  transition: transform 0.2s ease;
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] details[open] summary::after {
  transform: rotate(180deg);
}

.tour-single .tour-tabs__panel[data-tab-panel="faq"] details > *:not(summary) {
  padding: 0 16px 14px;
  color: #374151;
}

.tour-single .tour-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-single .tour-itinerary-item {
  position: relative;
  padding-left: 32px;
}

.tour-single .tour-itinerary-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #cbd5e1;
}

.tour-single .tour-itinerary-item::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111827;
}

.tour-single .tour-itinerary-details {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.tour-single .tour-itinerary-details summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  list-style: none;
}

.tour-single .tour-itinerary-details summary::-webkit-details-marker {
  display: none;
}

.tour-single .tour-itinerary-badge {
  position: relative;
  background: #111827;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px 0 0 4px;
  text-transform: uppercase;
}

.tour-single .tour-itinerary-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-left: 8px solid #111827;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.tour-single .tour-itinerary-heading {
  font-size: 14px;
  font-weight: 600;
}

.tour-single .tour-itinerary-toggle {
  margin-left: auto;
  color: #64748b;
  display: inline-flex;
  align-items: center;
}

.tour-single .tour-itinerary-toggle i {
  transition: transform 0.2s ease;
}

.tour-single .tour-itinerary-details[open] .tour-itinerary-toggle i {
  transform: rotate(180deg);
}

.tour-single .tour-itinerary-content {
  padding: 0 16px 16px;
  color: #374151;
}

.tour-single .tour-section {
  margin-bottom: 24px;
}

.tour-single .tour-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.tour-single .tour-table th,
.tour-single .tour-table td {
  border: 1px solid #e5e7eb;
  padding: 10px;
  text-align: left;
}

.tour-single .tour-table th {
  background: #f9fafb;
  font-weight: 600;
}

.tour-single .tour-booking {
  position: sticky;
  top: 96px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.tour-single .tour-booking__price {
  font-size: 25px;
  font-weight: 700;
  color: rgb(255 91 0);
  margin-bottom: 8px;
}

.tour-single .tour-booking__meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.tour-single .tour-booking__field {
  margin-bottom: 10px;
}

.tour-single .tour-booking__field label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.tour-single .tour-booking__field label .tour-booking__icon {
  margin-right: 6px;
}

.tour-single .tour-booking__field input,
.tour-single .tour-booking__field select,
.tour-single .tour-booking__form .wpcf7-form-control {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  height: 45px;
  box-shadow: none;
}

.tour-single .tour-booking__cta,
.tour-single .tour-booking__form .wpcf7-submit {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #1e73be;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  height: auto;
}

.tour-single .tour-booking__form .wpcf7-form p {
  margin-bottom: 8px;
}

.tour-single .tour-booking__form .wpcf7-form p:last-child {
  margin-bottom: 0;
}

.tour-single .tour-booking__form .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #dc2626;
}

.tour-single .tour-booking__form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
}

.tour-single .tour-booking__note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 10px;
}

.tour-single .tour-related {
  margin-top: 24px;
}

.tour-single .tour-related__slider {
  position: relative;
}
.tour-single .tour-related .tour-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.2s ease;
}
.tour-single .tour-related .tour-card:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.tour-single .tour-related .tour-card__image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.tour-single .tour-related .tour-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tour-single .tour-related .tour-card__title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.tour-single .tour-related .tour-card__title a {
  color: #111827;
  text-decoration: none;
}
.tour-single .tour-related .tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}
.tour-single .tour-related .tour-card__details {
  margin-top: auto;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tour-single .tour-related .tour-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 20px;
}
.tour-single .tour-related .tour-card__label {
  min-width: 0;
  flex: 1 1 auto;
}
.tour-single .tour-related .tour-card__meta i,
.tour-single .tour-related .tour-card__label i {
  margin-right: 4px;
  color: #2563eb;
}
.tour-single .tour-related .tour-card__price-old {
  flex-shrink: 0;
  text-align: right;
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 12px;
}
.tour-single .tour-related .tour-card__price-main {
  flex-shrink: 0;
  text-align: right;
  color: #f97316;
  font-weight: 700;
  font-size: 14px;
}
.tour-single .tour-related .tour-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.tour-single .tour-related .tour-card__link:hover {
  background: #2563eb;
  color: #fff;
}
.tour-single .tour-related .tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f97316;
  color: #fff;
  border-radius: 6px;
}

.tour-single .comment-form-rating {
  margin-bottom: 16px;
}

.tour-single .comment-form-rating label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.tour-single .tour-rating-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}

.tour-single .tour-rating-input input {
  display: none;
}

.tour-single .tour-rating-input label {
  cursor: pointer;
  font-size: 22px;
  color: #d1d5db;
  margin: 0;
}

.tour-single .tour-rating-input input:checked ~ label,
.tour-single .tour-rating-input label:hover,
.tour-single .tour-rating-input label:hover ~ label {
  color: #f59e0b;
}

@media (max-width: 849px) {
  .tour-single .tour-booking {
    position: static;
    margin-top: 16px;
  }
}
