/* Tour Detail Page — extracted from inline styles */

/* === Tour Info Block === */
.bc-tour-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.bc-tour-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bc-tour-info-row > i {
  color: #1a5276;
  margin-top: 3px;
  min-width: 16px;
}
.bc-tour-info-label {
  font-weight: 600;
  color: #333;
}
.bc-tour-info-value {
  color: #555;
}

/* === Enquiry Form === */
.bc-booking-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.bc-booking-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-booking-header-icon {
  color: #1a5276;
  font-size: 20px;
}
.bc-booking-header-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a5276;
}
.bc-price-badge {
  background: #f0f7ff;
  border: 1px solid #cce0f5;
  border-radius: 8px;
  padding: 6px 14px;
  text-align: right;
}
.bc-price-badge-label {
  font-size: 12px;
  color: #666;
}
.bc-price-badge-value {
  font-size: 18px;
  font-weight: 700;
  color: #1a5276;
}
.bc-form-body {
  padding: 20px;
}
.bc-form-icon {
  color: #1a5276;
  margin-right: 4px;
}
.bc-required-mark {
  color: red;
}
.bc-special-needs-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.bc-special-needs-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
}
.bc-submit-btn {
  background: #1a5276;
  border-color: #1a5276;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}
.bc-form-disclaimer {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

/* === Right Sidebar — align with Event module === */
.bc-single-tour .widgets.sticky-top {
  padding-top: 0;
  top: 80px;
}
.bc-single-tour .widgets .widget-box.bc-logo-box {
  padding: 0;
  margin-top: 0;
  margin-bottom: 16px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  border-radius: 12px;
}
.bc-single-tour .widgets .sidebar-item.map-view-wrapper {
  margin-top: 0;
}
.bc-single-tour .widgets .bc-border-radius-sidebar {
  padding: 0;
}
.bc-single-tour .widgets .bc-border-radius-sidebar img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* === Content Placeholder === */
.bc-content-placeholder .bc-placeholder-body {
  background: #f8f9fa;
  text-align: center;
  padding: 2rem 1rem;
  color: #6c757d;
  border-radius: 8px;
  border: 1px dashed #dee2e6;
}
.bc-content-placeholder .bc-placeholder-body p {
  margin: 0;
  font-size: 14px;
}

/* === Enquiry Form Collapse Toggle === */
.bc-enquiry-toggle {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-radius: 8px;
}
.bc-enquiry-toggle:hover {
  background-color: #f8f9fa;
}
.bc-enquiry-chevron {
  color: #666;
  transition: transform 0.3s;
  font-size: 14px;
}
.bc-enquiry-toggle[aria-expanded="true"] .bc-enquiry-chevron {
  transform: rotate(180deg);
}
