/* =====================================================================
   THE GREAT INDIAN TRAILS — WooCommerce Single Product Page
   Light Theme  |  Companion to Tailwind CSS
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties (Light Theme) -------------------- */
:root {
  --cream: #FAF8F4;
  --cream-2: #F3F0EA;
  --cream-3: #E9E4D8;
  --forest: #1C3120;
  --forest-2: #2A4730;
  --charcoal: #1A1814;
  --text: #2C2925;
  --text-2: #57524C;
  --text-muted: #8A847C;
  --gold: #B87D1C;
  --gold-hover: #9E6818;
  --gold-bg: #FDF5E4;
  --gold-border: #D4A84A;
  --green-tag: #1E4D22;
  --border: #DDD8CE;
  --border-2: #EAE6DC;
  --white: #FFFFFF;
  --red: #A83232;
  --blue-tag: #1A3A5C;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset / Base ------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}


img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-border);
  border-radius: 4px;
}

/* ---------- Typography -------------------------------------------- */
.font-display {
  font-family: 'Playfair Display', serif;
}

h1.product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

/* ---------- Breadcrumb --------------------------------------------- */
.product-breadcrumb {
  padding: 1rem 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--transition);
}

.product-breadcrumb a:hover {
  color: var(--gold);
}

.product-breadcrumb span.sep {
  color: var(--border);
  font-size: 0.75rem;
}

.product-breadcrumb span.current {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- Product Hero Layout ------------------------------------ */
/* .product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 2.5rem;
  align-items: start;
  padding: 1.5rem 0 3rem;
} */

.product-hero {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 1.25rem 0 3rem
}

@media (max-width: 900px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ---------- Gallery ------------------------------------------------ */
.gallery-wrapper {
  position: sticky;
  top: 90px;
  min-width: 0 !important;
  overflow: hidden !important;
}

.swiper-main-gallery {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-3);
  aspect-ratio: 4/3;
  position: relative;
}

.swiper-main-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}

.badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gallery-badge-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.g-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.g-badge-popular,
.g-badge-pop {
  background: #C4841E;
  color: #fff;
}

.g-badge-best {
  background: var(--forest);
  color: #fff;
}

.g-badge-offbeat {
  background: #7C3AED;
  color: #fff;
}

.gallery-wishlist {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-2);
  transition: all var(--transition);
}

.gallery-overlay-top .gallery-wishlist {
  position: static;
}

.gallery-wishlist:hover,
.gallery-wishlist.saved {
  background: var(--gold-bg);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Swiper custom pagination */
.swiper-main-gallery .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.swiper-main-gallery .swiper-pagination-bullet-active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

.swiper-main-gallery .swiper-button-prev,
.swiper-main-gallery .swiper-button-next {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid var(--border) !important;
  color: var(--charcoal) !important;
  box-shadow: var(--shadow-sm) !important;
}

.swiper-main-gallery .swiper-button-prev::after,
.swiper-main-gallery .swiper-button-next::after {
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* Thumbs */
.swiper-thumbs,
.swiper-thumbs-gallery {
  margin-top: 0.75rem;
  padding: 2px;
}

.swiper-thumbs .swiper-slide,
.swiper-thumbs-gallery .swiper-slide {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  opacity: 0.65;
  transition: opacity var(--transition), border-color var(--transition);
}

.swiper-thumbs .swiper-slide-thumb-active,
.swiper-thumbs-gallery .swiper-slide-thumb-active {
  border-color: var(--gold);
  opacity: 1;
}

.swiper-thumbs .swiper-slide img,
.swiper-thumbs-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Product Info Col --------------------------------------- */
.product-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Tags row */
.product-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.tag-region {
  background: #EDF3EF;
  color: var(--green-tag);
}

.tag-duration {
  background: var(--gold-bg);
  color: var(--gold-hover);
}

.tag-difficulty-easy {
  background: #E8F5E9;
  color: #1B5E20;
}

.tag-difficulty-mod {
  background: #FFF3E0;
  color: #E65100;
}

.tag-difficulty-hard {
  background: #FFEBEE;
  color: #B71C1C;
}

/* Rating row */
.rating-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: #D4961E;
  font-size: 1rem;
}

.star-half {
  color: #D4961E;
  font-size: 1rem;
}

.star-empty {
  color: var(--border);
  font-size: 1rem;
}

.rating-score {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.rating-count {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.rating-sep {
  color: var(--border);
}

.reviews-link {
  font-size: 0.8125rem;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: transparent;
  cursor: pointer;
  transition: text-decoration-color var(--transition);
}

.reviews-link:hover {
  text-decoration-color: var(--gold);
}

/* Quick stats strip */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.625rem;
  text-align: center;
}

.stat-box-icon {
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-box-val {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.stat-box-lbl {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.125rem;
}

@media (max-width: 480px) {
  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Price block */
.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.price-main {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-hover);
  line-height: 1;
}

.price-orig {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.75rem;
  font-weight: 600;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

.price-per {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- Booking Panel ------------------------------------------ */
.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  box-shadow: var(--shadow-sm);
}

.booking-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-2);
  margin-bottom: 0.5rem;
  display: block;
}

/* Departure date pills */
.departure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.departure-pill {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: left;
}

.departure-pill:hover {
  border-color: var(--gold-border);
  background: var(--gold-bg);
}

.departure-pill.selected {
  border-color: var(--gold);
  background: var(--gold-bg);
  box-shadow: 0 0 0 3px rgba(180, 130, 30, 0.12);
}

.departure-pill-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.departure-pill-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
}

.seats-dot {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
}

.seats-dot.few {
  background: #FFF3E0;
  color: #E65100;
}

.seats-dot.good {
  background: #E8F5E9;
  color: #2E7D32;
}

.seats-dot.full {
  background: #FFEBEE;
  color: #C62828;
}

.seats-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Group size stepper */
.stepper-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stepper-btn {
  width: 38px;
  height: 38px;
  background: var(--cream-2);
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--text-2);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-btn:hover {
  background: var(--cream-3);
  color: var(--charcoal);
}

.stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stepper-count {
  padding: 0 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  min-width: 56px;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 38px;
  line-height: 38px;
  background: var(--white);
}

.stepper-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Seats availability bar */
.seats-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.seats-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.seats-bar-label {
  color: var(--text-2);
  font-weight: 500;
}

.seats-bar-count {
  color: var(--red);
  font-weight: 600;
}

.seats-bar-track {
  height: 6px;
  background: var(--cream-3);
  border-radius: 4px;
  overflow: hidden;
}

.seats-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #D4961E, #E8B040);
  transition: width 0.8s ease;
}

/* Add to cart row */
.atc-row {
  display: flex;
  gap: 0.625rem;
}

.btn-atc {
  flex: 1;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.875rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-atc:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 49, 32, 0.25);
}

.btn-atc:active {
  transform: translateY(0);
}

.btn-enquire {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-enquire:hover {
  border-color: var(--gold-border);
  color: var(--gold-hover);
  background: var(--gold-bg);
}

/* Trust badges */
.trust-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border-2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--green-tag);
  font-size: 0.875rem;
}

/* ---------- Sticky Tabs -------------------------------------------- */
.product-tabs-nav {
  position: sticky;
  top: 65px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.tabs-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

.tabs-list::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2.5px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
  top: 1px;
}

.tab-btn:hover {
  color: var(--charcoal);
}

.tab-btn.active {
  color: var(--gold-hover);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

/* ---------- Tab Sections ------------------------------------------- */
.product-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-2);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-2);
}

/* Overview / Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
}

.highlight-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
}

.highlight-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- Itinerary Accordion ------------------------------------ */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itinerary-item {
  border: 1px solid var(--border-2);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: -1px;
  transition: border-color var(--transition);
}

.itinerary-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.itinerary-item:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.itinerary-item.open {
  border-color: var(--gold-border);
  z-index: 2;
  position: relative;
}

.itinerary-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.itinerary-header:hover {
  background: var(--cream-2);
}

.itinerary-item.open .itinerary-header {
  background: var(--gold-bg);
}

.day-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(180, 130, 30, 0.1);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  min-width: 58px;
  text-align: center;
  flex-shrink: 0;
}

.itinerary-title-wrap {
  flex: 1;
}

.itinerary-day-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.itinerary-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.itin-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.itin-meta-item i {
  font-size: 0.75rem;
}

.itin-chevron {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.itinerary-item.open .itin-chevron {
  transform: rotate(180deg);
}

.itinerary-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-item.open .itinerary-body {
  max-height: 600px;
}

.itinerary-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-2);
  background: var(--white);
}

.itin-description {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-top: 0.875rem;
}

.itin-bullets {
  margin-top: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.itin-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-2);
}

.itin-bullet::before {
  content: '↗';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.itin-tags {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-2);
}

.itin-tag {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
}

.itin-tag-meal {
  background: #E8F5E9;
  color: #2E7D32;
}

.itin-tag-stay {
  background: #E3F2FD;
  color: #0D47A1;
}

.itin-tag-trek {
  background: var(--gold-bg);
  color: var(--gold-hover);
}

.itin-tag-rest {
  background: var(--cream-3);
  color: var(--text-2);
}

/* ---------- Inclusions / Exclusions -------------------------------- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}

.inc-card,
.exc-card {
  border-radius: var(--radius-lg);
  padding: 1.375rem;
}

.inc-card {
  background: #F0F7F0;
  border: 1px solid #C8E6C9;
}

.exc-card {
  background: #FFF5F5;
  border: 1px solid #FFCDD2;
}

.inc-exc-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.inc-exc-title.inc {
  color: #1B5E20;
}

.inc-exc-title.exc {
  color: #B71C1C;
}

.inc-exc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inc-exc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.inc-exc-item.inc-item {
  color: #2E7D32;
}

.inc-exc-item.exc-item {
  color: #C62828;
}

.inc-exc-item i {
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Reviews ----------------------------------------------- */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.review-score-big {
  text-align: center;
}

.review-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.review-score-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.rating-bar-label {
  color: var(--text-muted);
  min-width: 36px;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: var(--cream-3);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #D4961E, #E8B040);
  border-radius: 4px;
}

.rating-bar-pct {
  color: var(--text-2);
  font-weight: 600;
  min-width: 30px;
  text-align: right;
}

/* Review cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  transition: border-color var(--transition);
}

.review-card:hover {
  border-color: var(--border);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-2);
}

.reviewer-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-hover);
}

.reviewer-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

.review-trek-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--cream-2);
  color: var(--text-2);
  padding: 0.2rem 0.625rem;
  border-radius: 20px;
  margin-top: 0.75rem;
  border: 1px solid var(--border-2);
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: #2E7D32;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ---------- Related Treks ------------------------------------------ */
.related-section {
  padding: 3rem 0 4rem;
}

.related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.view-all-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}

.view-all-link:hover {
  gap: 0.5rem;
}

/* Related trek cards */
.trek-card-light {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.trek-card-light:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.trek-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 185px;
}

.trek-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.trek-card-light:hover .trek-card-img {
  transform: scale(1.07);
}

.trek-card-body {
  padding: 1rem 1.125rem 1.125rem;
}

.trek-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.trek-card-loc {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.625rem;
}

.trek-card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.trek-meta-pill {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--text-2);
  border: 1px solid var(--border-2);
}

.trek-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-2);
}

.trek-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold-hover);
}

.trek-card-price span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
}

.trek-card-seats {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ---------- Sticky Add-to-Cart Bar --------------------------------- */
#sticky-atc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 0.875rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#sticky-atc-bar.visible {
  transform: translateY(0);
}

.sticky-atc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-trek-info {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.sticky-trek-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--border-2);
}

.sticky-trek-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.sticky-trek-details {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.sticky-price-col {
  text-align: right;
  flex-shrink: 0;
}

.sticky-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-hover);
}

.sticky-per {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.sticky-atc-btn {
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.sticky-atc-btn:hover {
  background: var(--forest-2);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .sticky-trek-info {
    display: none;
  }

  .sticky-price-col {
    display: none;
  }

  .sticky-atc-btn {
    flex: 1;
  }
}

/* ---------- Utility ------------------------------------------------ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin: 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

/* Hide panel */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Gallery nav override */
.swiper-button-prev,
.swiper-button-next {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
  color: var(--charcoal) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px !important;
  font-weight: 700 !important;
}

/* ---------- Booking Calendar --------------------------------------- */
.booking-calendar {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  user-select: none;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cal-month-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.cal-nav-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--transition);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.cal-nav-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-bg);
}

.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.375rem;
}

.cal-dow {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-cell {
  position: relative;
  text-align: center;
  padding: 0.125rem;
  border-radius: 4px;
}

.cal-cell-inner {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--text-2);
  position: relative;
  transition: all var(--transition);
}

.cal-cell.other-month .cal-cell-inner {
  color: var(--cream-3);
  pointer-events: none;
}

.cal-cell.disabled .cal-cell-inner {
  color: var(--cream-3);
  pointer-events: none;
}

.cal-cell.today .cal-cell-inner {
  border: 1.5px solid var(--gold-border);
  color: var(--gold-hover);
  font-weight: 600;
}

.cal-cell.dep {
  cursor: pointer;
}

.cal-cell.dep .cal-cell-inner {
  font-weight: 700;
}

.cal-cell.dep-good .cal-cell-inner {
  background: #E8F5E9;
  color: #1B5E20;
  border: 1.5px solid #A5D6A7;
}

.cal-cell.dep-good:hover .cal-cell-inner {
  background: #C8E6C9;
  border-color: #4CAF50;
  transform: scale(1.1);
}

.cal-cell.dep-few .cal-cell-inner {
  background: #FFF3E0;
  color: #BF360C;
  border: 1.5px solid #FFCC80;
}

.cal-cell.dep-few:hover .cal-cell-inner {
  background: #FFE0B2;
  border-color: #FF9800;
  transform: scale(1.1);
}

.cal-cell.dep-almostfull .cal-cell-inner {
  background: #FFEBEE;
  color: #B71C1C;
  border: 1.5px solid #EF9A9A;
}

.cal-cell.dep-almostfull:hover .cal-cell-inner {
  background: #FFCDD2;
  border-color: #F44336;
  transform: scale(1.1);
}

.cal-cell.selected .cal-cell-inner {
  background: var(--forest) !important;
  color: #fff !important;
  border-color: var(--forest) !important;
  box-shadow: 0 3px 10px rgba(28, 49, 32, 0.4);
  transform: scale(1.1);
}

.cal-cell.in-range {
  background: rgba(44, 100, 55, 0.07);
  border-radius: 0;
}

.cal-cell.in-range .cal-cell-inner {
  color: var(--forest-2);
}

.cal-cell.range-end .cal-cell-inner {
  background: rgba(44, 100, 55, 0.18);
  color: var(--forest);
  font-weight: 600;
}

.cal-avail-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.dep-good .cal-avail-dot {
  background: #2E7D32;
}

.dep-few .cal-avail-dot {
  background: #E65100;
}

.dep-almostfull .cal-avail-dot {
  background: #C62828;
}

.selected .cal-avail-dot {
  background: rgba(255, 255, 255, 0.7);
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  justify-content: center;
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--border-2);
  flex-wrap: wrap;
}

.cal-leg-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.625rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cal-leg-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.cal-leg-dot.good {
  background: #2E7D32;
}

.cal-leg-dot.few {
  background: #E65100;
}

.cal-leg-dot.full {
  background: #C62828;
}

.cal-leg-today {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
}

/* Selected departure card */
.dep-info-card {
  background: var(--white);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: depSlideIn 0.25s ease;
  margin-top: 0.625rem;
}

@keyframes depSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dep-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--gold);
}

.dep-info-main {
  flex: 1;
  min-width: 0;
}

.dep-info-dates {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dep-info-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.dep-info-seats {
  flex-shrink: 0;
  text-align: right;
}

.dep-seats-num {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
}

.dep-seats-lbl {
  font-size: 0.5625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Optional Add-ons --------------------------------------- */
.addons-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.addons-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}

.addons-hdr:hover {
  background: var(--cream-2);
}

.addons-section.open .addons-hdr {
  background: var(--cream-2);
  border-bottom: 1px solid var(--border-2);
}

.addons-hdr-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

.addons-hdr-left>i {
  font-size: 1rem;
  color: var(--gold);
}

.addons-count-badge {
  font-size: 0.5625rem;
  font-weight: 700;
  background: var(--forest);
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  display: none;
}

.addons-count-badge.visible {
  display: inline-block;
}

.addons-hdr-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.addons-extra-total {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gold-hover);
  opacity: 0;
  transition: opacity var(--transition);
}

.addons-extra-total.visible {
  opacity: 1;
}

.addons-chevron {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.addons-section.open .addons-chevron {
  transform: rotate(180deg);
}

.addons-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.addons-section.open .addons-body {
  max-height: 2000px;
}

.addon-cat {
  border-bottom: 1px solid var(--border-2);
}

.addon-cat:last-of-type {
  border-bottom: none;
}

.addon-cat-title {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 1rem 0.375rem;
}

.addon-cat-title>i {
  font-size: 0.875rem;
}

.addon-list {
  padding: 0 1rem 0.5rem;
}

.addon-row {
  display: grid;
  grid-template-columns: 34px 1fr auto auto;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-2);
  transition: background var(--transition);
}

.addon-row:last-child {
  border-bottom: none;
}

.addon-row.active .addon-name {
  color: var(--forest);
}

.addon-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.addon-cat-gear .addon-icon {
  background: #EDF3EF;
  color: var(--green-tag);
}

.addon-cat-svc .addon-icon {
  background: var(--gold-bg);
  color: var(--gold-hover);
}

.addon-cat-accom .addon-icon {
  background: #E3F2FD;
  color: #0D47A1;
}

.addon-row.active.addon-cat-gear .addon-icon {
  background: #C8E6C9;
}

.addon-row.active.addon-cat-svc .addon-icon {
  background: #FDEBC5;
}

.addon-row.active.addon-cat-accom .addon-icon {
  background: #BBDEFB;
}

.addon-info {
  min-width: 0;
}

.addon-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  transition: color var(--transition);
}

.addon-desc {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.addon-price {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-hover);
  text-align: right;
  white-space: nowrap;
}

.addon-price small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.5625rem;
  display: block;
}

/* Toggle switch */
.addon-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.addon-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.addon-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--cream-3);
  border-radius: 22px;
  cursor: pointer;
  transition: background var(--transition);
  border: 1.5px solid var(--border);
}

.addon-toggle input:checked+.addon-toggle-track {
  background: var(--forest);
  border-color: var(--forest);
}

.addon-toggle-track::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 1px;
  left: 1px;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.addon-toggle input:checked+.addon-toggle-track::after {
  transform: translateX(18px);
}

.addon-toggle input:focus-visible+.addon-toggle-track {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Addon qty stepper */
.addon-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.addon-qty.active {
  border-color: var(--gold-border);
}

.addon-qty-btn {
  width: 26px;
  height: 26px;
  background: var(--cream-2);
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text-2);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.addon-qty-btn:hover:not(:disabled) {
  background: var(--cream-3);
  color: var(--charcoal);
}

.addon-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.addon-qty-count {
  padding: 0 0.375rem;
  font-weight: 700;
  font-size: 0.75rem;
  min-width: 26px;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 26px;
  line-height: 26px;
  background: var(--white);
  color: var(--charcoal);
  transition: color var(--transition);
}

.addon-qty-count.active {
  color: var(--forest);
}

/* Addons summary */
.addons-summary {
  background: var(--cream-2);
  border-top: 1px solid var(--border-2);
  padding: 0.875rem 1rem;
  display: none;
  flex-direction: column;
  gap: 0.375rem;
}

.addons-summary.visible {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.addon-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-2);
  gap: 0.5rem;
}

.addon-sum-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.addon-sum-left i {
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.addon-sum-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.addon-sum-price {
  font-weight: 600;
  color: var(--charcoal);
  flex-shrink: 0;
}

.addon-sum-divider {
  height: 1px;
  background: var(--border);
  margin: 0.125rem 0;
}

.addon-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-top: 0.125rem;
}

.addon-sum-total-val {
  color: var(--gold-hover);
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
}

/* ---------- Package Inclusions ------------------------------------ */
.trek-inclusions {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: .875rem 1rem;
}

.trek-inclusions-title {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .625rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.trek-inclusions-title i {
  font-size: .875rem;
  color: var(--green-tag);
}

.trek-inclusions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}

.trek-incl-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  font-weight: 600;
  color: #1B5E20;
  background: #E8F5E9;
  border: 1px solid #C8E6C9;
  padding: .3rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: background var(--transition);
}

.trek-incl-badge i {
  font-size: .8125rem;
  color: #2E7D32;
}

/* Meal sub-badges */
.trek-incl-badge.meal-sub {
  font-size: .6875rem;
  font-weight: 500;
  background: #F1F8E9;
  color: #33691E;
  border-color: #DCEDC8;
  padding: .2rem .625rem;
}

.trek-incl-badge.meal-sub i {
  font-size: .75rem;
  color: #558B2F;
}

/* ---------- Grand total row */
.grand-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0.75rem;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-2);
}

.grand-total-label {
  font-size: 0.75rem;
  color: var(--text-2);
  font-weight: 500;
}

.grand-total-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.grand-total-breakdown {
  font-size: 0.5625rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  text-align: right;
}

/* Stats bar */
#product-stats {
  background: var(--white);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: .5rem 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

@media(max-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border-2)
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold-hover);
  line-height: 1
}

.stat-lbl {
  font-size: .6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em
}


/* 1. Tab Navigation Layout */
.tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
  color: #666;
  /* Default color */
}

/* Active Tab State */
.tab-btn.active {
  color: #9e6818;
  border-bottom: 2px solid #b87d1c;
  font-weight: 600;
}

/* 2. Content Section Styling */
.container section {
  /* padding: 2rem 0; */
  font-family: 'Inter', system-ui, sans-serif;
}

.container section p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 70ch;
  color: #374151;
  font-size: 1.05rem;
}

/* 3. Header Styling within Tabs */
.container section h1,
.container section h2,
.container section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111827;
  font-weight: 600;
}

/* Clean up spacing for the last element in each section */
/* .container section>*:last-child {
  margin-bottom: 0;
} */

/* related resource: wc-single-product.css?ver=1.0.0:1236:1 */
.reviews-list {
  /* the element was .reviews-list */
  margin-bottom: 2rem;
  border-top: 1px solid rgb(234, 230, 220);
  padding-top: 2rem;
  margin-top: 2.5rem;
}

/* related resource: wc-single-product.css?ver=1.0.0:2576:1 */
/* .container section>*:last-child { */
  /* the element was .review-form-wrapper */
  /* border-top: 1px solid rgb(229, 231, 235);
  padding-top: 2rem;
  background-color: rgb(249, 250, 250);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
  border: 1px solid rgb(234, 230, 220); */
/* } */

/* related resource: wc-single-product.css?ver=1.0.0:1602:1 */
.reveal.visible {
  /* the element was .reviews-summary.reveal.visible */
  border-color: rgb(234, 230, 220);
  /* background-color: rgb(252, 251, 249); */
  border-radius: 8px;
  /* padding: 2rem; */
}

/* related resource: wc-single-product.css?ver=1.0.0:2566:1 */
.container section h3 {
  /* the element was h3#reply-title */
  font-family: "Playfair Display", serif;
  color: rgb(17, 24, 39);
  font-size: 24px;
  margin-bottom: 1.5rem;
}

input:where([type=submit]) {
  /* the element was input#submit */
  background-color: rgb(17, 24, 39);
  color: rgb(255, 255, 255);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: none;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  transition: opacity 0.2s;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  padding: 1rem 0 .25rem;
  font-size: .8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap
}

.breadcrumb a {
  color: var(--text-2);
  transition: color var(--tr)
}

.breadcrumb a:hover {
  color: var(--gold)
}

.breadcrumb .sep {
  color: var(--border)
}

.breadcrumb .cur {
  color: var(--gold);
  font-weight: 500
}

/* Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-wrap: wrap
}

.stars {
  display: flex;
  gap: 2px;
  font-size: 1rem;
  color: #D4961E
}

.stars .empty {
  color: var(--border)
}

.rating-score {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--charcoal)
}

.rating-count {
  font-size: .8125rem;
  color: var(--text-muted)
}

.reviews-link {
  font-size: .8125rem;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--tr)
}

.reviews-link:hover {
  text-decoration-color: var(--gold)
}

/* Tags */
.tag-row {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap
}

.tag {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 20px
}

.tag-region {
  background: #EDF3EF;
  color: var(--green-tag)
}

.tag-dur {
  background: var(--gold-bg);
  color: var(--gold-hover)
}

.tag-mod {
  background: #FFF3E0;
  color: #E65100
}


/* ══════════════════════════════════════════════════
   DEP SECTION WRAPPER
══════════════════════════════════════════════════ */
.dep-section {
  display: flex;
  flex-direction: column;
  gap: .875rem;
}

/* ══════════════════════════════════════════════════
   FIXED DEPARTURES ACCORDION WRAP
══════════════════════════════════════════════════ */
.dep-accordion-wrap {
  border: 1.5px solid var(--border, #E2D9CE);
  border-radius: 10px;
  overflow: hidden;
}

.dep-accordion-header {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.1rem;
  background: var(--gold, #D4961E);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dep-accordion-header .ti {
  font-size: 1rem;
}

/* ── Month group card ── */
.dep-accordion {
  display: flex;
  flex-direction: column;
}

.dep-month-group {
  border-bottom: 1px solid var(--border, #E2D9CE);
  background: #fff;
  transition: background .15s;
}

.dep-month-group:last-child {
  border-bottom: none;
}

.dep-month-group.is-open {
  background: #FEFAF3;
}

/* ── Month header ── */
.dep-month-hdr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: .6rem;
  text-align: left;
  transition: background .15s;
}

.dep-month-hdr:hover {
  background: var(--gold-bg, #FEF9EE);
}

.dep-month-group.is-open .dep-month-hdr {
  background: var(--gold-bg, #FEF9EE);
  border-bottom: 1px solid var(--border, #E2D9CE);
}

.dep-month-hdr-left {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex: 1;
}

.dep-month-hdr-left .ti-calendar {
  color: var(--gold, #D4961E);
  font-size: .95rem;
}

.dep-month-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text, #1E1A14);
}

.dep-month-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: .1rem .45rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.dep-month-badge--avail-good {
  background: #ECFDF5;
  color: #15803D;
}

.dep-month-badge--avail-low {
  background: #FFFBEB;
  color: #B45309;
}

.dep-month-badge--avail-few {
  background: #FFF1F2;
  color: #BE123C;
}

.dep-month-chevron {
  font-size: .9rem;
  color: var(--text-muted, #8A7B6D);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.dep-month-group.is-open .dep-month-chevron {
  transform: rotate(180deg);
  color: var(--gold, #D4961E);
}

/* ── Month body collapse ── */
.dep-month-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.dep-month-group.is-open .dep-month-body {
  grid-template-rows: 1fr;
}

.dep-month-body>.dep-rows-list {
  overflow: hidden;
}

/* ── Departure rows ── */
.dep-rows-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dep-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.1rem;
  gap: .6rem;
  border-bottom: 1px solid var(--border, #E2D9CE);
  cursor: pointer;
  transition: background .15s;
}

.dep-row:last-child {
  border-bottom: none;
}

.dep-row:hover:not(.dep-row--past) {
  background: #FEF9EE;
}

.dep-row.is-selected {
  background: var(--gold-bg, #FEF9EE);
  border-left: 3px solid var(--gold, #D4961E);
}

.dep-row--past {
  opacity: .5;
  cursor: default;
  pointer-events: none;
}

.dep-row:focus-visible {
  outline: 2px solid var(--gold, #D4961E);
  outline-offset: -2px;
}

/* Date range */
.dep-row-dates {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
  flex: 1;
}

.dep-row-start {
  font-weight: 700;
  font-size: .875rem;
  color: var(--text, #1E1A14);
}

.dep-row-arrow {
  color: var(--text-muted);
  font-size: .75rem;
}

.dep-row-end {
  font-size: .8rem;
  color: var(--text, #1E1A14);
}

.dep-row-dur {
  font-size: .65rem;
  font-weight: 700;
  background: var(--gold-bg, #FEF9EE);
  color: var(--gold-hover, #B87D18);
  padding: .1rem .35rem;
  border-radius: 4px;
}

/* Right side */
.dep-row-right {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}

.dep-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  min-width: 72px;
}

.dep-seat-bar {
  width: 72px;
  height: 3px;
  background: #EDE6DC;
  border-radius: 2px;
  overflow: hidden;
}

.dep-seat-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width .35s;
}

.dep-seat-bar-fill--avail-good {
  background: #22C55E;
}

.dep-seat-bar-fill--avail-low {
  background: #F59E0B;
}

.dep-seat-bar-fill--avail-few {
  background: #EF4444;
}

.dep-seat-bar-fill--avail-full {
  background: #9CA3AF;
}

.dep-row-seats {
  font-size: .7rem;
  font-weight: 600;
  white-space: nowrap;
}

.dep-row-seats.avail-good {
  color: #15803D;
}

.dep-row-seats.avail-low {
  color: #B45309;
}

.dep-row-seats.avail-few {
  color: #BE123C;
}

.dep-row-seats.avail-full {
  color: #6B7280;
}

.dep-row-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text, #1E1A14);
  white-space: nowrap;
}

/* Select indicator */
.dep-row-select-indicator {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--border, #E2D9CE);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.dep-row.is-selected .dep-row-select-indicator {
  background: var(--gold, #D4961E);
  border-color: var(--gold, #D4961E);
  color: #fff;
}

.dep-row-select-indicator .ti {
  font-size: .7rem;
}

.dep-row-past-badge {
  font-size: .65rem;
  background: #F3F4F6;
  color: #9CA3AF;
  padding: .15rem .45rem;
  border-radius: 4px;
  font-weight: 600;
}

/* ── Empty state ── */
.dep-empty {
  text-align: center;
  padding: 1.5rem;
  color: var(--text-muted, #8A7B6D);
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ── Selected summary card ── */
.dep-info-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .8rem 1rem;
  background: var(--gold-bg, #FEF9EE);
  border: 1.5px solid var(--gold, #D4961E);
  border-radius: 8px;
  animation: tgit-slide-in .25s ease;
}

.dep-info-icon {
  width: 2rem;
  height: 2rem;
  background: var(--gold, #D4961E);
  color: #fff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.dep-info-main {
  flex: 1;
}

.dep-info-dates {
  font-weight: 700;
  font-size: .875rem;
  color: var(--text, #1E1A14);
}

.dep-info-meta {
  font-size: .75rem;
  color: var(--text-muted, #8A7B6D);
  margin-top: .1rem;
}

.dep-info-seats {
  text-align: center;
}

.dep-seats-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold, #D4961E);
  line-height: 1;
}

.dep-seats-lbl {
  font-size: .65rem;
  color: var(--text-muted, #8A7B6D);
}

.dep-info-clear {
  background: none;
  border: none;
  color: var(--text-muted, #8A7B6D);
  cursor: pointer;
  padding: .2rem;
  border-radius: 4px;
  transition: color .15s, background .15s;
}

.dep-info-clear:hover {
  color: #EF4444;
  background: #FEF2F2;
}

/* ══════════════════════════════════════════════════
   TREK ROUTE MAP
══════════════════════════════════════════════════ */
.trek-map-block {
  border: 1.5px solid var(--border, #E2D9CE);
  border-radius: 10px;
  overflow: hidden;
  margin-top: .25rem;
}

.trek-map-block__hdr {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  background: var(--gold-bg, #FEF9EE);
  border-bottom: 1px solid var(--border, #E2D9CE);
  font-size: .875rem;
  font-weight: 700;
  color: var(--text, #1E1A14);
}

.trek-map-block__hdr .ti-map-2 {
  color: var(--gold, #D4961E);
  font-size: 1rem;
}

.trek-map-block__ext {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-left: auto;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold, #D4961E);
  text-decoration: none;
  padding: .2rem .6rem;
  border: 1px solid var(--gold, #D4961E);
  border-radius: 5px;
  transition: background .15s, color .15s;
}

.trek-map-block__ext:hover {
  background: var(--gold, #D4961E);
  color: #fff;
}

.trek-map-block__body {
  position: relative;
}

.trek-map-iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: saturate(.9) contrast(.95);
  /* soften Google Maps colours */
}

/* Placeholder when no map configured */
.trek-map-placeholder {
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-muted, #8A7B6D);
  font-size: .875rem;
  background: var(--gold-bg, #FEF9EE);
}

.trek-map-placeholder .ti {
  font-size: 2rem;
  opacity: .4;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .dep-row {
    flex-wrap: wrap;
    gap: .4rem;
  }

  .dep-row-right {
    width: 100%;
    justify-content: space-between;
  }

  .dep-seat-bar {
    width: 56px;
  }

  .trek-map-iframe {
    height: 220px;
  }
}

/*
** ─── TGIT FAQ Section ───────────────────────────────────────
*/
.tgit-faq {
  padding-block: var(--section-gap, 3.5rem);
}

.tgit-faq__heading {
  font-size: clamp(1.35rem, 2.5vw, 1.875rem) !important;
  font-weight: 700 !important;
  color: var(--ink, #1E1A14) !important;
  margin-bottom: 1.75rem !important;
  margin-top: 1rem !important;
}

/* ── Category filter pills ── */
.tgit-faq__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.tgit-faq__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem 1rem;
  border: 1.5px solid var(--border, #E2D9CE);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted, #8A7B6D);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}

.tgit-faq__filter-btn:hover,
.tgit-faq__filter-btn.active {
  background: var(--gold, #D4961E);
  border-color: var(--gold, #D4961E);
  color: #fff;
}

.tgit-faq__filter-count {
  background: rgba(255, 255, 255, .25);
  border-radius: 10px;
  padding: 0 5px;
  font-size: .7rem;
}

.tgit-faq__filter-btn:not(.active) .tgit-faq__filter-count {
  background: var(--gold-bg, #FEF9EE);
  color: var(--gold, #D4961E);
}

/* ── FAQ list ── */
.tgit-faq__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ── Individual item ── */
.tgit-faq__item {
  border: 1px solid var(--border, #E2D9CE);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.tgit-faq__item:has(.tgit-faq__q[aria-expanded="true"]) {
  border-color: var(--gold, #D4961E);
  box-shadow: 0 2px 12px rgba(212, 150, 30, .1);
}

/* ── Question button ── */
.tgit-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}

.tgit-faq__q:hover {
  background: var(--gold-bg, #FEF9EE);
}

.tgit-faq__q[aria-expanded="true"] {
  background: var(--gold-bg, #FEF9EE);
}

.tgit-faq__q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink, #1E1A14);
  line-height: 1.4;
  flex: 1;
}

.tgit-faq__icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--border, #E2D9CE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold, #D4961E);
  transition: background .2s, border-color .2s, transform .25s;
}

.tgit-faq__q[aria-expanded="true"] .tgit-faq__icon {
  background: var(--gold, #D4961E);
  border-color: var(--gold, #D4961E);
  color: #fff;
  transform: rotate(45deg);
}

/* ── Answer panel ── */
.tgit-faq__a {
  border-top: 1px solid var(--border, #E2D9CE);
}

.tgit-faq__a-inner {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--ink-soft, #4A3F32);
  font-size: .9375rem;
  line-height: 1.75;
}

.tgit-faq__a-inner p:last-child {
  margin-bottom: 0;
}

/* Filtered-out items */
.tgit-faq__item[hidden] {
  display: none;
}

div#tgit-faq-list {
  padding: 0;
  border: none;
  margin-top: 1.5rem;
}

section#tab-faq {
  margin: 0;
  padding: 1.5rem;
  border: 0;
  background: none;
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .tgit-faq__q-text {
    font-size: .9375rem;
  }

  .tgit-faq__q {
    padding: .875rem 1rem;
  }

  .tgit-faq__a-inner {
    padding: .875rem 1rem 1rem;
  }
}

/* related resource: wc-single-product.css?ver=1.0.0:2527:1 */
.tabs-nav {
  /* the element was nav.tabs-nav */
  position: sticky;
  top: 113px;
  z-index: 999;
  background: white;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(221, 221, 221);
}