/**
 * Trek Details Page Styles
 * 
 * @package TrekkingInNepal
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.trek-hero-section {
  padding: 0 1rem;
  margin-top: 25px;
}

.trek-hero-container {
  position: relative;
  min-height: 520px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .trek-hero-container {
    padding: 4rem;
  }
}

.trek-hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Breadcrumbs in Hero */
.trek-hero-breadcrumbs {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

@media (min-width: 768px) {
  .trek-hero-breadcrumbs {
    top: 2.5rem;
    left: 4rem;
    right: 4rem;
  }
}

.trek-breadcrumbs-hero {
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: fit-content;
}

.trek-breadcrumbs-list-hero {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.trek-breadcrumbs-list-hero li {
  margin: 0 !important;
}

.trek-breadcrumb-item-hero {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1;
}

.trek-breadcrumb-item-hero a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.trek-breadcrumb-item-hero a:hover {
  color: #f47b25;
}

.trek-breadcrumb-current-hero {
  color: white;
  font-weight: 600;
  line-height: 1;
}

.trek-breadcrumb-separator-hero {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .trek-hero-breadcrumbs {
    top: 1.5rem;
    left: 1rem;
    right: 1rem;
  }

  .trek-breadcrumbs-hero {
    padding: 0.5rem 0.75rem;
  }

  .trek-breadcrumb-item-hero {
    font-size: 0.75rem;
  }
}

.trek-hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.trek-hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  background: #16a34a;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  color:#ffffff;
}

.trek-hero-badge .material-symbols-outlined,
.trek-hero-badge .fa-solid {
  font-variation-settings: 'FILL' 1;
  color: white;
}

.trek-hero-badge span:last-child {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
}

.trek-hero-title {
  color: white;
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-top: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trek-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .trek-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.trek-hero-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 0.5rem;
  min-width: auto;
  text-align: center;
}

@media (min-width: 768px) {
  .trek-hero-stat {
    padding: 0.75rem 1rem;
    min-width: 120px;
    text-align: left;
  }
}

.trek-hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.5rem, 1.5vw, 0.625rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.trek-hero-stat-value {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   Sticky Navigation
   ========================================================================== */

.trek-navigation {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: white;
  border-bottom: 1px solid #e6dfdb;
  margin-bottom: 2rem;
}

.trek-navigation-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.trek-nav-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.trek-nav-links::-webkit-scrollbar {
  display: none;
}

.trek-nav-link {
  border-bottom: 2px solid transparent;
  color: #8a7260;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.trek-nav-link:hover,
.trek-nav-link.active {
  color: #f47b25;
  border-bottom-color: #f47b25;
}

/* Navigation Wishlist Button */
.trek-nav-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid #e6dfdb;
  border-radius: 2rem;
  color: #8a7260;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 40px;
}

.trek-nav-wishlist .fa-heart {
  font-size: 20px;
  transition: all 0.3s;
}

.trek-nav-wishlist-text {
  font-size: 0.875rem;
  font-weight: 600;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.trek-nav-wishlist:hover {
  background: rgba(244, 123, 37, 0.05);
  border-color: #f47b25;
  color: #f47b25;
  padding-left: 1rem;
  padding-right: 1rem;
}

.trek-nav-wishlist:hover .trek-nav-wishlist-text {
  max-width: 120px;
  opacity: 1;
}

.trek-nav-wishlist.in-wishlist {
  border-color: #dc2626;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
}

.trek-nav-wishlist.in-wishlist .fa-heart {
  color: #dc2626;
}

.trek-nav-wishlist.in-wishlist:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */

.trek-main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 5rem;
}

.trek-content-container {
  padding: 0 2.5rem;
}

.trek-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .trek-content-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.trek-content-sidebar {
  min-height: 100%;
}

.trek-content-primary {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.trek-section {
  scroll-margin-top: 144px;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.trek-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: #e5e7eb;
}

.trek-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.trek-section:last-child::after {
  display: none;
}

.trek-section-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trek-section-header {
  margin-bottom: 1.5rem;
  width: 100%;
}

.trek-section-header-with-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.trek-section-header-left {
  flex: 1;
}

.trek-view-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: #f47b25;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.trek-view-all-reviews:hover {
  transform: translateY(-2px); 
}

.trek-view-all-reviews i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.trek-view-all-reviews:hover i {
  transform: translateX(4px);
}

.trek-section-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: #8a7260;
  white-space: nowrap;
}

/* ==========================================================================
   Overview Section
   ========================================================================== */

.trek-overview-content {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #5a4a3f;
  line-height: 1.75;
  margin-bottom: 3rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trek-overview-content p,
.trek-overview-content ul,
.trek-overview-content ol {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  margin-top: 0;
}

.trek-details-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid #e6dfdb;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.trek-details-header {
  background: rgba(244, 123, 37, 0.05);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e6dfdb;
}

.trek-details-title {
  font-weight: 700;
  color: #f47b25;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.trek-details-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 1024px) {
  .trek-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.trek-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trek-detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8a7260;
}

.trek-detail-label .material-symbols-outlined {
  color: #f47b25;
  font-size: 1.25rem;
}

.trek-detail-label span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trek-detail-value {
  font-weight: 700;
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin: 0 0 0 calc(1.25rem + 0.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ==========================================================================
   Itinerary Section
   ========================================================================== */

.trek-itinerary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.trek-itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Timeline Visualization */
.trek-itinerary-timeline {
  position: relative;
}

.trek-itinerary-timeline .trek-itinerary-day {
  position: relative;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.trek-itinerary-day-content {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  border-bottom: 1px solid #e6dfdb;
  padding-bottom: 1.25rem;
}

.trek-itinerary-timeline .trek-itinerary-day:last-child .trek-itinerary-day-content {
  border-bottom: none;
}

.trek-itinerary-timeline .trek-itinerary-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0 0 0;
  cursor: default;
}

.trek-itinerary-day-expandable .trek-itinerary-summary {
  cursor: pointer;
}

.trek-itinerary-day-simple .trek-itinerary-summary {
  cursor: default;
}

.trek-itinerary-timeline-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 2.5rem;
  flex-shrink: 0;
}

.trek-itinerary-timeline-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}

.trek-itinerary-timeline-icon-start {
  background: #16a34a;
  color: white;
}

.trek-itinerary-timeline-icon .material-symbols-outlined {
  font-size: 1.25rem;
}

.trek-itinerary-timeline-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: white;
  border: 2px solid #8a7260;
  z-index: 2;
  transition: all 0.3s;
  flex-shrink: 0;
}

.trek-itinerary-day-expandable[open] .trek-itinerary-timeline-dot {
  background: #8a7260;
  border-width: 3px;
}

.trek-itinerary-timeline-line {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1.25rem);
  background: #e6dfdb;
  z-index: 1;
}

.trek-itinerary-day-last .trek-itinerary-timeline-line {
  display: none;
}

.trek-itinerary-day-content {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.trek-itinerary-day-label {
  font-weight: 700;
  font-size: 1rem;
  color: #181411;
  white-space: nowrap;
  flex-shrink: 0;
}

.trek-itinerary-day-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  color: #181411;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.trek-itinerary-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #16a34a;
  color: white;
  border-radius: 50%;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.trek-itinerary-toggle i {
  font-size: 0.625rem;
}

.trek-itinerary-day-expandable[open] .trek-itinerary-toggle {
  transform: rotate(45deg);
}

.trek-itinerary-day-simple .trek-itinerary-toggle {
  display: none;
}

.trek-itinerary-content {
  padding: 0 0 1.25rem;
  margin-left: 3.5rem;
  border-top: none;
  margin-top: 0;
}

.trek-itinerary-description {
  color: #5a4a3f;
  line-height: 1.75;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 0.9375rem;
}

.trek-itinerary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #8a7260;
}

.trek-itinerary-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trek-itinerary-meta-item .material-symbols-outlined {
  font-size: 1rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.trek-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trek-gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trek-gallery-item img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #e6dfdb;
  transition: transform 0.3s, opacity 0.3s;
  cursor: pointer;
  opacity: 0;
}

.trek-gallery-item img.lazy-load {
  opacity: 0;
}

.trek-gallery-item img.loading {
  opacity: 0.3;
}

.trek-gallery-item img.loaded {
  opacity: 1;
  animation: galleryFadeIn 0.6s ease-out;
}

.trek-gallery-item img:hover {
  transform: scale(1.02);
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox */
.trek-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.trek-lightbox.active {
  display: flex;
}

.trek-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.trek-lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trek-lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0;
}

.trek-lightbox-close,
.trek-lightbox-prev,
.trek-lightbox-next {
  position: fixed;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10001;
  opacity: 0.8;
  font-weight: 300;
  line-height: 1;
  padding: 0.5rem;
}

.trek-lightbox-close:hover,
.trek-lightbox-prev:hover,
.trek-lightbox-next:hover {
  opacity: 1;
}

.trek-lightbox-close {
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
}

.trek-lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
}

.trek-lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.trek-map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e6dfdb;
}

.trek-map-image {
  width: 100%;
  height: auto;
  display: block;
}

.trek-map-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.trek-map-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.trek-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trek-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trek-review-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e6dfdb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.trek-review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #f47b25;
  margin-bottom: 1rem;
}

.trek-review-star {
  font-size: 0.875rem;
  color: #d1d5db;
  /* Light gray for unfilled stars */
}

.trek-review-star.filled {
  color: #f47b25;
  /* Orange for filled stars */
}

.trek-review-text {
  color: #5a4a3f;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(0.9375rem, 2vw, 1rem);
}

.trek-review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trek-review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(244, 123, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f47b25;
}

.trek-review-author-name {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
}

.trek-review-date {
  font-size: 0.75rem;
  color: #8a7260;
  margin: 0;
}

/* No Reviews Message */
.trek-no-reviews {
  text-align: center;
  padding: 3rem 2rem;
  background: #f9fafb;
  border-radius: 1rem;
  border: 2px dashed #e5e7eb;
  margin-bottom: 2rem;
}

.trek-no-reviews-icon {
  margin-bottom: 1rem;
}

.trek-no-reviews-icon .material-symbols-outlined {
  font-size: 4rem;
  color: #d1d5db;
}

.trek-no-reviews-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.trek-no-reviews-text {
  font-size: 1rem;
  color: #9ca3af;
  margin: 0;
}

/* ==========================================================================
   Included/Excluded Section
   ========================================================================== */

.trek-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trek-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trek-included-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid;
}

.trek-included-card.included {
  background: rgba(22, 163, 74, 0.05);
  border-color: rgba(22, 163, 74, 0.2);
}

.trek-included-card.excluded {
  background: rgba(107, 114, 128, 0.05);
  border-color: #e6dfdb;
}

.trek-included-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trek-included-card.included .trek-included-title {
  color: #16a34a;
}

.trek-included-card.excluded .trek-included-title {
  color: #dc2626;
}

.trek-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trek-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.8125rem, 2vw, 0.875rem);
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trek-included-card.included .trek-included-item .material-symbols-outlined {
  color: #16a34a;
  font-size: 1.125rem;
}

.trek-included-card.excluded .trek-included-item .material-symbols-outlined {
  color: #dc2626;
  font-size: 1.125rem;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.trek-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trek-pricing-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e6dfdb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trek-pricing-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.trek-pricing-from {
  color: #f47b25;
  font-weight: 700;
}

.trek-pricing-amount {
  font-size: 1.875rem;
  font-weight: 900;
  color: #181411;
}

.trek-pricing-label {
  color: #8a7260;
  font-size: 0.875rem;
}

.trek-pricing-instant {
  font-size: 0.875rem;
  color: #16a34a;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trek-pricing-instant .material-symbols-outlined {
  font-size: 0.875rem;
}

.trek-pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trek-btn {
  height: 3.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.trek-btn-primary {
  background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
  color: white;
  text-decoration: none;
}

.trek-btn-primary:hover {
  transform: scale(1.02);
  color: white;
}

.trek-btn-secondary {
  border: 1px solid #f47b25;
  color: #f47b25;
  background: white;
  text-decoration: none;
}

.trek-btn-secondary:hover {
  background: rgba(244, 123, 37, 0.05);
  text-decoration: none;
}

.trek-pricing-downloads {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6dfdb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trek-download-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #5a4a3f;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s;
}

.trek-download-link:hover {
  color: #f47b25;
}

.trek-download-link .material-symbols-outlined:first-child {
  color: #f47b25;
  font-size: 1.5rem;
}

.trek-download-link span:nth-child(2) {
  flex: 1;
}

.trek-download-arrow {
  color: #8a7260;
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.trek-download-link:hover .trek-download-arrow {
  transform: translateX(4px);
  color: #f47b25;
}

/* Sticky Pricing Card (Desktop) */
@media (min-width: 1024px) {
  .trek-pricing-card-sticky {
    position: sticky;
    top: 144px;
    /* Header (64px) + Nav (60px) + padding (20px) */
    z-index: 10;
    transition: box-shadow 0.3s ease;
  }

  .trek-pricing-card-sticky.is-stuck {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
}

.trek-certification-card {
  background: #f5f2f0;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px dashed #e6dfdb;
}

.trek-certification-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trek-certification-icon {
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f47b25;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.trek-cert-logo {
  width: 2rem;
  height: 2rem;
}

.trek-certification-title {
  font-weight: 700;
  margin: 0;
}

.trek-certification-number {
  font-size: 0.75rem;
  color: #8a7260;
  margin: 0;
}

.trek-certification-description {
  font-size: 0.75rem;
  color: #8a7260;
  line-height: 1.5;
  margin: 0;
}

.trek-certification-affiliates {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e6dfdb;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

.trek-certification-affiliates-image {
  height: auto;
  display: block;
  opacity: 0.9;
  flex: 0 0 auto;
  width: calc(25% - 0.375rem);
  max-height: 50px;
  object-fit: contain;
}

/* Sidebar Social Share */
.trek-sidebar-social {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e6dfdb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.trek-sidebar-social-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8a7260;
  margin: 0 0 1rem 0;
}

.trek-sidebar-social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trek-sidebar-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.trek-sidebar-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.trek-sidebar-social-facebook {
  background: #1877f2;
}

.trek-sidebar-social-facebook:hover {
  background: #0c63d4;
}

.trek-sidebar-social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.trek-sidebar-social-twitter {
  background: #000000;
}

.trek-sidebar-social-twitter:hover {
  background: #1a1a1a;
}

.trek-sidebar-social-whatsapp {
  background: #25d366;
}

.trek-sidebar-social-whatsapp:hover {
  background: #1ebe57;
}

.trek-sidebar-social-copy {
  background: #f47b25;
}

.trek-sidebar-social-copy:hover {
  background: #e06815;
}

.trek-sidebar-social-message {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile Booking Bar - Base styles */
.trek-mobile-booking-bar {
  display: none;
}

@media (max-width: 768px) {
  .trek-mobile-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 50;
    border-top: 1px solid #e6dfdb;
  }
}

/* Hide mobile booking bar on desktop */
@media (min-width: 769px) {
  .trek-mobile-booking-bar {
    display: none !important;
  }

  body.has-mobile-booking-bar {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .trek-hero-container {
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .trek-hero-title {
    font-size: 2rem;
  }

  .trek-hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .trek-content-container {
    padding: 0 1rem;
  }

  .trek-navigation-container {
    padding: 0 1rem;
  }

  .trek-nav-links {
    gap: 0;
  }

  .trek-nav-link {
    font-size: 0.8125rem;
    padding: 1rem 1rem;
  }

  /* Hide sidebar on mobile, show sticky booking bar instead */
  .trek-sidebar {
    display: none;
  }

  /* Section spacing */
  .trek-section {
    scroll-margin-top: 120px;
  }

  .trek-section-title {
    font-size: 1.25rem;
  }

  /* Overview section */
  .trek-overview-content {
    font-size: 1rem;
  }

  .trek-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .trek-details-header {
    padding: 1rem 1.5rem;
  }

  /* Itinerary */
  .trek-itinerary-summary {
    padding: 1rem;
  }

  .trek-itinerary-day-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .trek-itinerary-day-title {
    font-size: 0.9375rem;
  }

  .trek-itinerary-content {
    padding: 0 1rem 1rem;
  }

  /* Gallery */
  .trek-gallery-masonry {
    column-count: 2;
    column-gap: 1rem;
  }

  .trek-gallery-item {
    margin-bottom: 1rem;
  }

  .trek-gallery-item img {
    height: 200px;
  }

  /* Lightbox controls */
  .trek-lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }

  .trek-lightbox-prev,
  .trek-lightbox-next {
    font-size: 2.5rem;
  }

  .trek-lightbox-prev {
    left: 0.5rem;
  }

  .trek-lightbox-next {
    right: 0.5rem;
  }

  /* Include/Exclude */
  .trek-included-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trek-included-card {
    padding: 1.5rem;
  }

  .trek-included-title {
    font-size: 1.125rem;
  }

  .trek-included-item {
    font-size: 0.8125rem;
  }

  /* FAQ */
  .trek-faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .trek-faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.9375rem;
  }

  /* Reviews */
  .trek-reviews-grid {
    grid-template-columns: 1fr;
  }

  .trek-review-card {
    padding: 1.25rem;
  }

  /* Reviews Carousel */
  .trek-reviews-carousel .trek-review-card {
    flex: 0 0 calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    scroll-snap-align: center;
  }

  .trek-reviews-carousel-wrapper {
    overflow: visible;
  }

  .trek-reviews-carousel {
    overflow-x: hidden;
    padding: 0;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }

  /* Review Form */
  .trek-review-form-wrapper {
    padding: 1.5rem;
    margin-top: 40px;
  }

  .trek-review-form-title {
    font-size: 1.5rem;
  }

  .trek-review-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Similar Treks */
  .trek-similar-grid {
    grid-template-columns: 1fr;
  }

  .trek-similar-image {
    height: 180px;
  }

  /* Mobile Sticky Booking Bar Pricing */
  .trek-mobile-booking-price {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .trek-mobile-booking-from {
    font-size: 0.75rem;
    color: #8a7260;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .trek-mobile-booking-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #181411;
  }

  .trek-mobile-booking-label {
    font-size: 0.75rem;
    color: #8a7260;
  }

  .trek-mobile-booking-actions {
    display: flex;
    gap: 0.5rem;
  }

  .trek-mobile-booking-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
  }

  .trek-mobile-booking-btn-primary {
    background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
    color: white;
  }

  .trek-mobile-booking-btn-primary:hover {
    color: white;
  }

  .trek-mobile-booking-btn-secondary {
    background: white;
    border: 1px solid #f47b25;
    color: #f47b25;
  }

  .trek-mobile-booking-btn .material-symbols-outlined {
    font-size: 18px;
  }

  /* Add padding to body to prevent content from being hidden behind sticky bar */
  body.has-mobile-booking-bar {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .trek-hero-container {
    padding: 1.5rem 1rem;
    min-height: 350px;
  }

  .trek-hero-title {
    font-size: 1.75rem;
  }

  .trek-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .trek-hero-stat {
    padding: 0.625rem;
  }

  .trek-content-container {
    padding: 0 0.75rem;
  }

  .trek-navigation-container {
    padding: 0 0.75rem;
  }

  .trek-nav-links {
    gap: 0;
  }

  .trek-nav-link {
    padding: 1rem 0.75rem;
  }

  .trek-section-title {
    font-size: 1.125rem;
  }

  .trek-details-grid {
    padding: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trek-gallery-masonry {
    column-count: 1;
  }

  .trek-mobile-booking-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
  }

  .trek-mobile-booking-price {
    text-align: center;
  }

  .trek-mobile-booking-actions {
    width: 100%;
  }

  .trek-mobile-booking-btn {
    flex: 1;
    justify-content: center;
  }
}

/* Review Form Styles */
.trek-review-form-wrapper {
  margin-top: 60px;
  padding: 40px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.trek-review-form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #181411;
  margin: 0 0 8px 0;
}

.trek-review-form-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0 0 32px 0;
}

.trek-review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.trek-review-form-field {
  margin-bottom: 24px;
}

.trek-review-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

.trek-review-form-input,
.trek-review-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  color: #181411;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.2s;
}

.trek-review-form-input:focus,
.trek-review-form-textarea:focus {
  outline: none;
  border-color: #f47b25;
  box-shadow: 0 0 0 3px rgba(244, 123, 37, 0.1);
}

.trek-review-form-input::placeholder,
.trek-review-form-textarea::placeholder {
  color: #94a3b8;
}

.trek-review-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Star Rating Input */
.trek-review-form-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
}

.trek-review-form-rating input[type="radio"] {
  display: none;
}

.trek-review-form-star {
  cursor: pointer;
  transition: all 0.2s;
}

.trek-review-form-star svg {
  font-size: 32px;
  color: #cbd5e1;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
}

.trek-review-form-star:hover svg,
.trek-review-form-star:hover~.trek-review-form-star svg {
  color: #f47b25;
}

.trek-review-form-rating input[type="radio"]:checked~label svg {
  color: #f47b25;
}

/* Submit Button */
.trek-review-form-actions {
  margin-top: 32px;
}

.trek-review-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: #f47b25;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.trek-review-form-submit:hover {
  background: #e06815;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 123, 37, 0.3);
}

.trek-review-form-submit .material-symbols-outlined {
  font-size: 20px;
}

/* Form Message */
.trek-review-form-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.trek-review-form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.trek-review-form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Responsive */
@media (max-width: 768px) {
  .trek-review-form-wrapper {
    padding: 24px;
  }

  .trek-review-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trek-review-form-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Reviews Carousel
   ========================================================================== */

.trek-reviews-carousel-wrapper {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
  padding: 0;
}

.trek-reviews-carousel {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .trek-reviews-carousel {
    padding: 0;
    gap: 1rem;
  }
}

.trek-reviews-carousel .trek-review-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  max-width: 100%;
  scroll-snap-stop: always;
}

@media (min-width: 769px) {
  .trek-reviews-carousel .trek-review-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
    max-width: calc((100% - 1.5rem) / 2);
    scroll-snap-align: start;
  }
}

/* Carousel Navigation Buttons */
.trek-reviews-carousel-prev,
.trek-reviews-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e6dfdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

.trek-reviews-carousel-prev {
  left: 0;
}

.trek-reviews-carousel-next {
  right: 0;
}

@media (max-width: 768px) {

  .trek-reviews-carousel-prev,
  .trek-reviews-carousel-next {
    width: 40px;
    height: 40px;
  }

  .trek-reviews-carousel-prev {
    left: 0;
  }

  .trek-reviews-carousel-next {
    right: 0;
  }
}

.trek-reviews-carousel-prev:hover,
.trek-reviews-carousel-next:hover {
  background: #f47b25;
  border-color: #f47b25;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.trek-reviews-carousel-prev .material-symbols-outlined,
.trek-reviews-carousel-next .material-symbols-outlined {
  font-size: 28px;
  color: #f47b25;
  transition: color 0.2s;
}

.trek-reviews-carousel-prev:hover .material-symbols-outlined,
.trek-reviews-carousel-next:hover .material-symbols-outlined {
  color: white;
}

/* Carousel Dots */
.trek-reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.trek-reviews-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.trek-reviews-carousel-dot.active {
  background: #f47b25;
  width: 32px;
  border-radius: 5px;
}

.trek-reviews-carousel-dot:hover {
  background: #f47b25;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {

  .trek-reviews-carousel-prev,
  .trek-reviews-carousel-next {
    width: 40px;
    height: 40px;
  }

  .trek-reviews-carousel-prev {
    left: -12px;
  }

  .trek-reviews-carousel-next {
    right: -12px;
  }

  .trek-reviews-carousel-prev .material-symbols-outlined,
  .trek-reviews-carousel-next .material-symbols-outlined {
    font-size: 24px;
  }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.trek-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trek-faq-item {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e6dfdb;
  overflow: hidden;
  transition: all 0.3s;
}

.trek-faq-item[open] {
  box-shadow: 0 0 0 1px rgba(244, 123, 37, 0.3);
}

.trek-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: #181411;
  transition: background 0.2s;
}

.trek-faq-question::-webkit-details-marker {
  display: none;
}

.trek-faq-question:hover {
  background: rgba(244, 123, 37, 0.05);
}

.trek-faq-question-text {
  flex: 1;
  padding-right: 1rem;
}

.trek-faq-toggle {
  color: white;
  transition: all 0.3s;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.trek-faq-toggle-up {
  display: none;
}

.trek-faq-item[open] .trek-faq-toggle-down {
  display: none;
}

.trek-faq-item[open] .trek-faq-toggle-up {
  display: inline-block;
}

.trek-faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #5a4a3f;
  line-height: 1.75;
  border-top: 1px solid rgba(230, 223, 219, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(0.9375rem, 2vw, 1rem);
}

.trek-faq-answer p {
  margin: 0.75rem 0 0 0;
}

/* ==========================================================================
   Similar Treks Section
   ========================================================================== */

.trek-similar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trek-similar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trek-similar-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid #e6dfdb;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.trek-similar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #f47b25;
}

.trek-similar-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.trek-similar-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.trek-similar-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 700;
  color: #181411;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trek-similar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: #8a7260;
}

.trek-similar-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trek-similar-meta-item .material-symbols-outlined {
  font-size: 1rem;
  color: #f47b25;
}

.trek-similar-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #e6dfdb;
}

.trek-similar-price-label {
  font-size: 0.75rem;
  color: #8a7260;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trek-similar-price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #f47b25;
}

.trek-similar-price-per {
  font-size: 0.875rem;
  color: #8a7260;
}

/* ==========================================================================
   Wishlist Button
   ========================================================================== */

.trek-btn-wishlist {
  border: 1px solid #e6dfdb;
  color: #8a7260;
  background: white;
}

.trek-btn-wishlist .fa-heart {
  transition: all 0.2s;
}

.trek-btn-wishlist.in-wishlist {
  border-color: #dc2626;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.05);
}

.trek-btn-wishlist.in-wishlist .fa-heart {
  color: #dc2626;
}

.trek-btn-wishlist:hover {
  background: rgba(244, 123, 37, 0.05);
  border-color: #f47b25;
  color: #f47b25;
}

.trek-btn-wishlist.in-wishlist:hover {
  background: rgba(220, 38, 38, 0.1);
}

/* Toast Animation */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.trek-breadcrumbs {
  padding: 1rem 0;
  margin-bottom: 0;
}

.trek-breadcrumbs-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.trek-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trek-breadcrumb-item a {
  color: #8a7260;
  text-decoration: none;
  transition: color 0.2s;
}

.trek-breadcrumb-item a:hover {
  color: #f47b25;
}

.trek-breadcrumb-current {
  color: #181411;
  font-weight: 600;
}

.trek-breadcrumb-separator {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .trek-breadcrumbs-list {
    padding: 0 1rem;
    font-size: 0.8125rem;
  }
}

/* ==========================================================================
   Group Departures Section
   ========================================================================== */

#group-departures .trek-section-header {
  margin-bottom: 0.5rem;
}

#group-departures .trek-section-title {
  display: inline-block;
  margin: 0;
}

.trek-section-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
  margin: 0.5rem 0 0 0;
  border-radius: 2px;
}

.trek-section-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem 0 1.5rem 0;
}

.trek-departures-table-wrapper {
  background: white;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.trek-departures-table {
  width: 100%;
  border-collapse: collapse;
}

.trek-departures-table thead {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.trek-departures-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

.trek-departures-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s;
}

.trek-departures-table tbody tr:last-child {
  border-bottom: none;
}

.trek-departures-table tbody tr:hover {
  background: #f9fafb;
}

.trek-departures-table td {
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
}

.trek-departure-name {
  font-size: 1rem;
  color: #181411;
}

.trek-departure-name strong {
  font-weight: 600;
}

.trek-departure-date {
  font-size: 0.9375rem;
  color: #5a4a3f;
  white-space: nowrap;
}

.trek-departure-availability {
  min-width: 200px;
}

.availability-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.availability-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.availability-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.availability-fill.available {
  background: #10b981;
}

.availability-fill.filling {
  background: #f59e0b;
}

.availability-fill.last-spots {
  background: #ef4444;
}

.availability-fill.full {
  background: #6b7280;
}

.availability-label {
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.availability-label.available {
  color: #10b981;
}

.availability-label.filling {
  color: #f59e0b;
}

.availability-label.last-spots {
  color: #ef4444;
}

.availability-label.full {
  color: #6b7280;
}

.trek-departure-action {
  text-align: right;
}

.trek-departure-btn {
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}

.trek-departure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 123, 37, 0.3);
  color: white;
}

.trek-departure-btn-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.trek-departure-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trek-departures-table-wrapper {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .trek-departures-table,
  .trek-departures-table thead,
  .trek-departures-table tbody,
  .trek-departures-table tr,
  .trek-departures-table td {
    display: block;
  }

  .trek-departures-table thead {
    display: none;
  }

  .trek-departures-table tbody tr {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .trek-departures-table tbody tr:hover {
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .trek-departures-table td {
    padding: 0;
    border: none;
  }

  .trek-departure-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
  }

  .trek-departure-date {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .trek-departure-date::before {
    content: "📅";
    font-size: 1.125rem;
  }

  .trek-departure-availability {
    min-width: auto;
    margin-bottom: 1.25rem;
  }

  .availability-bar-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .availability-bar {
    width: 100%;
    height: 10px;
  }

  .availability-label {
    text-align: center;
    font-size: 0.9375rem;
  }

  .trek-departure-action {
    text-align: center;
    padding-top: 0.5rem;
  }

  .trek-departure-btn {
    width: 100%;
    display: block;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* ==========================================================================
   Social Share
   ========================================================================== */

.trek-social-share {
  background: #f5f2f0;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
}

.trek-social-share-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #181411;
}

.trek-social-share-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.trek-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  color: white;
}

.trek-social-btn i {
  font-size: 1.125rem;
}

.trek-social-facebook {
  background: #1877f2;
}

.trek-social-facebook:hover {
  background: #0c63d4;
}

.trek-social-twitter {
  background: #1da1f2;
}

.trek-social-twitter:hover {
  background: #0d8bd9;
}

.trek-social-whatsapp {
  background: #25d366;
}

.trek-social-whatsapp:hover {
  background: #1ebe57;
}

.trek-social-linkedin {
  background: #0077b5;
}

.trek-social-linkedin:hover {
  background: #006399;
}

.trek-social-email {
  background: #6b7280;
}

.trek-social-email:hover {
  background: #4b5563;
}

.trek-social-copy {
  background: #f47b25;
}

.trek-social-copy:hover {
  background: #e06815;
}

.trek-social-copy-message {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trek-social-share {
    padding: 1.5rem;
  }

  .trek-social-share-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Loading Skeleton
   ========================================================================== */

.trek-skeleton {
  animation: skeleton-loading 1.5s infinite ease-in-out;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 0.5rem;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.trek-skeleton-hero {
  width: 100%;
  height: 520px;
  border-radius: 1rem;
}

.trek-skeleton-title {
  width: 60%;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.trek-skeleton-text {
  width: 100%;
  height: 1rem;
  margin-bottom: 0.5rem;
}

.trek-skeleton-text:last-child {
  width: 80%;
}

.trek-skeleton-card {
  width: 100%;
  height: 300px;
  border-radius: 1rem;
}

/* Gallery skeleton */
.trek-skeleton-loading {
  position: relative;
  overflow: hidden;
}

.trek-skeleton-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite ease-in-out;
  z-index: 1;
}

.trek-skeleton-loading img {
  opacity: 0;
  transition: opacity 0.3s;
}

/* Hide content while loading */
.trek-loading .trek-content {
  opacity: 0;
}

.trek-loaded .trek-skeleton {
  display: none;
}

.trek-loaded .trek-content {
  opacity: 1;
  animation: fadeIn 0.3s ease-in;
}

.trek-loaded .trek-skeleton-loading::before {
  display: none;
}

.trek-loaded .trek-skeleton-loading img {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* ==========================================================================
   Lazy Loading States
   ========================================================================== */

img[data-src] {
  background: linear-gradient(90deg, #f5f2f0 25%, #e5e7eb 50%, #f5f2f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

img.loading {
  opacity: 0.6;
}

img.loaded {
  animation: fadeIn 0.3s ease-in;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ==========================================================================
   Image Lightbox
   ========================================================================== */

.trek-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.trek-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.trek-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.trek-lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.trek-lightbox-counter {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}

.trek-lightbox-close,
.trek-lightbox-prev,
.trek-lightbox-next {
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10001;
}

.trek-lightbox-close:hover,
.trek-lightbox-prev:hover,
.trek-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.trek-lightbox-close {
  top: 2rem;
  right: 2rem;
}

.trek-lightbox-prev {
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.trek-lightbox-next {
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.trek-lightbox-prev:hover,
.trek-lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .trek-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .trek-lightbox-prev,
  .trek-lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
  }

  .trek-lightbox-prev {
    left: 1rem;
  }

  .trek-lightbox-next {
    right: 1rem;
  }
}

/* Gallery cursor */
.trek-gallery-item {
  opacity: 0;
  animation: galleryItemFadeIn 0.6s ease-out forwards;
}

.trek-gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.trek-gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.trek-gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.trek-gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.trek-gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.trek-gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.trek-gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}

.trek-gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

.trek-gallery-item:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes galleryItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

.trek-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f47b25;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244, 123, 37, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.3s ease;
  z-index: 1000;
}

.trek-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.trek-back-to-top:hover {
  background: #e06a1a;
  transform: translateY(-0.25rem);
  box-shadow: 0 6px 16px rgba(244, 123, 37, 0.4);
}

.trek-back-to-top .material-symbols-outlined {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .trek-back-to-top {
    bottom: 5rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .trek-back-to-top .material-symbols-outlined {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Reading Progress Bar
   ========================================================================== */

.trek-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.trek-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f47b25, #ff9a56);
  width: 0%;
  transition: width 0.1s ease;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.trek-faq-item {
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: white;
  border: 1px solid #f5f2f0;
}

.trek-faq-item:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.trek-faq-item[open] {
  background: #f9fafb;
  border-color: #f47b25;
}

.trek-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: #181411;
  cursor: pointer;
  list-style: none;
}

.trek-faq-question::-webkit-details-marker {
  display: none;
}

.trek-faq-question-text {
  flex: 1;
}

.trek-faq-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f47b25;
  border-radius: 50%;
  transition: all 0.3s;
  color: white;
}

.trek-faq-toggle i {
  font-size: 0.875rem;
  color: white;
}

.trek-faq-toggle-up {
  display: none;
}

.trek-faq-item[open] .trek-faq-toggle {
  background: #f47b25;
  color: white;
}

.trek-faq-item[open] .trek-faq-toggle-down {
  display: none;
}

.trek-faq-item[open] .trek-faq-toggle-up {
  display: flex;
}

.trek-faq-answer {
  padding-top: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.trek-faq-answer p {
  margin: 0;
}

/* ==========================================================================
   Similar Treks - Update for lazy loading
   ========================================================================== */

.trek-similar-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f2f0;
}

.trek-similar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.trek-similar-card:hover .trek-similar-img {
  transform: scale(1.1);
}


/* ==========================================================================
   Itinerary Timeline - Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .trek-itinerary-timeline .trek-itinerary-summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    padding: 1rem 0 0 0;
  }

  .trek-itinerary-timeline-marker {
    width: 2rem;
  }

  .trek-itinerary-timeline-icon {
    width: 2rem;
    height: 2rem;
  }

  .trek-itinerary-timeline-icon .material-symbols-outlined {
    font-size: 1rem;
  }

  .trek-itinerary-timeline-dot {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 2px;
  }

  .trek-itinerary-day-expandable[open] .trek-itinerary-timeline-dot {
    border-width: 2px;
  }

  .trek-itinerary-timeline-line {
    top: 2rem;
  }

  .trek-itinerary-day-content {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .trek-itinerary-day-label {
    font-size: 0.875rem;
  }

  .trek-itinerary-day-title {
    font-size: 0.9375rem;
  }

  .trek-itinerary-toggle {
    font-size: 1.25rem;
  }

  .trek-itinerary-content {
    margin-left: 2.75rem;
    padding: 0 0 1rem;
  }

  .trek-itinerary-description {
    font-size: 0.875rem;
  }

  .trek-itinerary-meta {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }
}


/* ==========================================================================
   Enhanced Similar Treks Section
   ========================================================================== */

.trek-similar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.trek-similar-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #f47b25;
  border-radius: 0.5rem;
  color: #f47b25;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s;
}

.trek-similar-view-all:hover {
  background: #f47b25;
  color: white;
  transform: translateX(4px);
}

.trek-similar-view-all .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.trek-similar-view-all:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.trek-similar-card {
  position: relative;
}

.trek-similar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 123, 37, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 1rem;
  pointer-events: none;
}

.trek-similar-card:hover::before {
  opacity: 1;
}

.trek-similar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trek-similar-card:hover .trek-similar-img {
  transform: scale(1.1);
}

.trek-similar-image {
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .trek-similar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trek-similar-view-all {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Enhanced Include/Exclude Section
   ========================================================================== */

.trek-included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trek-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trek-included-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #e6dfdb;
  transition: all 0.3s;
}

.trek-included-card.included {
  border-color: #16a34a;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.02) 0%, white 100%);
}

.trek-included-card.excluded {
  border-color: #dc2626;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, white 100%);
}

.trek-included-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #181411;
}

.trek-included-card.included .trek-included-title .material-symbols-outlined {
  color: #16a34a;
  font-size: 1.75rem;
}

.trek-included-card.excluded .trek-included-title .material-symbols-outlined {
  color: #dc2626;
  font-size: 1.75rem;
}

.trek-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trek-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5a4a3f;
}

.trek-included-card.included .trek-included-item .material-symbols-outlined {
  color: #16a34a;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.trek-included-card.excluded .trek-included-item .material-symbols-outlined {
  color: #dc2626;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ==========================================================================
   Enhanced Group Departures Section
   ========================================================================== */

.trek-departures-table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid #e6dfdb;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trek-departures-table {
  width: 100%;
  border-collapse: collapse;
}

.trek-departures-table thead {
  background: linear-gradient(135deg, #f47b25 0%, #ff9a56 100%);
  color: white;
}

.trek-departures-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
}

.trek-departures-table tbody tr {
  border-bottom: 1px solid #f5f2f0;
  transition: background 0.2s;
}

.trek-departures-table tbody tr:last-child {
  border-bottom: none;
}

.trek-departures-table tbody tr:hover {
  background: rgba(244, 123, 37, 0.03);
}

.trek-departures-table td {
  padding: 1.5rem 1.5rem;
  font-size: 1rem;
}

.trek-departure-name strong {
  color: #181411;
  font-weight: 700;
  font-size: 1.0625rem;
}

.trek-departure-date {
  color: #5a4a3f;
  font-weight: 500;
  font-size: 1rem;
}

.availability-bar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.availability-bar {
  display: none;
}

.availability-label {
  font-size: 0.9375rem;
  font-weight: 700;
}

.availability-label.available {
  color: #16a34a;
}

.availability-label.filling {
  color: #f59e0b;
}

.availability-label.last-spots {
  color: #dc2626;
}

.availability-label.full {
  color: #6b7280;
}

.trek-departure-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #f47b25 0%, #ff6b35 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.trek-departure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(244, 123, 37, 0.4);
  color: white;
}

.trek-departure-btn-disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

.trek-departure-btn-disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Mobile Responsive for Departures Table */
@media (max-width: 768px) {
  .trek-departures-table-wrapper {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .trek-departures-table,
  .trek-departures-table thead,
  .trek-departures-table tbody,
  .trek-departures-table tr,
  .trek-departures-table td,
  .trek-departures-table th {
    display: block;
  }

  .trek-departures-table thead {
    display: none;
  }

  .trek-departures-table tbody tr {
    background: white;
    border: 1px solid #e6dfdb;
    border-radius: 1rem;
    margin-bottom: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .trek-departures-table td {
    padding: 0.875rem 0;
    border-bottom: 1px solid #f5f2f0;
    position: relative;
    padding-left: 45%;
  }

  .trek-departures-table td:last-child {
    border-bottom: none;
    padding-left: 0;
  }

  .trek-departures-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 40%;
    padding-right: 10px;
    font-weight: 700;
    color: #8a7260;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .trek-departure-action::before {
    display: none;
  }

  .trek-departure-btn {
    width: 100%;
    padding: 1rem;
  }

  .trek-departure-name strong {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Enhanced Overview Section
   ========================================================================== */

.trek-overview-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a4a3f;
  margin-bottom: 2rem;
}

.trek-overview-content p {
  margin-bottom: 1rem;
}

.trek-overview-content p:last-child {
  margin-bottom: 0;
}

.trek-details-card {
  background: linear-gradient(135deg, rgba(244, 123, 37, 0.03) 0%, white 100%);
  border: 2px solid #f47b25;
  border-radius: 1rem;
  margin-top: 2rem;
}

.trek-details-header {
  margin-bottom: 1.5rem;
}

.trek-details-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #181411;
  margin: 0;
}

.trek-details-title .material-symbols-outlined {
  color: #f47b25;
  font-size: 2rem;
}

.trek-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
}

@media (min-width: 640px) {
  .trek-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trek-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trek-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trek-detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a7260;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trek-detail-label .material-symbols-outlined {
  color: #f47b25;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.trek-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: #181411;
  margin: 0;
  margin-left: 1.625rem;
  /* Align with label text (icon size + gap) */
  line-height: 1.3;
}

@media (max-width: 640px) {
  .trek-details-card {
    margin-top: 1.5rem;
  }

  .trek-details-title {
    font-size: 1.25rem;
  }

  .trek-details-grid {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .trek-detail-value {
    font-size: 0.9375rem;
    margin-left: 1.625rem;
  }
}

/* ==========================================================================
   View All Reviews Button - Mobile Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .trek-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trek-view-all-reviews {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .trek-view-all-reviews {
    font-size: 0.8125rem;
    padding: 0.625rem 0.875rem;
  }
}
