/*!************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/@wordpress/scripts/node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./resources/scss/single-tour.scss ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Single Tour Template Styles
 * 
 * Optimized SCSS architecture with eliminated duplication and centralized utilities.
 * Modern 2-column layout with sticky navigation and comprehensive tour components.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/**
 * Theme Variables
 * 
 * All custom CSS properties removed in favor of theme.json tokens.
 * Use var(--wp--preset--color--*) and var(--wp--preset--spacing--*) instead.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;*/
  line-height: 1.6;
  color: var(--wp--preset--color--primary);
  background: var(--background);
  font-weight: 400;
  /*letter-spacing: -0.01em;*/
}

section {
  padding: 2rem 0;
}
section a {
  color: var(--wp--preset--color--primary);
}

.logo {
  padding-top: 0.3rem;
}
.logo .is-vertical {
  gap: 0;
}
.logo div:last-child {
  margin-left: auto;
}

.branding-group {
  gap: 0;
  padding: 1rem 0;
}

/*  Tour Intro */
.tourIntro {
  background: var(--primary-gradient);
  color: var(--white);
  padding: clamp(var(--space-lg), 4vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: clamp(var(--space-lg), 4vw, var(--space-2xl));
  position: relative;
}
.tourIntro h3 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
}
.tourIntro .incTour {
  display: flex;
  justify-content: center;
  gap: clamp(var(--space-sm), 2vw, var(--space-md));
  flex-wrap: wrap;
  list-style: none;
  margin-top: var(--space-lg);
}
.tourIntro .incTour li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--space-xl);
  font-size: clamp(var(--text-xs), 1.5vw, var(--text-sm));
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-intro h2 {
  font-weight: normal;
}

.adventure-grid ul {
  gap: 0.5rem;
}

.entry-content {
  /*max-width: 1400px;*/
  margin: 0 auto;
  padding: clamp(var(--space-md), 3vw, var(--space-xl));
}
.entry-content h2 {
  font-weight: lighter;
}

.why-us {
  color: var(--wp--preset--color--sand);
}
.why-us h2 {
  font-weight: normal;
}

/* Content Column */
dl {
  min-width: 0;
}

/* Content Sections */
dt.tourPane {
  background: var(--sand);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  /*margin: var(--space-xl) 0 var(--space-sm) 0;*/
  border-left: 3px solid var(--primary);
  font-weight: 500;
}

dt.tourPane h3 {
  color: var(--primary);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  /*letter-spacing: -0.01em;*/
}

dd.tourPane {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--stone);
}

dd.tourPane:last-of-type {
  border-bottom: none;
}

/* Overview */
blockquote {
  background: var(--sand);
  padding: var(--space-lg);
  border-left: 3px solid var(--secondary);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  font-style: italic;
  position: relative;
  color: var(--foreground);
  overflow: hidden;
}

blockquote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--secondary);
  position: absolute;
  top: -0.25rem;
  left: var(--space-md);
  opacity: 0.4;
  font-weight: 700;
  z-index: 1;
}

blockquote p {
  position: relative;
  z-index: 2;
  color: var(--foreground);
  font-weight: 500;
}

/* Text content clearfix for floating images */
.overtext::after,
.dayp::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure proper text flow around images */
.overtext {
  width: 100%;
  margin: var(--space-md) 0;
  color: var(--foreground);
  overflow: hidden; /* Create block formatting context */
}

.overtext p {
  color: var(--foreground);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.overtext + ul {
  list-style: none;
  padding: 0;
}

.overtext + ul li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--stone);
  padding-left: var(--space-xl);
  position: relative;
}

.overtext + ul li::before {
  content: "✓";
  color: var(--light-green);
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.left,
.right {
  margin: var(--space-md) auto;
  max-width: 100%;
  display: block;
  shape-outside: none;
}

@container (min-width: 601px) {
  .left {
    float: left;
    margin: 0 var(--space-lg) var(--space-md) 0;
    max-width: min(250px, 40%);
    shape-outside: margin-box;
  }
  .right {
    float: right;
    margin: 0 0 var(--space-md) var(--space-lg);
    max-width: min(250px, 40%);
    shape-outside: margin-box;
  }
}
.moreHide {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--foreground);
  line-height: 1.6;
}

/* Itinerary */
h4 {
  /*background: var(--primary-gradient);*/
  color: var(--primary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  /*margin: var(--space-xl) 0 var(--space-md) 0;*/
  font-size: clamp(var(--text-base), 2.5vw, var(--text-3xl));
  cursor: pointer;
  transition: all 0.2s ease;
  /*letter-spacing: -0.01em;*/
}

h4 strong {
  display: block;
  font-size: var(--text-md);
  opacity: 0.8;
}

.dayp {
  background: var(--sand);
  padding-left: 1rem;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--light-green);
  color: var(--foreground);
}

.dayp p {
  margin-bottom: var(--space-md);
  color: var(--foreground);
  line-height: 1.7;
}

figcaption {
  font-size: var(--text-sm);
  color: var(--foreground);
  opacity: 0.8;
  margin-top: var(--space-sm);
  font-style: italic;
  text-align: center;
}

.more {
  display: none;
}

/* Utilities */
.clear {
  clear: both;
}

.required {
  color: var(--secondary);
}

/* Focus States */
button:focus,
input:focus {
  outline: 2px solid var(--light-green);
  outline-offset: 2px;
}

/* Container Queries */
.incTour {
  flex-direction: column;
  align-items: center;
}
.incTour li {
  text-align: center;
  min-width: 200px;
}

#priceIncaTrail {
  grid-template-columns: 1fr;
}

.button {
  width: 2rem;
  height: 2rem;
  font-size: var(--text-base);
}

#paxnum, #stunum, #pornum, #bagnum, #polnum, #tennum {
  margin: 0 var(--space-sm);
  min-width: 2rem;
}

@container (min-width: 601px) {
  .incTour {
    flex-direction: row;
    justify-content: center;
    gap: clamp(var(--space-sm), 2vw, var(--space-md));
    flex-wrap: wrap;
  }
  .incTour li {
    text-align: left;
    min-width: auto;
  }
}
/* Hide/Show Logic */
.toreveal:checked + .hide {
  display: block !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --stone: #808080;
    --sand: #f0f0f0;
    --foreground: #000000;
  }
  dt.tourPane,
  .optioncell,
  .dayp {
    border-left-width: 4px;
  }
  blockquote,
  #exclusions,
  #studentDiscount,
  .itemexp {
    border-width: 2px;
    border-style: solid;
  }
}
/* Consolidated Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .wp-block-cover::before {
    animation: none;
  }
  .tour-book-button::after,
  .tour-book-button::before {
    display: none;
  }
  .tour-info-bar,
  .tour-info-container,
  .tour-info-item,
  .tour-book-button,
  .tour-info-icon,
  .tour-meta-info svg,
  .tour-social-links a {
    transition: none;
  }
}
.wp-block-columns {
  flex-wrap: wrap;
}

.is-layout-flex .wp-block-column {
  margin: auto;
}

@media (min-width: 769px) {
  .wp-block-columns {
    flex-wrap: nowrap;
  }
  .wp-block-column {
    margin-bottom: 0;
  }
}
/* Pulse Animation for Book Button */
.tour-book-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(250, 240, 230, 0.2);
  transform: translate(-50%, -50%);
  animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}
/* Social Share with Enhanced Contrast */
.tour-social-links {
  animation: socialFloat 3s ease-in-out infinite;
}

@keyframes socialFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.tour-social-links a {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  color: #C9C9C7;
}

.tour-social-links a:hover {
  transform: translateY(-5px) rotate(10deg) scale(1.2);
  background: #2A5D45 !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(42, 93, 69, 0.5);
}

/* Meta info enhanced contrast */
.tour-meta-info {
  gap: 1rem;
}

.tour-meta-info p {
  color: #FFFFFF;
  /*text-shadow: 1px 1px 2px rgba(26, 60, 44, 0.8);*/
}

.tour-meta-info .has-emerald-600-color {
  color: var(--wp--preset--color--dark-green) !important;
  /*text-shadow: 1px 1px 2px rgba(26, 60, 44, 0.8);*/
}

/* Mobile-first Responsive Enhancements */
.wp-block-cover.alignfull {
  min-height: 70vh;
}

.tour-info-grid {
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.alltour {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .alltour {
    display: grid;
  }
}
.alltour ul {
  padding: 0 1rem 0 1.3rem;
}

@media (min-width: 768px) {
  /* Main Container */
  /* Layout Grid */
  .alltour {
    grid-template-columns: 8fr 4fr;
    gap: clamp(var(--space-lg), 4vw, var(--space-2xl));
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin: auto;
    margin-bottom: clamp(var(--space-lg), 4vw, var(--space-2xl));
    max-width: 1200px;
  }
}
@media (min-width: 480px) {
  .wp-block-cover.alignfull {
    min-height: 80vh;
  }
  .wp-block-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  .tour-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .tour-info-item:hover {
    transform: translateY(-4px);
  }
}
@media (min-width: 768px) {
  .wp-block-cover.alignfull {
    min-height: 90vh;
  }
  .wp-block-post-title {
    padding: 0.3rem;
  }
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-cover.alignfull {
    min-height: 100vh;
  }
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
/* High Performance GPU Acceleration */
.tour-info-item,
.tour-book-button,
.activity-badge,
.tour-social-links a {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Focus states for accessibility */
.tour-book-button .wp-block-button__link:focus {
  outline: 3px solid #F5B041;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(245, 176, 65, 0.3), 0 20px 40px rgba(42, 93, 69, 0.5);
}

.tour-social-links a:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
  background: #2A5D45 !important;
  color: #FFFFFF !important;
}

.activity-badge:focus {
  outline: 2px solid #F5B041;
  outline-offset: 2px;
  background-color: rgba(247, 245, 240, 0.95) !important;
}

/* Mobile-first Responsive Design (consolidated) */
.tour-info-bar {
  position: relative !important;
  top: 0 !important;
}

.tour-info-item {
  min-height: 80px;
  padding: 0.5rem;
}

.tour-info-pricing {
  min-height: 100px;
}

.tour-info-icon-wrapper {
  margin-bottom: 0.5rem;
}

.tour-info-icon {
  width: 24px;
  height: 24px;
}

.tour-meta-info {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.tour-social-share {
  align-self: stretch;
  justify-content: center;
}

@media (min-width: 480px) {
  .tour-info-item {
    min-height: 100px;
    padding: 0.75rem;
  }
  .tour-info-pricing {
    grid-column: 1/-1;
    min-height: 120px;
  }
}
@media (min-width: 768px) {
  .tour-meta-info {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .tour-social-share {
    align-self: auto;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .tour-info-bar {
    position: sticky !important;
    top: var(--space-md) !important;
  }
  .tour-info-item {
    min-height: 120px;
    padding: 1rem;
  }
  .tour-info-item p {
    color: var(--wp--preset--color--stone);
  }
  .tour-info-icon {
    width: 32px;
    height: 32px;
  }
  .tour-info-icon-wrapper {
    margin-bottom: 1rem;
  }
}
/* High contrast mode support */
@media (prefers-contrast: high) {
  .tour-info-container {
    border-width: 2px;
    border-color: #000;
  }
  .tour-info-item {
    border: 1px solid #000;
  }
  .tour-additional-info {
    border-top-width: 2px;
    border-top-color: #000;
  }
}
/* Focus styles for accessibility */
.tour-book-button .wp-block-button__link:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.tour-social-links a:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

footer {
  color: var(--wp--preset--color--white);
}

@media (min-width: 1000px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block !important;
  }
}
@media (min-width: 600px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: flex;
  }
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
}
/**
 * Typography Utilities
 * 
 * Centralized typography mixins and utilities using theme.json design tokens.
 * Eliminates duplicate font declarations across tour modules.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.heading-primary {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  color: var(--wp--preset--color--primary);
  line-height: var(--wp--custom--typography--line-height--large);
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
}

.heading-large {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  color: var(--wp--preset--color--primary);
  line-height: var(--wp--custom--typography--line-height--large);
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  font-size: var(--wp--preset--font-size--x-large);
}
@media (min-width: 768px) {
  .heading-large {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}

.heading-medium {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  color: var(--wp--preset--color--primary);
  line-height: var(--wp--custom--typography--line-height--large);
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
}
@media (min-width: 768px) {
  .heading-medium {
    font-size: var(--wp--preset--font-size--x-large);
  }
}

.heading-small {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  color: var(--wp--preset--color--primary);
  line-height: var(--wp--custom--typography--line-height--large);
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--typography--font-weight--medium);
}

.body-text {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--wp--custom--typography--line-height--medium);
  color: var(--wp--preset--color--foreground);
}

.body-large {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--wp--custom--typography--line-height--medium);
  color: var(--wp--preset--color--foreground);
  font-size: var(--wp--preset--font-size--medium);
}

.body-small {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--wp--custom--typography--line-height--medium);
  color: var(--wp--preset--color--foreground);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--stone);
}

.body-tiny {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  line-height: var(--wp--custom--typography--line-height--medium);
  color: var(--wp--preset--color--foreground);
  font-size: var(--wp--preset--font-size--tiny);
  color: var(--wp--preset--color--stone);
}

.accent-text {
  font-family: var(--wp--preset--font-family--accent);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  letter-spacing: var(--wp--custom--typography--letter-spacing--accent);
}

.price-display {
  font-family: var(--wp--preset--font-family--accent);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  letter-spacing: var(--wp--custom--typography--letter-spacing--accent);
  font-size: var(--wp--preset--font-size--xx-large);
  color: var(--wp--preset--color--secondary-dark);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-family: var(--wp--preset--font-family--accent);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  letter-spacing: var(--wp--custom--typography--letter-spacing--accent);
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
}

.tight-spacing {
  letter-spacing: -0.02em;
}

.loose-spacing {
  letter-spacing: 0.1em;
}

.no-margin {
  margin: 0;
}

.margin-bottom-sm {
  margin-bottom: var(--wp--preset--spacing--sm);
}

.margin-bottom-md {
  margin-bottom: var(--wp--preset--spacing--md);
}

@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .text-left-desktop {
    text-align: left;
  }
}

.line-height-tight {
  line-height: var(--wp--custom--typography--line-height--small);
}

.line-height-normal {
  line-height: var(--wp--custom--typography--line-height--medium);
}

.line-height-loose {
  line-height: var(--wp--custom--typography--line-height--large);
}

/**
 * Header Base Styles
 * 
 * Common header foundation using theme.json tokens.
 * Shared styles for all header variants.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.site-header {
  z-index: 5;
  position: relative;
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--foreground);
}

#navbar {
  font-size: var(--wp--preset--font-size--small);
}

.logo .site-logo {
  width: 245px;
}
.logo .site-logo.is-style-rounded {
  border-radius: var(--wp--custom--effects--radius--medium);
}

.single-travel .wp-block-site-title a {
  color: var(--wp--preset--color--primary);
}

.wp-block-site-title a {
  font-weight: normal;
}
.site-title {
  font-family: var(--wp--preset--font-family--accent);
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.2;
  letter-spacing: var(--wp--custom--typography--letter-spacing--accent);
  text-transform: uppercase;
  margin: 0;
}

.site-tagline {
  color: var(--wp--preset--color--secondary);
  margin: 0;
}

.wp-block-navigation {
  margin-right: 2rem;
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.5;
}
.wp-block-navigation a {
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  transition: color var(--wp--custom--effects--transition--medium) ease;
}
.wp-block-navigation a:hover {
  color: var(--wp--preset--color--primary);
}

.alignwide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--sm);
  padding: var(--wp--preset--spacing--sm);
}

.header-button a {
  background: var(--wp--preset--color--secondary);
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .alignwide {
    text-align: center;
    gap: var(--wp--preset--spacing--xs);
  }
  .logo {
    order: 1;
  }
  .wp-block-navigation {
    order: 2;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .alignwide {
    padding: var(--wp--preset--spacing--md);
  }
  .site-logo {
    width: 200px;
  }
}
.site-header .wp-block-site-title a {
  color: var(--wp--preset--color--primary);
}
.site-header .wp-block-social-links .wp-social-link {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.site-header .wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}
.site-header .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

.breadcrumbs-nav {
  background: var(--wp--preset--color--sand);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
}
.breadcrumbs-nav .breadcrumbs {
  color: var(--wp--preset--color--foreground);
}
.breadcrumbs-nav .breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs-nav .breadcrumbs a:hover {
  color: var(--wp--preset--color--secondary);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: var(--wp--preset--color--background-dark);
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-header .wp-block-site-title a {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-header .site-tagline,
  .site-header .archive-subtitle {
    color: var(--wp--preset--color--stone);
  }
  .site-header .wp-block-navigation a {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-header .wp-block-navigation a:hover {
    color: var(--wp--preset--color--primary-dark);
  }
  .site-header .wp-block-social-links .wp-social-link {
    background-color: var(--wp--preset--color--primary-dark);
    color: var(--wp--preset--color--white);
  }
  .site-header .wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--wp--preset--color--foreground-dark);
    border-color: var(--wp--preset--color--foreground-dark);
  }
  .site-header .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--wp--preset--color--primary-dark);
    color: var(--wp--preset--color--white);
    border-color: var(--wp--preset--color--primary-dark);
  }
  .breadcrumbs-nav {
    background: var(--wp--preset--color--sand-dark);
  }
  .breadcrumbs-nav .breadcrumbs {
    color: var(--wp--preset--color--foreground-dark);
  }
  .breadcrumbs-nav .breadcrumbs a {
    color: var(--wp--preset--color--primary-dark);
  }
  .breadcrumbs-nav .breadcrumbs a:hover {
    color: var(--wp--preset--color--secondary-dark);
  }
}
/**
 * Tour Header Styles
 * 
 * Tour-specific header with booking elements using theme.json tokens.
 * Used by header-tour pattern.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: var(--wp--preset--color--stone);
}
@media (prefers-color-scheme: dark) {
  .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: var(--foreground);
  }
}

.wp-block-group.alignfull {
  position: relative;
  z-index: 3;
}
.wp-block-group.alignfull .site-tagline {
  color: var(--wp--preset--color--stone);
}
.wp-block-group.alignfull .site-tagline.has-stone-color {
  color: var(--wp--preset--color--stone);
}
.wp-block-group.alignfull .wp-block-navigation {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
}
.wp-block-group.alignfull .wp-block-separator {
  border-color: var(--wp--preset--color--stone);
  margin: 0 var(--wp--preset--spacing--sm);
}
.wp-block-group.alignfull .header-button .wp-block-button.is-style-fill .wp-block-button__link {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  padding: 0.55rem 1.2rem;
  margin-left: var(--wp--preset--spacing--sm);
  border-radius: var(--wp--custom--effects--radius--medium);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--medium);
  text-decoration: none;
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.wp-block-group.alignfull .header-button .wp-block-button.is-style-fill .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary);
  transform: translateY(-1px);
  box-shadow: var(--wp--custom--effects--shadow--small);
}

@media (max-width: 767px) {
  .header-button {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .header-button {
    display: inline-block !important;
  }
  .wp-block-group.alignfull {
    color: var(--wp--preset--color--background);
  }
}
@media (min-width: 768px) and (prefers-color-scheme: dark) {
  .wp-block-group.alignfull {
    color: var(--foreground);
  }
}
@media (min-width: 768px) {
  .wp-block-group.alignfull .alignwide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--wp--preset--spacing--md);
  }
  .wp-block-group.alignfull .wp-block-group:first-child {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--xs);
  }
  .wp-block-group.alignfull .wp-block-group:last-child {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--sm);
  }
}
.header-button .wp-block-button__link:focus {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}
.header-button .wp-block-button__link:active {
  transform: translateY(0);
}

/**
 * Dark Mode Base Styles
 * 
 * Global dark mode implementation using theme.json color tokens.
 * Contains universal styles used across all templates.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
@media (prefers-color-scheme: dark) {
  :root {
    --wp--preset--color--primary: var(--wp--preset--color--primary-dark);
    --wp--preset--color--background: var(--wp--preset--color--background-dark);
    --wp--preset--color--foreground: var(--wp--preset--color--foreground-dark);
    --wp--preset--color--sand: var(--wp--preset--color--sand-dark);
    --wp--preset--color--stone: var(--wp--preset--color--stone-dark);
    --wp--preset--color--white: var(--wp--preset--color--white-dark);
    --background: #1C1D19; /* Deep Charcoal */
    --foreground: #E8E6E0; /* Warm Light */
    --stone: #3A3B35; /* Dark Stone */
    --sand: #2F302B; /* Dark Sand */
    --warm-stone: #34352F; /* Dark Warm Stone */
    --white: #232420; /* Dark Card Background */
    --gold: goldenrod;
    /* Enhanced contrast for dark mode */
    --primary: #4A8B5C; /* Brighter Forest */
    --light-green: #7FA88C; /* Soft Green */
    --dark-green: #5FB371; /* Bright Moss */
    --secondary: #E6B885; /* Bright Gold */
    --light-gold: #F2D4A7; /* Light Gold */
    --tertiary: #A3C29A; /* Light Sage */
  }
  body {
    color: var(--foreground);
  }
  header .alignfull {
    color: var(--gold);
  }
  .site-footer {
    color: var(--tertiary);
  }
  .site-footer p {
    color: var(--tertiary);
  }
  .site-footer .has-text-color a {
    color: var(--tertiary);
  }
  .site-tagline {
    color: var(--tertiary);
  }
  h1 {
    color: var(--foreground);
  }
  h2, h3 {
    color: var(--wp--preset--color--secondary);
  }
  a, h2, h3 {
    color: var(--wp--preset--color--primary);
  }
  .logo {
    color: var(--foreground);
  }
  .logo .wp-block-site-title {
    color: var(--foreground);
  }
  .wp-block-site-title a {
    color: var(--tertiary);
  }
  .entry-content a {
    color: var(--wp--preset--color--light-orange);
  }
  .has-sand-background-color {
    background-color: var(--wp--preset--color--black) !important;
  }
  .has-background-background-color {
    background-color: var(--wp--preset--color--black) !important;
  }
  .has-background-color {
    color: var(--tertiary) !important;
  }
  .has-foreground-background-color {
    background-color: var(--wp--preset--color--black) !important;
  }
  input, textarea, select {
    background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--foreground);
    border-color: var(--wp--preset--color--stone);
  }
  .form-input::-moz-placeholder {
    color: var(--wp--preset--color--stone);
  }
  .form-input::placeholder {
    color: var(--wp--preset--color--stone);
  }
  .wp-block-button__link:hover {
    color: var(--wp--preset--color--foreground);
  }
  a {
    color: var(--wp--preset--color--primary);
  }
  a:hover {
    color: var(--wp--preset--color--secondary);
  }
  .price-text {
    padding: 0.1rem 0.4rem;
    color: var(--gold);
  }
  .detail-label {
    color: var(--secondary);
  }
  .stories h4 {
    color: var(--wp--preset--color--sand);
  }
}
.adventure-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-auto-flow: row;
  margin: 0;
  padding: 0;
  height: 100%;
}

.gallery-grid .gallery-item {
  display: block;
  height: 100%;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--wp--preset--color--light-green, #f8f9fa);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-grid .gallery-item:hover {
    filter: opacity(0.9);
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .gallery-grid .gallery-item:active {
    transform: scale(0.98);
  }
}

.gallery-grid .gallery-item img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: inline-block;
  border-radius: 12px;
  transition: none;
}

.tour-gallery-dynamic,
.adventure-gallery .wp-block-gallery {
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  gap: 1rem !important;
  grid-auto-flow: dense;
}

.tour-gallery-dynamic .wp-block-image,
.adventure-gallery .gallery-item {
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--wp--preset--color--light-green, #f8f9fa);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .tour-gallery-dynamic .wp-block-image:hover,
  .adventure-gallery .gallery-item:hover {
    filter: opacity(0.9);
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .tour-gallery-dynamic .wp-block-image:active,
  .adventure-gallery .gallery-item:active {
    transform: scale(0.98);
  }
}

.tour-gallery-dynamic .wp-block-image img,
.adventure-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 12px;
  transition: none;
}

.gallery-item-loading {
  background: linear-gradient(90deg, var(--wp--preset--color--light-green, #f8f9fa) 25%, var(--wp--preset--color--secondary, #e9ecef) 50%, var(--wp--preset--color--light-green, #f8f9fa) 75%);
  background-size: 200% 100%;
  animation: gallery-skeleton 1.5s infinite;
}
.gallery-item-loading img {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item-loading.loaded img {
  opacity: 1;
}

@keyframes gallery-skeleton {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@media (min-width: 600px) {
  .tour-gallery-dynamic,
  .adventure-gallery .wp-block-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 1.25rem !important;
    grid-auto-flow: dense;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: minmax(200px, auto);
    gap: 1.25rem;
    grid-auto-flow: dense;
  }
  .adventure-gallery .gallery-item {
    width: 100% !important;
    display: flex;
  }
  .adventure-gallery.wp-block-gallery .gallery-item-v {
    grid-row: span 2;
  }
  .adventure-gallery.wp-block-gallery .gallery-item-h {
    grid-column: span 2;
  }
  .gallery-grid .gallery-item-v {
    grid-row: span 2;
  }
  .gallery-grid .gallery-item-h {
    grid-column: span 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tour-gallery-dynamic .wp-block-image,
  .adventure-gallery .gallery-item,
  .tour-gallery-dynamic .wp-block-image img,
  .adventure-gallery .gallery-item img,
  .gallery-grid .gallery-item,
  .gallery-grid .gallery-item img {
    transition: none !important;
  }
  .gallery-item-loading {
    animation: none;
    background: var(--wp--preset--color--light-green, #f8f9fa);
  }
}
@media (prefers-contrast: high) {
  .tour-gallery-dynamic .wp-block-image,
  .adventure-gallery .gallery-item,
  .gallery-grid .gallery-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}
@media (prefers-contrast: high) and (hover: hover) and (pointer: fine) {
  .tour-gallery-dynamic .wp-block-image:hover,
  .adventure-gallery .gallery-item:hover,
  .gallery-grid .gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
}
/**
 * BREADCRUMBS CSS
 * This would be included in your theme's style.css
 */
/* Breadcrumbs Styles */
.breadcrumbs-nav {
  background: transparent;
  /*background-color: var(--wp--preset--color--sand, #f8f9fa);*/
  /*border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
  font-size: var(--wp--preset--font-size--tiny);
  font-family: Arial;
  text-transform: uppercase;
  z-index: 3;
  position: relative;
}

.breadcrumbs {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
  letter-spacing: 1px;
}
@media (max-width: 600px) {
  .breadcrumbs {
    letter-spacing: -1px;
  }
}

.breadcrumb-item a {
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item a {
    color: var(--foreground);
  }
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
  color: var(--wp--preset--color--stone);
  text-decoration: underline;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item a:hover,
  .breadcrumb-item a:focus {
    color: var(--foreground);
  }
}

.breadcrumb-item.current {
  font-weight: 500;
  /*max-width: 300px;*/
  white-space: nowrap;
  overflow: hidden;
  /*text-overflow: ellipsis;*/
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-item.current {
    color: var(--foreground);
  }
}

.breadcrumb-divider {
  color: var(--wp--preset--color--stone);
  margin: 0 0.1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  font-weight: 300;
  position: relative;
  top: 1px;
  align-self: flex-start;
}
@media (prefers-color-scheme: dark) {
  .breadcrumb-divider {
    color: var(--foreground);
  }
}

/* Responsive Styles */
@media (max-width: 600px) {
  .breadcrumbs-nav {
    padding: var(--wp--preset--spacing--xs, 0.5rem) !important;
  }
}
/* Hero Section - Full Screen Layout */
.header-tour {
  position: relative;
  z-index: 9;
}

.wp-block-cover.alignfull {
  /*position: relative;*/
  padding-top: 2rem;
}

/* Dynamic Background with Parallax Effect */
.wp-block-cover__image-background {
  transform: scale(1.1);
  transition: transform 8s ease-out;
  filter: brightness(0.7) contrast(1.1);
}

.wp-block-cover:hover .wp-block-cover__image-background {
  transform: scale(1.05);
}

/* Enhanced Gradient Overlay */
.wp-block-cover__background {
  background: linear-gradient(135deg, rgba(26, 60, 44, 0.8) 0%, rgba(42, 93, 69, 0.6) 40%, rgba(26, 60, 44, 0.7) 100%);
  mix-blend-mode: multiply;
}

/* Floating Particle Animation Background */
.wp-block-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(245, 176, 65, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent), radial-gradient(1px 1px at 90px 40px, rgba(127, 182, 133, 0.4), transparent), radial-gradient(1px 1px at 130px 80px, rgba(245, 176, 65, 0.3), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: particleFloat 20s linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}
/* Hero Content Container */
.wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  z-index: 2;
}

/* Animated Title with Glow Effect */
.wp-block-post-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(26, 60, 44, 0.8), 0 0 20px rgba(245, 176, 65, 0.4);
  animation: titleGlow 3s ease-in-out infinite alternate;
  margin-bottom: 2rem;
  position: relative;
  color: #FFFFFF;
}

@keyframes titleGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(26, 60, 44, 0.8), 0 0 20px rgba(245, 176, 65, 0.4);
  }
  100% {
    text-shadow: 2px 2px 4px rgba(26, 60, 44, 0.8), 0 0 30px rgba(245, 176, 65, 0.6);
  }
}
/* Adventure Trail SVG Decoration */
.wp-block-post-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  animation: trailPulse 2s ease-in-out infinite;
}

@keyframes trailPulse {
  0%, 100% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}
/*  Hero Section */
@media (min-width: 768px) {
  .wp-block-cover.alignfull {
    min-height: 80vh;
    background-attachment: scroll;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
  }
  /* Hero Content Container */
  .wp-block-cover__inner-container {
    padding: 30vh 0 0 0;
  }
}
/* Tour Info Bar Styles */
/* Enhanced Tour Info Bar with Glassmorphism */
.tour-info-bar {
  position: relative;
  z-index: 3;
  margin-top: 3rem;
  animation: slideUpFade 1.2s ease-out 0.5s both;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes slideUpFade {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.tour-info-container {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 50px -12px rgba(26, 60, 44, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-info-container:hover {
  /*transform: translateY(-5px);*/
}

/* Grid with Staggered Animation */
.tour-info-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(1, 1fr);
  align-items: stretch;
  border-radius: 20px;
  gap: 0.75rem;
}

.tour-info-container {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: var(--wp--preset--color--sand);
}

.tour-info-pricing {
  grid-column: 1/-1;
}

/* Hover Effects with 3D Transform and High Contrast */
.tour-info-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  animation: itemSlideIn 0.8s ease-out both;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tour-info-item small {
  font-family: var(--wp--preset--font-family--body) sans-serif;
  font-size: 2rem;
  font-weight: lighter;
}

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

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

.tour-info-item:nth-child(3) {
  grid-column: 1/-1;
  animation-delay: 0.3s;
  flex-direction: row;
}

.tour-info-item:nth-child(4) {
  grid-column: 1/-1;
  animation-delay: 0.4s;
  flex-direction: row;
}

.tour-info-item:hover {
  transform: translateY(-8px) rotateX(5deg);
  border-color: rgba(42, 93, 69, 0.4);
}

.tour-info-item:hover .tour-info-icon {
  transform: scale(1.2) rotateY(180deg);
  color: #2A5D45;
}

.tour-info-item:hover {
  transform: translateY(-4px);
}

@keyframes itemSlideIn {
  0% {
    transform: translateY(30px) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* Enhanced Pricing Section with Forest Theme */
.tour-info-pricing {
  background: linear-gradient(135deg, rgba(42, 93, 69, 0.2) 0%, rgba(26, 60, 44, 0.25) 50%, rgba(42, 93, 69, 0.2) 100%);
  border: 2px solid rgba(42, 93, 69, 0.4);
  position: relative;
  overflow: hidden;
}

.tour-info-pricing:hover {
  background: rgba(247, 245, 240, 0.95);
  border-color: rgba(42, 93, 69, 0.6);
}

.tour-info-pricing:hover .has-primary-600-color,
.tour-info-pricing:hover .has-primary-color {
  color: #2A5D45 !important;
  text-shadow: none;
}

.tour-info-pricing {
  position: relative;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
  min-height: 140px;
  align-items: center;
}

.tour-info-pricing .is-vertical {
  align-items: center;
}

.tour-info-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
  border-radius: inherit;
  pointer-events: none;
}

/* Animated Icons with Morphing Effect */
.tour-info-icon {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 4px 8px rgba(26, 60, 44, 0.3));
  color: #292A2C;
}

.tour-info-icon-wrapper {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-info-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /*color: #374151;*/
  color: var(--wp--preset--color--secondary);
}

.tour-info-item:hover .tour-info-icon {
  transform: scale(1.1) rotate(5deg);
  color: #059669;
}

.stars-container {
  display: flex;
  flex-direction: row;
  gap: 0;
}

.overall-star {
  width: 24px;
  height: 24px;
  margin: 0 1px;
  color: var(--wp--preset--color--primary, #E67E22);
}

/* Book Now Button with Forest Theme */
.tour-book-button {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.tour-book-button a {
  background: var(--wp--preset--color--secondary);
}

.tour-book-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.tour-book-button:hover::before {
  left: 100%;
}

.tour-book-button:hover {
  /*transform: translateY(-2px);*/
  box-shadow: 0 8px 25px -5px rgba(59, 130, 246, 0.4);
}

/* Additional info section contrast */
.tour-additional-info {
  margin: 0;
}
.tour-additional-info p {
  color: var(--wp--preset--color--sand);
  /*color: #FFFFFF;*/
  /*text-shadow: 1px 1px 2px rgba(26, 60, 44, 0.8);*/
}
.tour-additional-info .testimonial-rating-badge {
  width: 100%;
  margin: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .tour-additional-info .testimonial-rating-badge {
    width: auto;
  }
}
.tour-additional-info .testimonial-rating-badge > .wp-block-group {
  flex-direction: column;
}
@media (min-width: 768px) {
  .tour-additional-info .testimonial-rating-badge > .wp-block-group {
    flex-direction: row;
  }
}

.tour-meta-info svg {
  transition: all 0.3s ease;
}

.tour-meta-info:hover svg {
  transform: scale(1.1);
}

.tour-social-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  padding: 0.5rem;
}

.tour-social-links a:hover {
  transform: translateY(-2px);
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.wp-social-link {
  background: var(--wp--preset--color--primary);
}

.wp-social-link:last-child {
  color: var(--tertiary);
  background: none;
  font-size: 1.5rem;
}

.tour-social-share, .tour-departures {
  display: none;
}

@media (min-width: 768px) {
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  }
  .tour-social-share, .tour-departures {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .tour-departures p {
    padding-left: 0.4rem;
  }
}
@media (min-width: 1000px) {
  .tour-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
  }
  .tour-info-item:nth-child(3) {
    grid-column: auto;
    flex-direction: column;
  }
  .tour-info-item:nth-child(4) {
    grid-column: auto;
    flex-direction: column;
    gap: 0.35rem;
  }
}
.trip-highlights {
  padding-top: 0;
}

.trip-highlights-container {
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 768px) {
  .trip-highlights-container {
    padding: 80vh 0 2rem 0;
  }
}
.trip-highlights-container h2 {
  font-weight: normal;
}

.trip-highlights-container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background-image: url('../../img/machutrail.jpg');*/
  background-size: cover;
  opacity: 0.05;
  pointer-events: none;
}

.highlight-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--wp--preset--color--sand);
  text-align: center;
}
.highlight-card h3 {
  margin: auto;
}
.highlight-card .highlight-icon-container {
  margin: auto;
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.1);
}

.highlight-card:hover .highlight-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.conservation-highlight {
  transition: transform 0.3s ease;
  color: var(--wp--preset--color--sand);
}
@media (prefers-color-scheme: dark) {
  .conservation-highlight {
    color: var(--foreground);
  }
}

.conservation-highlight:hover {
  transform: scale(1.02);
}

.conservation-icon {
  transition: transform 0.6s ease;
}

.conservation-highlight:hover .conservation-icon {
  transform: rotate(360deg);
}

@media (min-width: 768px) {
  .trip-highlights {
    padding-top: 90vh;
  }
}
.adventure-gallery-section {
  position: relative;
  overflow: hidden;
  color: var(--wp--preset--color--sand);
}
.adventure-gallery-section h2 {
  font-weight: normal;
}
.adventure-gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
@media (prefers-color-scheme: dark) {
  .adventure-gallery-section::before {
    opacity: 0.08;
    filter: invert(1);
  }
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 1rem;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .tour-gallery-dynamic .wp-block-image:hover .gallery-overlay, .gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: none) {
  .gallery-overlay {
    opacity: 0.9;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@media (min-width: 48em) {
  .gallery-overlay {
    padding: 1.5rem;
  }
}

.gallery-info {
  flex: 1;
  min-width: 0;
}
.gallery-info h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: white;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
  .gallery-info h4 {
    color: var(--wp--preset--color--gold, #ffd700);
  }
}
@media (min-width: 48em) {
  .gallery-info h4 {
    font-size: 1.125rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.gallery-info p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}
@media (max-width: 30em) {
  .gallery-info p {
    display: none;
  }
}
@media (min-width: 30em) {
  .gallery-info p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (min-width: 64em) {
  .gallery-info p {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
}

.gallery-zoom {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-zoom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}
.gallery-zoom:active {
  transform: scale(0.95);
}
.gallery-zoom:focus {
  outline: 2px solid var(--wp--preset--color--gold, #ffd700);
  outline-offset: 2px;
}
@media (min-width: 48em) {
  .gallery-zoom {
    width: 3rem;
    height: 3rem;
  }
}
.gallery-zoom svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 48em) {
  .gallery-zoom svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.gallery-modal.active ~ body {
  overflow: hidden;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .modal-content {
    width: 90%;
    max-height: 85vh;
  }
}
@media (min-width: 64em) {
  .modal-content {
    width: 80%;
  }
}

.modal-image-container {
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-image.loaded {
  opacity: 1;
}
@media (min-width: 48em) {
  .modal-image {
    max-height: 75vh;
  }
}

.modal-caption {
  color: white;
  padding: 1rem 0;
  text-align: center;
}
@media (min-width: 48em) {
  .modal-caption {
    padding: 1.5rem 0;
  }
}

.modal-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 48em) {
  .modal-title {
    font-size: 1.5rem;
  }
}

.modal-location {
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.3;
}
@media (min-width: 48em) {
  .modal-location {
    font-size: 1.125rem;
  }
}

.modal-close,
.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}
@media (hover: hover) and (pointer: fine) {
  .modal-close:hover,
  .modal-prev:hover,
  .modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
}
.modal-close:active,
.modal-prev:active,
.modal-next:active {
  transform: scale(0.95);
}
.modal-close:focus,
.modal-prev:focus,
.modal-next:focus {
  outline: 2px solid var(--wp--preset--color--gold, #ffd700);
  outline-offset: 2px;
}
.modal-close svg,
.modal-prev svg,
.modal-next svg {
  width: 1.5rem;
  height: 1.5rem;
}

.modal-close {
  top: -1.5rem;
  right: -1.5rem;
}
@media (max-width: 48em) {
  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }
}

.modal-prev {
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 48em) {
  .modal-prev {
    left: 0.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal-prev:hover {
    transform: translateY(-50%) scale(1.1);
  }
}

.modal-next {
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 48em) {
  .modal-next {
    right: 0.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .modal-next:hover {
    transform: translateY(-50%) scale(1.1);
  }
}

@media (max-width: 48em) {
  .modal-content {
    margin: 1rem;
  }
  .modal-caption {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    margin: -1rem 0 0 0;
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-overlay,
  .gallery-zoom,
  .gallery-modal,
  .modal-close,
  .modal-prev,
  .modal-next {
    transition: none !important;
  }
}
@media (prefers-contrast: high) {
  .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .gallery-zoom,
  .modal-close,
  .modal-prev,
  .modal-next {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border: 2px solid white;
  }
}
/**
 * Tour Content Layout & Styling
 * 
 * Modular SCSS architecture for tour content with specialized imports.
 * Maintains only the complex pricing table section here while other
 * sections are imported from focused modules.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/**
 * Tour Shared Mixins
 * 
 * Reusable SCSS mixins for common tour styling patterns.
 * Eliminates duplication and ensures consistency across components.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/**
 * Tour Layout Grid System
 * 
 * Main 2-column grid layout for single-tours.html with responsive behavior.
 * Provides the foundational structure for tour content and sticky aside.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.entry-content .alltour {
  display: grid;
  gap: var(--wp--preset--spacing--sm);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--md);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .entry-content .alltour {
    align-items: start;
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .entry-content .alltour {
    padding: 0 var(--wp--preset--spacing--sm);
    gap: var(--wp--preset--spacing--md);
  }
}
.entry-content .alltour > * {
  min-width: 0;
}

/**
 * Tour Intro Section
 * 
 * Styling for tour introduction with highlights, tagline, and included items.
 * Features tour overview with checkmark lists and adventure quotes.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.tourIntro {
  border-bottom: 1px solid var(--wp--preset--color--stone);
  margin-bottom: var(--wp--preset--spacing--md);
  padding: var(--wp--preset--spacing--sm) 0 0;
}
@media (min-width: 768px) {
  .tourIntro {
    padding: var(--wp--preset--spacing--lg) 0;
  }
}
.tourIntro .tourslog {
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--secondary);
  font-style: italic;
  margin-bottom: var(--wp--preset--spacing--sm);
  font-family: var(--wp--preset--font-family--body);
}
.tourIntro h3 {
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--x-large);
  margin-bottom: var(--wp--preset--spacing--sm);
  font-weight: var(--wp--custom--typography--font-weight--bold);
}
.tourIntro > p {
  color: var(--wp--preset--color--foreground);
  font-size: var(--wp--preset--font-size--medium);
  line-height: var(--wp--custom--typography--line-height--medium);
  margin-bottom: var(--wp--preset--spacing--md);
}
.tourIntro .incTour {
  list-style: none;
  padding: 0;
  display: block;
}
.tourIntro .incTour li {
  display: flex;
  align-items: center;
  padding: var(--wp--preset--spacing--xs) 0;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--foreground);
}
.tourIntro .incTour li::before {
  content: "✓";
  color: var(--wp--preset--color--light-green);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  margin-right: var(--wp--preset--spacing--sm);
  font-size: var(--wp--preset--font-size--medium);
}

/**
 * Tour Navigation
 * 
 * Mobile-first navigation with fixed bottom positioning on mobile
 * and floating sticky horizontal positioning on desktop.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.sidebar1.fixedTop {
  background: var(--wp--preset--color--background);
  border-radius: var(--wp--custom--effects--radius--medium);
  border: 1px solid var(--wp--preset--color--stone);
  box-shadow: 5px -0.5rem 3rem rgba(0, 0, 0, 0.5);
}
@media (prefers-color-scheme: dark) {
  .sidebar1.fixedTop {
    box-shadow: 5px -0.5rem 3rem rgba(255, 255, 255, 0.5);
    background: var(--wp--preset--color--dark-green);
  }
}
@media (max-width: 767px) {
  .sidebar1.fixedTop {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
}
@media (min-width: 768px) {
  .sidebar1.fixedTop {
    position: sticky;
    top: var(--wp--preset--spacing--md);
    z-index: 10;
  }
}
.sidebar1.fixedTop #tourNav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}
@media (min-width: 768px) {
  .sidebar1.fixedTop #tourNav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
  }
}
.sidebar1.fixedTop #tourNav li {
  width: 20%;
}
@media (max-width: 767px) {
  .sidebar1.fixedTop #tourNav li {
    flex: 0 0 auto;
    border-right: 1px solid var(--wp--preset--color--stone);
  }
  .sidebar1.fixedTop #tourNav li:last-child {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .sidebar1.fixedTop #tourNav li {
    flex: 1;
    border: 1px solid var(--wp--preset--color--stone);
    border-right: none;
  }
  .sidebar1.fixedTop #tourNav li:first-child {
    border-radius: var(--wp--custom--effects--radius--small) 0 0 var(--wp--custom--effects--radius--small);
  }
  .sidebar1.fixedTop #tourNav li:last-child {
    border-right: 1px solid var(--wp--preset--color--stone);
    border-radius: 0 var(--wp--custom--effects--radius--small) var(--wp--custom--effects--radius--small) 0;
  }
}
.sidebar1.fixedTop #tourNav .menuTab {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--heading);
  font-weight: var(--wp--custom--typography--font-weight--medium);
  transition: all var(--wp--custom--effects--transition--medium) ease;
  text-transform: uppercase;
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sidebar1.fixedTop #tourNav .menuTab {
    padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
    font-size: var(--wp--preset--font-size--tiny);
    min-height: 52px;
    min-width: 60px;
    text-align: center;
    flex-direction: column;
    gap: 2px;
  }
}
@media (min-width: 768px) {
  .sidebar1.fixedTop #tourNav .menuTab {
    padding: var(--wp--preset--spacing--sm);
    font-size: var(--wp--preset--font-size--tiny);
    min-height: 40px;
  }
}
.sidebar1.fixedTop #tourNav .menuTab:hover {
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--primary);
}
.sidebar1.fixedTop #tourNav .menuTab:focus {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: -2px;
}
.sidebar1.fixedTop #tourNav .menuTab:active {
  transform: scale(0.98);
}
.sidebar1.fixedTop #tourNav .menuTab.current {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--secondary-dark);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  font-size: var(--wp--preset--font-size--normal);
}

#price, .price-table {
  container-type: inline-size;
}
#price h2, .price-table h2 {
  font-weight: normal;
}
#price table tbody, .price-table table tbody {
  display: block;
}
@media (min-width: 768px) {
  #price table, .price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--wp--preset--spacing--md) 0;
    border-radius: var(--wp--custom--effects--radius--medium);
    overflow: hidden;
    box-shadow: var(--wp--custom--effects--shadow--small);
  }
  #price table tbody, .price-table table tbody {
    display: flex;
  }
  #price table .thead, .price-table table .thead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    color: var(--wp--preset--color--primary);
  }
  #price table .thead td, .price-table table .thead td {
    color: var(--wp--preset--color--primary);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    text-align: center;
    font-size: var(--wp--preset--font-size--tiny);
    text-transform: uppercase;
    line-height: 2.5;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
  }
  #price table .thead td:first-child, .price-table table .thead td:first-child {
    writing-mode: horizontal-tb;
    text-align: left;
    padding-left: var(--wp--preset--spacing--md);
    justify-content: flex-start;
  }
  #price table .thead td.chot, .price-table table .thead td.chot {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 9.5px;
    padding: var(--wp--preset--spacing--xs);
    min-height: 2rem;
    letter-spacing: 0.06rem;
    inline-size: -moz-min-content;
    inline-size: min-content;
    overflow: hidden;
  }
  #price table .thead td:last-child:not(.chot):not([itemprop=offers]), .price-table table .thead td:last-child:not(.chot):not([itemprop=offers]) {
    background: none;
  }
  #price table .thead td:nth-child(9), #price table .thead td:nth-child(10), .price-table table .thead td:nth-child(9), .price-table table .thead td:nth-child(10) {
    writing-mode: horizontal-tb;
    font-size: var(--wp--preset--font-size--small);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    border: 1px solid var(--wp--preset--color--stone);
    border-top: none;
    color: var(--wp--preset--color--primary);
  }
  #price table .t1, #price table .t2, #price table .t3, #price table .t4, .price-table table .t1, .price-table table .t2, .price-table table .t3, .price-table table .t4 {
    width: 100%;
    text-align: center;
  }
  #price table .t1 td, #price table .t2 td, #price table .t3 td, #price table .t4 td, .price-table table .t1 td, .price-table table .t2 td, .price-table table .t3 td, .price-table table .t4 td {
    border-bottom: 1px solid var(--wp--preset--color--stone);
    text-align: center;
    font-size: var(--wp--preset--font-size--tiny);
    line-height: 1.3;
    vertical-align: middle;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
  }
  #price table .t1 td:first-child, #price table .t2 td:first-child, #price table .t3 td:first-child, #price table .t4 td:first-child, .price-table table .t1 td:first-child, .price-table table .t2 td:first-child, .price-table table .t3 td:first-child, .price-table table .t4 td:first-child {
    text-align: center;
    font-weight: var(--wp--custom--typography--font-weight--bold);
    background: var(--wp--preset--color--sand);
    font-size: var(--wp--preset--font-size--small);
    padding-left: var(--wp--preset--spacing--md);
    position: relative;
  }
  #price table .t1 td:first-child::before, #price table .t2 td:first-child::before, #price table .t3 td:first-child::before, #price table .t4 td:first-child::before, .price-table table .t1 td:first-child::before, .price-table table .t2 td:first-child::before, .price-table table .t3 td:first-child::before, .price-table table .t4 td:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
  }
  #price table .t1 td.chot, #price table .t2 td.chot, #price table .t3 td.chot, #price table .t4 td.chot, .price-table table .t1 td.chot, .price-table table .t2 td.chot, .price-table table .t3 td.chot, .price-table table .t4 td.chot {
    font-size: var(--wp--preset--font-size--small);
    font-weight: lighter;
    line-height: 1.1;
    padding: var(--wp--preset--spacing--sm);
    text-overflow: ellipsis;
    overflow: hidden;
    min-height: 64px;
  }
  #price table .t1 td.chot:hover, #price table .t2 td.chot:hover, #price table .t3 td.chot:hover, #price table .t4 td.chot:hover, .price-table table .t1 td.chot:hover, .price-table table .t2 td.chot:hover, .price-table table .t3 td.chot:hover, .price-table table .t4 td.chot:hover {
    overflow: visible;
    white-space: normal;
    z-index: 10;
    position: relative;
    background: var(--wp--preset--color--white);
    box-shadow: var(--wp--custom--effects--shadow--medium);
    border-radius: var(--wp--custom--effects--radius--small);
  }
  #price table .t1 td[itemprop=offers], #price table .t2 td[itemprop=offers], #price table .t3 td[itemprop=offers], #price table .t4 td[itemprop=offers], .price-table table .t1 td[itemprop=offers], .price-table table .t2 td[itemprop=offers], .price-table table .t3 td[itemprop=offers], .price-table table .t4 td[itemprop=offers] {
    font-size: var(--wp--preset--font-size--medium);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    color: var(--wp--preset--color--secondary);
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
  }
  #price table .t1 td:first-child::before, .price-table table .t1 td:first-child::before {
    background: var(--wp--preset--color--light-green);
  }
  #price table .t2 td:first-child::before, .price-table table .t2 td:first-child::before {
    background: var(--wp--preset--color--secondary);
  }
  #price table .t3 td:first-child::before, .price-table table .t3 td:first-child::before {
    background: var(--wp--preset--color--tertiary);
  }
  #price table .t4 td:first-child::before, .price-table table .t4 td:first-child::before {
    background: var(--wp--preset--color--quaternary);
  }
  #price table .t1 td:not(:first-child):not(.chot):not([itemprop=offers]):not(:last-child), .price-table table .t1 td:not(:first-child):not(.chot):not([itemprop=offers]):not(:last-child) {
    background-color: red;
  }
  #price table .t2, .price-table table .t2 {
    background: whitesmoke;
  }
}
@media (min-width: 768px) and (prefers-color-scheme: dark) {
  #price table .t2, .price-table table .t2 {
    background: black;
  }
}
@media (min-width: 768px) {
  #price table .t3 td:not(:first-child):not(.chot):not([itemprop=offers]):not(:last-child), .price-table table .t3 td:not(:first-child):not(.chot):not([itemprop=offers]):not(:last-child) {
    background: rgba(230, 126, 34, 0.1);
  }
  #price table .t4, .price-table table .t4 {
    background: rgba(0, 150, 255, 0.05);
  }
}
@media (min-width: 768px) {
  @container (max-width: 800px) {
    #price table td, .price-table table td {
      font-size: 7px;
      padding: var(--wp--preset--spacing--xs);
    }
    #price table td:first-child, .price-table table td:first-child {
      font-size: var(--wp--preset--font-size--tiny);
    }
    #price table td[itemprop=offers], #price table td:last-child:not(.chot):not([itemprop=offers]), .price-table table td[itemprop=offers], .price-table table td:last-child:not(.chot):not([itemprop=offers]) {
      font-size: var(--wp--preset--font-size--small);
      background: rgba(230, 126, 34, 0.1);
    }
  }
}
@media (max-width: 767px) {
  #price table, .price-table table {
    display: block;
    width: 100%;
  }
  #price table .thead, .price-table table .thead {
    display: none;
  }
  #price table .t1, #price table .t2, #price table .t3, #price table .t4, .price-table table .t1, .price-table table .t2, .price-table table .t3, .price-table table .t4 {
    width: 90%;
    display: block;
    background: var(--wp--preset--color--background);
    margin: auto;
    margin-bottom: var(--wp--preset--spacing--xl);
    border-radius: var(--wp--custom--effects--radius--large);
    box-shadow: var(--wp--custom--effects--shadow--medium);
    overflow: hidden;
    position: relative;
  }
  #price table .t1::before, #price table .t2::before, #price table .t3::before, #price table .t4::before, .price-table table .t1::before, .price-table table .t2::before, .price-table table .t3::before, .price-table table .t4::before {
    content: "";
    display: block;
    height: 6px;
    width: 100%;
  }
  #price table .t1.t1::before, #price table .t2.t1::before, #price table .t3.t1::before, #price table .t4.t1::before, .price-table table .t1.t1::before, .price-table table .t2.t1::before, .price-table table .t3.t1::before, .price-table table .t4.t1::before {
    background: linear-gradient(90deg, var(--wp--preset--color--light-green) 0%, var(--wp--preset--color--primary) 100%);
  }
  #price table .t1.t2::before, #price table .t2.t2::before, #price table .t3.t2::before, #price table .t4.t2::before, .price-table table .t1.t2::before, .price-table table .t2.t2::before, .price-table table .t3.t2::before, .price-table table .t4.t2::before {
    background: linear-gradient(90deg, var(--wp--preset--color--secondary) 0%, var(--wp--preset--color--light-orange) 100%);
  }
  #price table .t1.t3::before, #price table .t2.t3::before, #price table .t3.t3::before, #price table .t4.t3::before, .price-table table .t1.t3::before, .price-table table .t2.t3::before, .price-table table .t3.t3::before, .price-table table .t4.t3::before {
    background: linear-gradient(90deg, var(--wp--preset--color--tertiary) 0%, var(--wp--preset--color--dark-green) 100%);
  }
  #price table .t1::after, #price table .t2::after, #price table .t3::after, #price table .t4::after, .price-table table .t1::after, .price-table table .t2::after, .price-table table .t3::after, .price-table table .t4::after {
    content: "TOURIST";
    position: absolute;
    top: 6px;
    right: var(--wp--preset--spacing--xs);
    background: rgba(255, 255, 255, 0.9);
    color: var(--wp--preset--color--primary);
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
    border-radius: var(--wp--custom--effects--radius--large);
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
    z-index: 2;
  }
  #price table .t1.t2::after, #price table .t2.t2::after, #price table .t3.t2::after, #price table .t4.t2::after, .price-table table .t1.t2::after, .price-table table .t2.t2::after, .price-table table .t3.t2::after, .price-table table .t4.t2::after {
    content: "SUPERIOR";
  }
  #price table .t1.t3::after, #price table .t2.t3::after, #price table .t3.t3::after, #price table .t4.t3::after, .price-table table .t1.t3::after, .price-table table .t2.t3::after, .price-table table .t3.t3::after, .price-table table .t4.t3::after {
    content: "PREMIUM";
  }
  #price table .t1.t4::after, #price table .t2.t4::after, #price table .t3.t4::after, #price table .t4.t4::after, .price-table table .t1.t4::after, .price-table table .t2.t4::after, .price-table table .t3.t4::after, .price-table table .t4.t4::after {
    content: "DELUXE";
  }
  #price table .t1 td, #price table .t2 td, #price table .t3 td, #price table .t4 td, .price-table table .t1 td, .price-table table .t2 td, .price-table table .t3 td, .price-table table .t4 td {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
  }
  #price table .t1 td:first-child, #price table .t2 td:first-child, #price table .t3 td:first-child, #price table .t4 td:first-child, .price-table table .t1 td:first-child, .price-table table .t2 td:first-child, .price-table table .t3 td:first-child, .price-table table .t4 td:first-child {
    background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--dark-green) 100%);
    color: var(--wp--preset--color--white);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    font-size: var(--wp--preset--font-size--large);
    text-align: center;
    padding: var(--wp--preset--spacing--sm);
    margin-bottom: var(--wp--preset--spacing--md);
    position: relative;
  }
  #price table .t1 td:first-child::after, #price table .t2 td:first-child::after, #price table .t3 td:first-child::after, #price table .t4 td:first-child::after, .price-table table .t1 td:first-child::after, .price-table table .t2 td:first-child::after, .price-table table .t3 td:first-child::after, .price-table table .t4 td:first-child::after {
    content: "Accommodation Level";
    display: block;
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: var(--wp--custom--typography--font-weight--regular);
    opacity: 0.8;
    margin-top: var(--wp--preset--spacing--xs);
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  }
  #price table .t1 td.chot, #price table .t2 td.chot, #price table .t3 td.chot, #price table .t4 td.chot, .price-table table .t1 td.chot, .price-table table .t2 td.chot, .price-table table .t3 td.chot, .price-table table .t4 td.chot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--wp--preset--spacing--md);
    border-bottom: 1px solid var(--wp--preset--color--stone);
    background: var(--wp--preset--color--sand);
    border-radius: var(--wp--custom--effects--radius--small);
    margin-bottom: var(--wp--preset--spacing--xs);
    font-size: var(--wp--preset--font-size--medium);
    color: var(--wp--preset--color--foreground);
    font-weight: var(--wp--custom--typography--font-weight--medium);
    flex: 1;
    text-align: right;
  }
  #price table .t1 td.chot::before, #price table .t2 td.chot::before, #price table .t3 td.chot::before, #price table .t4 td.chot::before, .price-table table .t1 td.chot::before, .price-table table .t2 td.chot::before, .price-table table .t3 td.chot::before, .price-table table .t4 td.chot::before {
    content: attr(data-label);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    color: var(--wp--preset--color--primary);
    font-size: var(--wp--preset--font-size--small);
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
    flex: 0 0 80px;
  }
  #price table .t1 td[itemprop=offers], #price table .t2 td[itemprop=offers], #price table .t3 td[itemprop=offers], #price table .t4 td[itemprop=offers], .price-table table .t1 td[itemprop=offers], .price-table table .t2 td[itemprop=offers], .price-table table .t3 td[itemprop=offers], .price-table table .t4 td[itemprop=offers] {
    background: linear-gradient(135deg, var(--wp--preset--color--secondary) 0%, var(--wp--preset--color--light-orange) 100%);
    color: var(--wp--preset--color--white);
    font-size: var(--wp--preset--font-size--x-large);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    text-align: center;
    padding: var(--wp--preset--spacing--xs);
    position: relative;
  }
  #price table .t1 td[itemprop=offers]::before, #price table .t2 td[itemprop=offers]::before, #price table .t3 td[itemprop=offers]::before, #price table .t4 td[itemprop=offers]::before, .price-table table .t1 td[itemprop=offers]::before, .price-table table .t2 td[itemprop=offers]::before, .price-table table .t3 td[itemprop=offers]::before, .price-table table .t4 td[itemprop=offers]::before {
    content: "Double/Triple Room";
    display: block;
    font-size: var(--wp--preset--font-size--small);
    font-weight: var(--wp--custom--typography--font-weight--medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  }
  #price table .t1 td[itemprop=offers]::after, #price table .t2 td[itemprop=offers]::after, #price table .t3 td[itemprop=offers]::after, #price table .t4 td[itemprop=offers]::after, .price-table table .t1 td[itemprop=offers]::after, .price-table table .t2 td[itemprop=offers]::after, .price-table table .t3 td[itemprop=offers]::after, .price-table table .t4 td[itemprop=offers]::after {
    content: "per person";
    display: block;
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: var(--wp--custom--typography--font-weight--regular);
    opacity: 0.8;
  }
  #price table .t1 td:last-child:not([itemprop=offers]), #price table .t2 td:last-child:not([itemprop=offers]), #price table .t3 td:last-child:not([itemprop=offers]), #price table .t4 td:last-child:not([itemprop=offers]), .price-table table .t1 td:last-child:not([itemprop=offers]), .price-table table .t2 td:last-child:not([itemprop=offers]), .price-table table .t3 td:last-child:not([itemprop=offers]), .price-table table .t4 td:last-child:not([itemprop=offers]) {
    background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--dark-green) 100%);
    color: var(--wp--preset--color--white);
    font-size: var(--wp--preset--font-size--x-large);
    font-weight: var(--wp--custom--typography--font-weight--bold);
    text-align: center;
    padding: var(--wp--preset--spacing--xs);
    border-radius: 0 0 var(--wp--custom--effects--radius--medium) var(--wp--custom--effects--radius--medium);
    position: relative;
  }
  #price table .t1 td:last-child:not([itemprop=offers])::before, #price table .t2 td:last-child:not([itemprop=offers])::before, #price table .t3 td:last-child:not([itemprop=offers])::before, #price table .t4 td:last-child:not([itemprop=offers])::before, .price-table table .t1 td:last-child:not([itemprop=offers])::before, .price-table table .t2 td:last-child:not([itemprop=offers])::before, .price-table table .t3 td:last-child:not([itemprop=offers])::before, .price-table table .t4 td:last-child:not([itemprop=offers])::before {
    content: "Single Room";
    display: block;
    font-size: var(--wp--preset--font-size--small);
    font-weight: var(--wp--custom--typography--font-weight--medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  }
  #price table .t1 td:last-child:not([itemprop=offers])::after, #price table .t2 td:last-child:not([itemprop=offers])::after, #price table .t3 td:last-child:not([itemprop=offers])::after, #price table .t4 td:last-child:not([itemprop=offers])::after, .price-table table .t1 td:last-child:not([itemprop=offers])::after, .price-table table .t2 td:last-child:not([itemprop=offers])::after, .price-table table .t3 td:last-child:not([itemprop=offers])::after, .price-table table .t4 td:last-child:not([itemprop=offers])::after {
    content: "per person";
    display: block;
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: var(--wp--custom--typography--font-weight--regular);
    opacity: 0.8;
  }
  #price table .t1 td:nth-last-child(2):not([itemprop=offers]), #price table .t2 td:nth-last-child(2):not([itemprop=offers]), #price table .t3 td:nth-last-child(2):not([itemprop=offers]), #price table .t4 td:nth-last-child(2):not([itemprop=offers]), .price-table table .t1 td:nth-last-child(2):not([itemprop=offers]), .price-table table .t2 td:nth-last-child(2):not([itemprop=offers]), .price-table table .t3 td:nth-last-child(2):not([itemprop=offers]), .price-table table .t4 td:nth-last-child(2):not([itemprop=offers]) {
    text-align: center;
    font-size: var(--wp--preset--font-size--x-large);
    padding: var(--wp--preset--spacing--xs);
  }
  #price table .t1 td:nth-last-child(2):not([itemprop=offers])::before, #price table .t2 td:nth-last-child(2):not([itemprop=offers])::before, #price table .t3 td:nth-last-child(2):not([itemprop=offers])::before, #price table .t4 td:nth-last-child(2):not([itemprop=offers])::before, .price-table table .t1 td:nth-last-child(2):not([itemprop=offers])::before, .price-table table .t2 td:nth-last-child(2):not([itemprop=offers])::before, .price-table table .t3 td:nth-last-child(2):not([itemprop=offers])::before, .price-table table .t4 td:nth-last-child(2):not([itemprop=offers])::before {
    content: "Double/Triple Room";
    display: block;
    font-size: var(--wp--preset--font-size--normal);
    font-weight: var(--wp--custom--typography--font-weight--medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  }
  #price table .t1 td:nth-last-child(2):not([itemprop=offers])::after, #price table .t2 td:nth-last-child(2):not([itemprop=offers])::after, #price table .t3 td:nth-last-child(2):not([itemprop=offers])::after, #price table .t4 td:nth-last-child(2):not([itemprop=offers])::after, .price-table table .t1 td:nth-last-child(2):not([itemprop=offers])::after, .price-table table .t2 td:nth-last-child(2):not([itemprop=offers])::after, .price-table table .t3 td:nth-last-child(2):not([itemprop=offers])::after, .price-table table .t4 td:nth-last-child(2):not([itemprop=offers])::after {
    content: "per person";
    display: block;
    font-size: var(--wp--preset--font-size--tiny);
    font-weight: var(--wp--custom--typography--font-weight--regular);
    opacity: 0.8;
  }
  #price table .t1:hover, #price table .t2:hover, #price table .t3:hover, #price table .t4:hover, .price-table table .t1:hover, .price-table table .t2:hover, .price-table table .t3:hover, .price-table table .t4:hover {
    transform: translateY(-2px);
    box-shadow: var(--wp--custom--effects--shadow--large);
    transition: all var(--wp--custom--effects--transition--medium) ease;
  }
}
#price table caption, .price-table table caption {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#price table td:focus,
#price table td:focus-within, .price-table table td:focus,
.price-table table td:focus-within {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: -2px;
  z-index: 10;
  position: relative;
}

/**
 * Tour Itinerary Section
 * 
 * Day-by-day itinerary styling with enhanced day headers,
 * activity descriptions, and meal notation system.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
#itinerary .tourPane h4 {
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--large);
  margin: var(--wp--preset--spacing--lg) 0 var(--wp--preset--spacing--sm);
  padding: var(--wp--preset--spacing--sm) 0;
  border-bottom: 2px solid var(--wp--preset--color--light-green);
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
}
#itinerary .tourPane h4:first-child {
  margin-top: var(--wp--preset--spacing--md);
}
#itinerary .tourPane .dayp {
  background: var(--wp--preset--color--sand);
  padding: var(--wp--preset--spacing--md);
  border-radius: var(--wp--custom--effects--radius--medium);
  margin-bottom: var(--wp--preset--spacing--md);
  border-left: 3px solid var(--wp--preset--color--light-green);
}
#itinerary .tourPane .dayp p {
  color: var(--wp--preset--color--foreground);
  line-height: var(--wp--custom--typography--line-height--medium);
  margin-bottom: var(--wp--preset--spacing--sm);
}
#itinerary .tourPane .dayp p:last-child {
  margin-bottom: 0;
}
#itinerary .tourPane > p:first-of-type {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--stone);
  font-style: italic;
  text-align: center;
  background: var(--wp--preset--color--background);
  padding: var(--wp--preset--spacing--xs);
  border-radius: var(--wp--custom--effects--radius--small);
}

/**
 * Tour Inclusions Section
 * 
 * Styling for included and excluded items with checkmark/X icons,
 * notes, and additional information display.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
#inclusions ul {
  list-style: none;
  padding: 0;
}
#inclusions ul li {
  display: flex;
  align-items: flex-start;
  padding: 0 0 var(--wp--preset--spacing--xs) 0;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--foreground);
}
#inclusions ul li::before {
  content: "✓";
  color: var(--wp--preset--color--light-green);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  margin-right: var(--wp--preset--spacing--sm);
  margin-top: 2px;
  flex-shrink: 0;
}
#inclusions #exclusions {
  margin-top: var(--wp--preset--spacing--md);
}
#inclusions #exclusions li::before {
  content: "✗";
  color: var(--wp--preset--color--secondary);
}
#inclusions p:has(strong) {
  margin-top: var(--wp--preset--spacing--md);
  font-weight: var(--wp--custom--typography--font-weight--medium);
}

/**
 * Tour Booking Section
 * 
 * Booking calendar, date selection, and form controls with
 * responsive calendar styling and touch optimization.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
#booking #clickDate {
  text-align: center;
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--foreground);
  margin: var(--wp--preset--spacing--md);
  padding: var(--wp--preset--spacing--sm);
  background: var(--wp--preset--gradient--sunset-gradient);
  border-radius: var(--wp--custom--effects--radius--small);
}
#booking .comboHead {
  display: flex;
  gap: var(--wp--preset--spacing--sm);
  justify-content: center;
  margin-bottom: var(--wp--preset--spacing--md);
}
@media (max-width: 767px) {
  #booking .comboHead {
    flex-direction: column;
    gap: var(--wp--preset--spacing--md);
  }
}
#booking .comboHead select {
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--small);
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--foreground);
  font-family: var(--wp--preset--font-family--body);
  min-height: 44px;
  font-size: var(--wp--preset--font-size--normal);
}
@media (max-width: 767px) {
  #booking .comboHead select {
    width: 100%;
    padding: var(--wp--preset--spacing--sm);
    font-size: var(--wp--preset--font-size--medium);
  }
}
#booking #calendarSel,
#booking #calendarBox {
  max-width: 100%;
}
@media (max-width: 767px) {
  #booking #calendarSel,
  #booking #calendarBox {
    margin: var(--wp--preset--spacing--sm) 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #booking #calendarSel table,
  #booking #calendarBox table {
    min-width: 100%;
    font-size: var(--wp--preset--font-size--small);
  }
  #booking #calendarSel table td, #booking #calendarSel table th,
  #booking #calendarBox table td,
  #booking #calendarBox table th {
    min-width: 44px;
    min-height: 44px;
    text-align: center;
    vertical-align: middle;
  }
  #booking #calendarSel table a, #booking #calendarSel table button,
  #booking #calendarBox table a,
  #booking #calendarBox table button {
    display: block;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    background: transparent;
    color: inherit;
    border-radius: var(--wp--custom--effects--radius--small);
    transition: all var(--wp--custom--effects--transition--fast) ease;
  }
  #booking #calendarSel table a:hover, #booking #calendarSel table a:focus, #booking #calendarSel table button:hover, #booking #calendarSel table button:focus,
  #booking #calendarBox table a:hover,
  #booking #calendarBox table a:focus,
  #booking #calendarBox table button:hover,
  #booking #calendarBox table button:focus {
    background: var(--wp--preset--color--sand);
    color: var(--wp--preset--color--primary);
  }
  #booking #calendarSel table a:active, #booking #calendarSel table button:active,
  #booking #calendarBox table a:active,
  #booking #calendarBox table button:active {
    transform: scale(0.95);
  }
}
#booking #horizontalcalendar {
  margin-top: var(--wp--preset--spacing--lg);
  max-width: 100%;
}
@media (max-width: 767px) {
  #booking #horizontalcalendar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--wp--preset--spacing--sm);
  }
  #booking #horizontalcalendar #calendario2 {
    min-width: 100%;
    white-space: nowrap;
  }
  #booking #horizontalcalendar #calendario2 .date-item {
    display: inline-block;
    min-width: 44px;
    min-height: 44px;
    margin-right: var(--wp--preset--spacing--xs);
    padding: var(--wp--preset--spacing--xs);
    border-radius: var(--wp--custom--effects--radius--small);
    text-align: center;
    vertical-align: top;
    white-space: normal;
    cursor: pointer;
    transition: all var(--wp--custom--effects--transition--fast) ease;
  }
  #booking #horizontalcalendar #calendario2 .date-item:hover, #booking #horizontalcalendar #calendario2 .date-item:focus {
    background: var(--wp--preset--color--sand);
    transform: translateY(-2px);
  }
  #booking #horizontalcalendar #calendario2 .date-item.available {
    background: var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--white);
  }
  #booking #horizontalcalendar #calendario2 .date-item.selected {
    background: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--white);
  }
}

/**
 * Tour Sticky Aside Pricing
 * 
 * Sticky aside pricing display with gradient backgrounds,
 * price formatting, and next departure information.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.sticky-pricebox {
  padding-top: 2rem;
}

aside {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  aside {
    order: -2;
  }
}
@media (min-width: 768px) {
  aside {
    position: sticky;
    top: 0;
    top: var(--wp--preset--spacing--xs);
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media (max-height: 580px) {
  aside {
    top: 0;
  }
  aside .item {
    padding: 0;
  }
  aside .pricebox {
    padding: var(--wp--preset--spacing--sm);
  }
  aside .pricebox .items .item {
    font-size: var(--wp--preset--font-size--small);
  }
  aside .pricebox .totalbox {
    padding: 0;
    margin: 0;
    background: none;
  }
  aside .pricebox .bookingpro {
    margin: var(--wp--preset--spacing--xs);
  }
}
aside #comment {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--dark-green) 100%);
  color: var(--wp--preset--color--secondary-dark);
  border-radius: var(--wp--custom--effects--radius--large);
  text-align: center;
  box-shadow: var(--wp--custom--effects--shadow--medium);
  padding: var(--wp--preset--spacing--sm);
}
@media (min-width: 798px) {
  aside #comment {
    padding: var(--wp--preset--spacing--md);
  }
}
aside #comment ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--md);
}
aside #comment li:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--wp--preset--spacing--md);
}
aside #comment .fromprice {
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.9;
  font-weight: var(--wp--custom--typography--font-weight--regular);
  text-transform: uppercase;
  letter-spacing: var(--wp--custom--typography--letter-spacing--heading);
  margin-bottom: var(--wp--preset--spacing--sm);
  display: block;
}
aside #comment .fromprice + br {
  display: none;
}
aside #comment .fromprice + br + sup {
  font-size: var(--wp--preset--font-size--large);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  opacity: 0.9;
  vertical-align: baseline;
}
aside #comment .price {
  font-size: var(--wp--preset--font-size--xx-large);
  font-family: var(--wp--preset--font-family--accent);
  font-weight: var(--wp--custom--typography--font-weight--bold);
  letter-spacing: 0.02em;
  margin: 0;
  vertical-align: baseline;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
aside #comment .price small {
  font-weight: lighter;
  font-family: var(--wp--preset--font-family--tiny);
  font-size: var(--wp--preset--font-size--medium);
}
aside #comment .price + br + sup {
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.8;
  font-weight: var(--wp--custom--typography--font-weight--regular);
  vertical-align: baseline;
}
aside #comment #nextDeparture {
  border-radius: var(--wp--custom--effects--radius--medium);
  margin-top: var(--wp--preset--spacing--md);
  line-height: var(--wp--custom--typography--line-height--medium);
  backdrop-filter: blur(10px);
}
aside #comment #nextDeparture .next-departure-date {
  display: block;
  font-size: var(--wp--preset--font-size--medium);
  cursor: initial;
  letter-spacing: 0.08em;
}
aside #comment #nextDeparture #mesDisponible {
  color: var(--wp--preset--color--light-green);
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
  background: rgba(255, 255, 255, 0.15);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
  border-radius: var(--wp--custom--effects--radius--large);
  text-transform: uppercase;
  display: inline-block;
  margin-top: var(--wp--preset--spacing--xs);
}
aside #manyPax {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
}
aside #manyPax h3 {
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 500;
  color: white;
  text-transform: lowercase;
  margin: 0;
  letter-spacing: 0.08em;
}
aside .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: white;
  border: none;
  border-radius: 0.375rem;
  color: #374151;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.15s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
aside .button:hover {
  background: var(--wp--preset--color--secondary);
  color: white;
}
aside .button:active {
  transform: scale(0.95);
}
aside .button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
aside #paxnum {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wp--preset--color--sand);
  padding: 0 0.75rem;
}
aside .optioncell {
  padding: 0;
}

/**
 * Tour Responsive Utilities
 * 
 * Responsive behavior utilities, z-index management,
 * touch optimization, and safe area support.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
img, video, iframe, object, embed {
  max-width: 100%;
  height: auto;
}

p, div {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

pre, code {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  button, input[type=submit], input[type=button] {
    min-height: 44px;
    padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
  }
  input, select, textarea {
    min-height: 44px;
    font-size: var(--wp--preset--font-size--normal);
  }
}
@supports (padding: max(0px)) {
  .entry-content {
    padding-left: max(var(--wp--preset--spacing--sm), env(safe-area-inset-left));
    padding-right: max(var(--wp--preset--spacing--sm), env(safe-area-inset-right));
  }
}
@media (max-width: 767px) {
  .sidebar1.fixedTop {
    z-index: 1000;
  }
}
@media (min-width: 768px) {
  .sidebar1.fixedTop {
    z-index: 10;
  }
}

@media (max-width: 767px) {
  aside {
    z-index: 1;
  }
}
@media (min-width: 768px) {
  aside {
    z-index: 5;
  }
}

@media print {
  .sidebar1.fixedTop,
  aside,
  #booking {
    display: none;
  }
  .alltour {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .tourPane {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: var(--wp--preset--spacing--md);
  }
}
/**
 * Tour Content Layout & Styling
 * 
 * Modular SCSS architecture for tour content with specialized imports.
 * Maintains only the complex pricing table section here while other
 * sections are imported from focused modules.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/* Calendar container - Mobile First */
#calendario {
  max-width: 100%;
  margin: 0 auto;
  background: var(--wp--preset--color--background);
  border-radius: var(--wp--custom--effects--radius--medium);
  box-shadow: var(--wp--custom--effects--shadow--small);
  border: 1px solid var(--wp--preset--color--stone);
}
@media (prefers-color-scheme: dark) {
  #calendario {
    background: var(--wp--preset--color--dark-surface);
    border-color: var(--wp--preset--color--dark-border);
    box-shadow: var(--wp--custom--effects--shadow--dark);
  }
}

/* Month/Year selector - Mobile First */
.comboHead {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xs);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--wp--preset--spacing--md);
}

.comboHead select {
  background: var(--wp--preset--color--sand);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--sm);
  font-family: var(--wp--preset--font-family--body);
  color: var(--wp--preset--color--foreground);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  font-size: 0.75rem;
  font-weight: 500;
  width: 100%;
  max-width: 160px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27m6 8 4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right var(--wp--preset--spacing--xs) center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: calc(var(--wp--preset--spacing--sm) + 16px);
}
.comboHead select:hover {
  border-color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--white);
}
.comboHead select:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--effects--shadow--small);
}

.comboHead select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Calendar table - Mobile First */
#calendarBox {
  width: 100%;
}

#calendarSalidas {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  border: none;
  margin: 0;
  background: transparent;
}

/* Table headers - Mobile First with abbreviated names */
#calendarSalidas th {
  background: var(--wp--custom--gradients--primary-to-dark);
  color: var(--wp--preset--color--light-green);
  font-weight: 600;
  font-size: 0;
  text-align: center;
  padding: var(--wp--preset--spacing--xs);
  border-radius: var(--wp--custom--effects--radius--small);
  width: 14.28%;
  min-width: 40px;
  height: 32px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: none;
  box-shadow: var(--wp--custom--effects--shadow--small);
  position: relative;
}

/* Mobile day abbreviations */
#calendarSalidas th:nth-child(1)::after {
  content: "S";
}

#calendarSalidas th:nth-child(2)::after {
  content: "M";
}

#calendarSalidas th:nth-child(3)::after {
  content: "T";
}

#calendarSalidas th:nth-child(4)::after {
  content: "W";
}

#calendarSalidas th:nth-child(5)::after {
  content: "T";
}

#calendarSalidas th:nth-child(6)::after {
  content: "F";
}

#calendarSalidas th:nth-child(7)::after {
  content: "S";
}

#calendarSalidas th::after {
  font-size: 0.65rem;
  font-weight: 700;
}

/* All table cells - Mobile First */
#calendarSalidas td {
  width: 14.28%;
  height: 55px;
  min-width: 40px;
  padding: 0;
  border: none;
  vertical-align: top;
  position: relative;
  border-radius: var(--wp--custom--effects--radius--small);
  background: var(--wp--preset--color--sand);
  transition: all var(--wp--custom--effects--transition--medium) ease;
  overflow: hidden;
}

/* Visual elements for cells */
#calendarSalidas td::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wp--preset--color--stone);
  opacity: 0.5;
}

#calendarSalidas td::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
  background: var(--wp--preset--color--tertiary);
  border-radius: 50%;
  opacity: 0.3;
}

/* Empty cells */
#calendarSalidas td:empty {
  background: transparent;
}

#calendarSalidas td:empty::before,
#calendarSalidas td:empty::after {
  display: none;
}

/* Unavailable dates styling */
#calendarSalidas td:not(.availBox):not(:empty) {
  background: var(--wp--preset--color--stone);
  color: var(--wp--preset--color--foreground);
  opacity: 0.6;
  cursor: not-allowed;
}

#calendarSalidas td:not(.availBox):not(:empty)::before {
  background: var(--wp--preset--color--warm-stone);
}

#calendarSalidas td:not(.availBox):not(:empty)::after {
  background: var(--wp--preset--color--tertiary);
  opacity: 0.2;
}

#calendarSalidas td:not(.availBox):not(:empty) .resNum {
  color: var(--wp--preset--color--foreground);
  opacity: 0.7;
}

/* Available dates styling */
#calendarSalidas td.availBox {
  background: var(--wp--preset--color--white);
  border-radius: var(--wp--custom--effects--radius--small);
  transition: all var(--wp--custom--effects--transition--medium) ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--stone);
}
#calendarSalidas td.availBox:hover {
  transform: translateY(-1px);
  box-shadow: var(--wp--custom--effects--shadow--medium);
}
#calendarSalidas td.availBox:hover {
  border-color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--sand);
}
#calendarSalidas td.availBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wp--preset--color--light-green);
  opacity: 0.3;
}
#calendarSalidas td.availBox::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 5px;
  height: 5px;
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  opacity: 0.6;
}

#calendarSalidas td.availBox:hover {
  border-color: var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--effects--shadow--medium);
  transform: translateY(-1px);
  background: var(--wp--preset--color--sand);
}

#calendarSalidas td.availBox:hover::before {
  background: var(--wp--preset--color--primary);
  opacity: 0.4;
}

#calendarSalidas td.availBox:hover::after {
  background: var(--wp--preset--color--primary);
  opacity: 0.8;
  transform: scale(1.2);
}

#calendarSalidas td.availBox:active {
  transform: translateY(0);
}

/* Date numbers - Mobile First */
.resNum {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wp--preset--color--foreground);
  margin: 0;
  padding: 2px var(--wp--preset--spacing--xs) 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}

#calendarSalidas td.availBox .resNum {
  color: var(--wp--preset--color--primary);
}

/* Hide default break */
.firstbr, #calendario br {
  display: none;
}

/* Availability text - Mobile First */
.resText {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--wp--preset--color--light-green);
  margin: 0 2px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

#calendarSalidas td.availBox:hover .resText {
  color: var(--wp--preset--color--primary);
}

/* Hide check image */
#calendarSalidas td.availBox img, #calendarSalidas td.soldBox img {
  display: none;
}

#tituloMes {
  display: none;
}

.soldText {
  display: block;
  font-size: 0.8rem;
  color: var(--wp--preset--color--tertiary);
  transform: rotate(-15deg);
  position: absolute;
  top: 45%;
  right: 20%;
}

.soldBox::after {
  background: var(--wp--preset--color--tertiary);
}

/* Pick date instruction - Mobile First */
.resIns {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--wp--preset--color--white);
  font-size: 0.45rem;
  font-weight: 500;
  text-align: center;
  padding: 1px;
  opacity: 0;
  transform: translateY(100%);
  transition: all var(--wp--custom--effects--transition--medium) ease;
  border-radius: 0 0 var(--wp--custom--effects--radius--small) var(--wp--custom--effects--radius--small);
  z-index: 3;
}

#calendarSalidas td.availBox:hover .resIns {
  opacity: 1;
  transform: translateY(0);
  background: var(--wp--preset--color--secondary);
}

#calendarSalidas td.availBox.boxSel {
  background: var(--wp--preset--color--light-gold);
}

/* Hide nested span in resIns */
.resIns span {
  display: none;
}

/* Low availability visual indicators */
#calendarSalidas td.availBox[data-low-availability]::before {
  background: var(--wp--preset--color--secondary);
  opacity: 0.4;
}

#calendarSalidas td.availBox[data-low-availability] {
  border-color: var(--wp--preset--color--secondary);
}

#calendarSalidas td.availBox[data-low-availability]::after {
  background: var(--wp--preset--color--secondary);
  width: 6px;
  height: 6px;
  opacity: 0.8;
}

/* Very low availability (pulsing effect) */
#calendarSalidas td.availBox[data-very-low-availability]::after {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
/* Tablet styles - min-width approach */
@media (min-width: 480px) {
  .comboHead {
    flex-direction: row;
    gap: var(--wp--preset--spacing--sm);
  }
  .comboHead select {
    width: auto;
    min-width: 120px;
    font-size: 0.875rem;
    padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
    background-size: 14px;
    padding-right: calc(var(--wp--preset--spacing--md) + 18px);
  }
  #calendarSalidas th {
    height: 40px;
    min-width: 50px;
    padding: var(--wp--preset--spacing--sm);
  }
  #calendarSalidas th:nth-child(1)::after {
    content: "Sun";
  }
  #calendarSalidas th:nth-child(2)::after {
    content: "Mon";
  }
  #calendarSalidas th:nth-child(3)::after {
    content: "Tue";
  }
  #calendarSalidas th:nth-child(4)::after {
    content: "Wed";
  }
  #calendarSalidas th:nth-child(5)::after {
    content: "Thu";
  }
  #calendarSalidas th:nth-child(6)::after {
    content: "Fri";
  }
  #calendarSalidas th:nth-child(7)::after {
    content: "Sat";
  }
  #calendarSalidas th::after {
    font-size: 0.75rem;
  }
  #calendarSalidas td {
    height: 65px;
    min-width: 50px;
  }
  .resNum {
    font-size: 1rem;
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--xs) 0;
  }
  .resText {
    font-size: 0.75rem;
    margin: 6px 6px 0;
  }
  .resIns {
    text-transform: uppercase;
    font-size: 0.6rem;
    padding: 2px;
  }
}
@media (min-width: 768px) {
  #tituloMes {
    display: block;
    padding-right: 0.4rem;
    font-family: "Bebas Neue", "Inter", sans-serif;
    color: var(--wp--preset--color--light-green);
    font-weight: 600;
  }
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  #calendario {
    background: var(--wp--preset--color--dark-surface);
    border-color: var(--wp--preset--color--dark-border);
    box-shadow: var(--wp--custom--effects--shadow--dark);
  }
  .comboHead select {
    background: var(--wp--preset--color--dark-surface);
    border-color: var(--wp--preset--color--dark-border);
    color: var(--wp--preset--color--dark-text);
  }
  .comboHead select:hover {
    background: var(--wp--preset--color--dark-hover);
    border-color: var(--wp--preset--color--primary);
  }
  .comboHead select:focus {
    box-shadow: var(--wp--custom--effects--shadow--dark);
  }
  #calendarSalidas th {
    background: var(--wp--custom--gradients--primary-dark);
    color: var(--wp--preset--color--white);
  }
  #calendarSalidas td {
    background: var(--wp--preset--color--dark-card);
  }
  #calendarSalidas td::before {
    background: var(--wp--preset--color--dark-accent);
  }
  #calendarSalidas td::after {
    background: var(--wp--preset--color--primary-dark);
  }
  #calendarSalidas td:not(.availBox):not(:empty) {
    background: var(--wp--preset--color--dark-disabled);
    color: var(--wp--preset--color--dark-text-muted);
  }
  #calendarSalidas td:not(.availBox):not(:empty)::before {
    background: var(--wp--preset--color--dark-border);
  }
  #calendarSalidas td:not(.availBox):not(:empty)::after {
    background: var(--wp--preset--color--tertiary-dark);
  }
  #calendarSalidas td.availBox {
    background: var(--wp--preset--color--dark-surface);
    border-color: var(--wp--preset--color--dark-border);
  }
  #calendarSalidas td.availBox::before {
    background: var(--wp--preset--color--light-green-dark);
  }
  #calendarSalidas td.availBox::after {
    background: var(--wp--preset--color--primary-dark);
  }
  #calendarSalidas td.availBox:hover {
    background: var(--wp--preset--color--dark-hover);
    border-color: var(--wp--preset--color--primary);
  }
  #calendarSalidas td.availBox:hover::before {
    background: var(--wp--preset--color--primary-dark);
  }
  #calendarSalidas td.availBox:hover::after {
    background: var(--wp--preset--color--primary);
  }
  #calendarSalidas td.availBox.boxSel {
    background: var(--wp--preset--color--gold-dark);
  }
  #calendarSalidas td.availBox .resNum {
    color: var(--wp--preset--color--primary);
  }
  #calendarSalidas td.availBox .resText {
    color: var(--wp--preset--color--dark-text-muted);
  }
  #calendarSalidas td.availBox:hover .resText {
    color: var(--wp--preset--color--primary);
  }
  .resNum {
    color: var(--wp--preset--color--dark-text);
  }
  .resText {
    color: var(--wp--preset--color--dark-text-muted);
  }
  .soldText {
    color: var(--wp--preset--color--tertiary-dark);
  }
  .resIns {
    background: var(--wp--custom--gradients--primary-dark);
  }
  #tituloMes {
    color: var(--wp--preset--color--light-green-dark);
  }
}
/* Enhanced Accessibility */
@media (prefers-contrast: high) {
  #calendario {
    border-width: 2px;
    border-color: currentColor;
  }
  #calendarSalidas th {
    border: 2px solid currentColor;
  }
  #calendarSalidas td.availBox {
    border-width: 2px;
  }
  #calendarSalidas td.availBox:focus-visible {
    outline: 3px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
  }
  .comboHead select {
    border-width: 2px;
  }
  .comboHead select:focus {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #calendario {
    animation: none;
  }
  #calendarSalidas td,
  .comboHead select,
  .resIns {
    transition: none;
  }
  #calendarSalidas td.availBox:hover {
    transform: none;
  }
}
#calendarSalidas td.availBox {
  min-height: 44px;
  min-width: 44px;
}
#calendarSalidas td.availBox:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 1px;
  z-index: 10;
}
#calendarSalidas td.availBox[aria-pressed=true] {
  background: var(--wp--preset--color--light-gold);
  border-color: var(--wp--preset--color--primary);
}
#calendarSalidas td.availBox .resNum, #calendarSalidas td.availBox .resText {
  pointer-events: none;
}

.comboHead select {
  min-height: 44px;
}
.comboHead select:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 1px;
}

/* Enhanced Calendar Animations */
@keyframes calendar-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes calendar-cell-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 90, 49, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(43, 90, 49, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(43, 90, 49, 0);
  }
}
#calendarSalidas td.availBox {
  animation: calendar-cell-bounce 0.6s ease-out;
  animation-delay: calc(var(--cell-index, 0) * 0.05s);
}

@keyframes calendar-cell-bounce {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.calendar-loading {
  background: linear-gradient(90deg, var(--wp--preset--color--sand) 0%, var(--wp--preset--color--stone) 50%, var(--wp--preset--color--sand) 100%);
  background-size: 200% 100%;
  animation: calendar-shimmer 2s infinite;
}

@keyframes calendar-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.calendar-month-transition {
  animation: calendar-month-slide 0.4s ease-in-out;
}

@keyframes calendar-month-slide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/**
 * Tour Booking Component Styles
 *
 * Modern booking section with DRY principles, mobile-first design, and dark theme support.
 * Fully integrated with WordPress theme.json design tokens.
 *
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/* Booking Section Grid Layout (Mobile-First) */
.allbooking {
  margin: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--preset--spacing--lg);
}
@media (min-width: 768px) {
  .allbooking {
    gap: clamp(var(--wp--preset--spacing--lg), 4vw, var(--wp--preset--spacing--xxl));
  }
}

.optionbox {
  min-width: 0;
}

@container (max-width: 768px) {
  .pricebox {
    position: static;
    order: -1;
    margin-bottom: var(--wp--preset--spacing--xl);
  }
}
/* Booking Title */
.booktit {
  color: var(--wp--preset--color--primary);
  font-size: clamp(var(--wp--preset--font-size--x-large), 4vw, var(--wp--preset--font-size--huge));
  margin-bottom: var(--wp--preset--spacing--sm);
  grid-column: 1/-1;
  font-weight: var(--wp--custom--typography--font-weight--bold);
  font-family: var(--wp--preset--font-family--heading);
}
@media (prefers-color-scheme: dark) {
  .booktit {
    color: var(--wp--preset--color--primary-dark);
  }
}

/* Price Box Components */
.pricebox {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--dark-green) 100%);
  color: var(--wp--preset--color--white);
  margin: 1rem;
  padding: clamp(var(--wp--preset--spacing--md), 3vw, var(--wp--preset--spacing--md));
  border-radius: var(--wp--custom--effects--radius--large);
  height: -moz-fit-content;
  height: fit-content;
}
@media (prefers-color-scheme: dark) {
  .pricebox {
    background: linear-gradient(135deg, var(--wp--preset--color--primary-dark) 0%, var(--wp--preset--color--dark-green) 100%);
  }
}
.pricebox .items .item {
  padding: 0.3rem 0 0;
}
.pricebox .itembox {
  font-size: var(--wp--preset--font-size--small);
}
.pricebox .itembox .count, .pricebox .itembox #pricepax {
  padding: 0 var(--wp--preset--spacing--xs) 0 0;
}
.pricebox .itembox p {
  margin: 0;
}

.headbox {
  text-align: center;
}

.trekdates {
  font-size: var(--wp--preset--font-size--normal);
  margin-bottom: var(--wp--preset--spacing--sm);
}

.fulldate {
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
  display: block;
  color: goldenrod;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--wp--preset--spacing--xs) 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.totalbox {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--md);
  border-radius: var(--wp--custom--effects--radius--large);
  margin-top: var(--wp--preset--spacing--sm);
}

.totalinbut {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
}

.bookingpro {
  text-align: center;
  margin-top: var(--wp--preset--spacing--md);
}

.butnext {
  border: none;
  border-radius: var(--wp--custom--effects--radius--large);
  cursor: pointer;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  transition: all var(--wp--custom--effects--transition--fast);
  text-align: center;
  background: var(--wp--preset--gradient--sunrise-gradient);
  color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--xl);
  width: 100%;
}
.butnext:hover:not(.disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}
.butnext.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--wp--preset--color--stone);
}

/* Option Cells */
.optioncell {
  background: var(--wp--preset--color--sand);
  padding: 1rem 0.4rem;
  border-radius: var(--wp--custom--effects--radius--large);
  margin-bottom: var(--wp--preset--spacing--md);
  border-left: 3px solid var(--wp--preset--color--primary);
  text-align: right;
}
@media (prefers-color-scheme: dark) {
  .optioncell {
    background: var(--wp--preset--color--sand-dark);
    border-left-color: var(--wp--preset--color--primary-dark);
  }
}
.optioncell h3 {
  margin-bottom: var(--wp--preset--spacing--md);
  font-size: clamp(var(--wp--preset--font-size--normal), 2vw, var(--wp--preset--font-size--large));
  font-weight: normal;
  display: inline;
}
@media (prefers-color-scheme: dark) {
  .optioncell h3 {
    color: var(--wp--preset--color--primary);
  }
}
.optioncell h2 {
  color: var(--wp--preset--color--primary);
  margin: var(--wp--preset--spacing--xl) 0 var(--wp--preset--spacing--lg) 0;
  font-size: clamp(var(--wp--preset--font-size--x-large), 3vw, var(--wp--preset--font-size--xx-large));
  text-align: center;
  grid-column: 1/-1;
  font-weight: var(--wp--custom--typography--font-weight--bold);
}
@media (prefers-color-scheme: dark) {
  .optioncell h2 {
    color: var(--wp--preset--color--primary-dark);
  }
}
.optioncell > p, .optioncell input[type=radio] {
  float: right;
}

/* Form Controls */
.button {
  border: none;
  border-radius: var(--wp--custom--effects--radius--large);
  cursor: pointer;
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  transition: all var(--wp--custom--effects--transition--fast);
  text-align: center;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: var(--wp--preset--font-size--medium);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wp--custom--effects--transition--medium);
}
.button:hover:not(.disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}
.button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--wp--preset--color--stone);
}
.button:hover {
  background: var(--wp--preset--color--dark-green);
  transform: translateY(-1px);
  box-shadow: var(--wp--custom--effects--shadow--small);
}
@media (min-width: 480px) {
  .button {
    width: 35px;
    height: 35px;
  }
}

#paxnum, #stunum, #pornum, #bagnum, #polnum, #tennum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--typography--font-weight--semi-bold);
  text-align: center;
  margin: 0 var(--wp--preset--spacing--xs);
  color: var(--wp--preset--color--foreground);
  border-radius: var(--wp--custom--effects--radius--small);
  transition: all var(--wp--custom--effects--transition--fast);
}
@media (prefers-color-scheme: dark) {
  #paxnum, #stunum, #pornum, #bagnum, #polnum, #tennum {
    color: var(--wp--preset--color--foreground-dark);
  }
}
/* Toggle Switch Styling */
input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 54px;
  height: 24px;
  background-color: var(--wp--preset--color--stone);
  border-radius: 24px;
  cursor: pointer;
  outline: none;
  transition: all var(--wp--custom--effects--transition--medium);
  margin: 0 1rem;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  transition: all var(--wp--custom--effects--transition--medium);
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 2px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--wp--custom--effects--shadow--small);
  transition: all var(--wp--custom--effects--transition--medium);
}
input[type=checkbox]:checked {
  background-color: var(--wp--preset--color--light-green);
}
input[type=checkbox]:checked::after {
  transform: translateX(26px);
  right: 4px;
}
input[type=checkbox]:focus {
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.3);
}
input[type=checkbox]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (prefers-color-scheme: dark) {
  input[type=checkbox] {
    background-color: var(--wp--preset--color--stone-dark);
  }
  input[type=checkbox]:checked {
    background-color: var(--wp--preset--color--light-green);
  }
}

/* Radio Button Styling */
input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 0.15em solid var(--wp--preset--color--light-green);
  border-radius: 50%;
  width: 2em;
  height: 2em;
}
input[type=radio]:checked {
  background-color: var(--wp--preset--color--light-green);
}
@media (prefers-color-scheme: dark) {
  input[type=radio] {
    border-color: var(--wp--preset--color--light-green);
  }
  input[type=radio]:checked {
    background-color: var(--wp--preset--color--light-green);
  }
}

/* Hotel Options */
.hotelopt {
  background: var(--wp--preset--color--white);
  border-radius: var(--wp--custom--effects--radius--large);
  box-shadow: var(--wp--custom--effects--shadow--small);
  border: 1px solid var(--wp--preset--color--stone);
  transition: all var(--wp--custom--effects--transition--fast);
  padding: var(--wp--preset--spacing--md);
  margin: var(--wp--preset--spacing--sm) 0;
  transition: all var(--wp--custom--effects--transition--medium);
}
@media (prefers-color-scheme: dark) {
  .hotelopt {
    background: var(--wp--preset--color--white-dark);
    border-color: var(--wp--preset--color--stone-dark);
  }
}
.hotelopt > br:first-of-type {
  display: none;
}
.hotelopt:hover {
  border-color: var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--effects--shadow--medium);
  transform: translateY(-1px);
}
@media (prefers-color-scheme: dark) {
  .hotelopt:hover {
    border-color: var(--wp--preset--color--primary-dark);
    box-shadow: var(--wp--custom--effects--shadow--medium);
  }
}
.hotelopt img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--wp--custom--effects--radius--small);
  margin: var(--wp--preset--spacing--xs);
}
.hotelopt input {
  cursor: pointer;
}

.hide {
  display: none;
}

/* Error/Warning States */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/**
 * Tour Content Layout & Styling
 * 
 * Modular SCSS architecture for tour content with specialized imports.
 * Maintains only the complex pricing table section here while other
 * sections are imported from focused modules.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
/* Horizontal Calendar - Fully Responsive Design */
#horizontalcalendar {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
#horizontalcalendar header {
  width: 100%;
  text-align: center;
  padding: clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--md)) 0;
}
#horizontalcalendar header h2, #horizontalcalendar header h3, #horizontalcalendar header h4 {
  font-family: var(--wp--preset--font-family--heading);
  color: var(--wp--preset--color--primary);
  margin-bottom: var(--wp--preset--spacing--sm);
  font-size: clamp(var(--wp--preset--font-size--medium), 3vw, var(--wp--preset--font-size--x-large));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#horizontalcalendar #calendarSalidas {
  width: 100%;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
}
#horizontalcalendar #calendarSalidas tbody tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--wp--preset--spacing--xs);
}
#horizontalcalendar #calendarSalidas tbody tr:first-child {
  display: none;
}
#horizontalcalendar #calendarSalidas tbody tr td {
  display: none;
  border: none;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox {
  width: calc(100% - clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--lg)));
  margin: clamp(var(--wp--preset--spacing--xs), 1.5vw, var(--wp--preset--spacing--xs)) auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  min-height: clamp(50px, 8vw, 80px);
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--small);
  box-shadow: var(--wp--custom--effects--shadow--small), 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox:hover {
  transform: translateY(-2px);
  box-shadow: var(--wp--custom--effects--shadow--medium), 0 4px 12px rgba(43, 90, 49, 0.2);
  border-color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--sand);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 90, 49, 0.05) 0%, transparent 100%);
  pointer-events: none;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox:focus-visible {
  outline: 3px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
  z-index: 10;
  box-shadow: var(--wp--custom--effects--shadow--medium), 0 0 0 3px rgba(43, 90, 49, 0.2);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox:active {
  transform: translateY(-1px);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox::after {
  border: solid var(--wp--preset--color--primary);
  border-width: 0 1px 1px 0;
  display: none;
  padding: 4px;
  transform: rotate(-45deg);
  content: "";
  margin: var(--wp--preset--spacing--sm);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
  padding: clamp(var(--wp--preset--spacing--xs), 1.5vw, var(--wp--preset--spacing--sm));
  height: 100%;
  background: var(--wp--preset--color--light-green);
  color: var(--wp--preset--color--primary);
  text-align: center;
  border-top-left-radius: var(--wp--custom--effects--radius--small);
  border-bottom-left-radius: var(--wp--custom--effects--radius--small);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: clamp(50px, 8vw, 80px);
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, var(--wp--preset--color--light-green) 0%, color-mix(in srgb, var(--wp--preset--color--light-green) 90%, var(--wp--preset--color--primary) 10%) 100%);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
#horizontalcalendar .dayMonth .resNum {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-family: var(--wp--preset--font-family--heading);
  display: block;
  line-height: 0.9;
  color: var(--wp--preset--color--primary);
  margin-bottom: clamp(1px, 0.5vw, 4px);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}
#horizontalcalendar .dayMonth .resMonth {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(0.55rem, 1.2vw, 0.75rem);
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--primary);
  opacity: 0.9;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha {
  flex: 2 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  min-width: 0;
  gap: clamp(var(--wp--preset--spacing--xs), 1vw, var(--wp--preset--spacing--sm));
}
#horizontalcalendar .rango-fecha em {
  display: block;
  font-size: clamp(0.5rem, 1.8vw, 0.8rem);
  font-style: normal;
  text-transform: uppercase;
  color: var(--wp--preset--color--foreground);
  line-height: 1.1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
#horizontalcalendar .rango-fecha .coma {
  display: none;
}
#horizontalcalendar .rango-fecha .rango-day {
  margin-right: 0;
}
#horizontalcalendar .rango-fecha .rango-year {
  display: block;
}
#horizontalcalendar .rango-fecha .start-date,
#horizontalcalendar .rango-fecha .end-date {
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
  text-align: center;
  font-size: clamp(0.55rem, 1.3vw, var(--wp--preset--font-size--small));
  color: var(--wp--preset--color--foreground);
  white-space: nowrap;
}
#horizontalcalendar .rango-fecha .date-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: clamp(16px, 3vw, 24px);
  height: clamp(16px, 3vw, 24px);
  flex-shrink: 0;
  position: relative;
}
#horizontalcalendar .rango-fecha .date-separator i {
  display: none;
}
#horizontalcalendar .rango-fecha .date-separator::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: clamp(4px, 1vw, 7px) 0 clamp(4px, 1vw, 7px) clamp(6px, 1.5vw, 10px);
  border-color: transparent transparent transparent var(--wp--preset--color--primary);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price {
  padding: clamp(var(--wp--preset--spacing--xs), 1.5vw, var(--wp--preset--spacing--sm));
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-width: clamp(70px, 12vw, 100px);
  flex-shrink: 0;
  border-radius: var(--wp--custom--effects--radius--small);
  margin: clamp(2px, 0.5vw, var(--wp--preset--spacing--xs));
  position: relative;
}
#horizontalcalendar .res-price i {
  font-weight: lighter;
  font-style: normal;
}
#horizontalcalendar .res-price p {
  margin: 0 0.2rem;
}
#horizontalcalendar .res-price .price-old {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--wp--preset--font-family--heading);
  text-decoration: line-through;
  color: var(--wp--preset--color--light-green);
  font-size: var(--wp--preset--font-size--normal);
  opacity: 0.7;
  margin-bottom: clamp(1px, 0.5vw, var(--wp--preset--spacing--xs));
}
#horizontalcalendar .res-price .price-old i {
  font-size: 0.8em;
  margin-right: clamp(2px, 0.5vw, var(--wp--preset--spacing--xs));
  text-transform: uppercase;
}
#horizontalcalendar .res-price .price-sale {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--wp--preset--font-family--heading);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: var(--wp--preset--color--primary);
  line-height: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768) {
  #horizontalcalendar .res-price .price-sale {
    flex-direction: column;
  }
}
#horizontalcalendar .res-price .price-sale span {
  font-size: clamp(0.45rem, 1.2vw, 0.6rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--luminous-vivid-orange);
  padding: clamp(1px, 0.3vw, 3px) clamp(3px, 0.8vw, 6px);
  border-radius: clamp(2px, 0.5vw, 4px);
  margin-top: clamp(1px, 0.3vw, 3px);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(var(--wp--preset--spacing--xs), 1.5vw, var(--wp--preset--spacing--sm));
  flex-shrink: 0;
  min-width: clamp(60px, 10vw, 90px);
}
#horizontalcalendar .goto-book button {
  border: none;
  font-size: clamp(0.65rem, 1.5vw, 0.7rem);
  padding: clamp(var(--wp--preset--spacing--xs), 1vw, var(--wp--preset--spacing--sm)) clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--md));
  min-height: clamp(32px, 6vw, 44px);
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: var(--wp--custom--effects--radius--small);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--sand);
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
#horizontalcalendar .goto-book button:hover {
  background: var(--wp--preset--color--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(43, 90, 49, 0.3);
}
#horizontalcalendar .goto-book button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#horizontalcalendar .goto-book button:focus-visible {
  outline: 3px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(43, 90, 49, 0.2);
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox h4 {
  display: flex;
  font-size: var(--wp--preset--font-size--large);
  font-family: var(--wp--preset--font-family--heading);
  color: var(--wp--preset--color--foreground);
  margin: 0;
}
#horizontalcalendar #calendarSalidas tbody tr td.soldOut {
  display: none;
}
#horizontalcalendar #calendarSalidas tbody tr td br {
  display: none;
}

/* Animation Keyframes */
@keyframes gentle-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
/* Enhanced Dark Mode Support */
@media (prefers-color-scheme: dark) {
  #horizontalcalendar header h2, #horizontalcalendar header h3, #horizontalcalendar header h4 {
    color: var(--wp--preset--color--primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #horizontalcalendar #calendario2 {
    background: var(--wp--preset--color--dark-surface);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    background: var(--wp--preset--color--dark-card);
    border-color: var(--wp--preset--color--dark-border);
    box-shadow: var(--wp--custom--effects--shadow--dark), 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox:hover {
    background: var(--wp--preset--color--dark-hover);
    border-color: var(--wp--preset--color--primary);
    box-shadow: var(--wp--custom--effects--shadow--dark), 0 4px 12px rgba(127, 182, 133, 0.3);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox:hover::before {
    background: linear-gradient(135deg, rgba(127, 182, 133, 0.1) 0%, transparent 100%);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--light-green-dark) 100%);
    color: var(--wp--preset--color--white);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth .resNum {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth .resMonth {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha em {
    color: var(--wp--preset--color--dark-text);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .start-date,
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .end-date {
    color: var(--wp--preset--color--dark-text);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .date-separator::before {
    border-color: transparent transparent transparent var(--wp--preset--color--primary);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .date-separator::after {
    background: rgba(127, 182, 133, 0.2);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price {
    background: linear-gradient(135deg, var(--wp--preset--color--dark-card) 0%, color-mix(in srgb, var(--wp--preset--color--dark-card) 95%, var(--wp--preset--color--primary) 5%) 100%);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-old {
    color: var(--wp--preset--color--dark-text-muted);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale {
    color: var(--wp--preset--color--primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
    background: var(--wp--preset--color--secondary);
    color: var(--foreground);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button:hover {
    background: var(--wp--preset--color--primary);
    box-shadow: 0 4px 10px rgba(127, 182, 133, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button:focus-visible {
    box-shadow: 0 0 0 3px rgba(127, 182, 133, 0.4);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox h4 {
    color: var(--wp--preset--color--dark-text);
  }
}
/* Enhanced Accessibility for Horizontal Calendar */
#horizontalcalendar #calendarSalidas tbody tr td.availBox {
  min-height: 60px;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
  z-index: 10;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox[aria-selected=true] {
  background: var(--wp--preset--color--light-gold);
  border-color: var(--wp--preset--color--primary);
  border-width: 2px;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
  min-height: 44px;
  min-width: 44px;
}
#horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 1px;
}

@media (prefers-contrast: high) {
  #horizontalcalendar #calendario2 {
    border-width: 2px;
    border-color: currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    border-width: 2px;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    border: 1px solid currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
    border: 2px solid currentColor;
  }
}
/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  #horizontalcalendar #calendario2 {
    border-width: 2px;
    border-color: currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    border-width: 2px;
    border-color: currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    border: 2px solid currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price {
    border-width: 2px;
    border-color: currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
    border: 3px solid currentColor;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button:focus-visible {
    outline: 4px solid currentColor;
    outline-offset: 3px;
  }
}
/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  #horizontalcalendar #calendario2 {
    animation: none;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    transition: none;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox:hover {
    transform: none;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
    transition: none;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button:hover {
    transform: none;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale span {
    animation: none;
  }
}
/* Enhanced Animations for Horizontal Calendar */
@keyframes horizontal-card-fade-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes horizontal-card-pulse {
  0%, 100% {
    box-shadow: var(--wp--custom--effects--shadow--small);
  }
  50% {
    box-shadow: var(--wp--custom--effects--shadow--medium), 0 0 0 4px rgba(43, 90, 49, 0.1);
  }
}
.horizontal-date-selected {
  animation: horizontal-date-select 0.4s ease-out;
}

@keyframes horizontal-date-select {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.horizontal-calendar-loading .dayMonth {
  background: linear-gradient(90deg, var(--wp--preset--color--light-green) 0%, var(--wp--preset--color--sand) 50%, var(--wp--preset--color--light-green) 100%);
  background-size: 200% 100%;
  animation: horizontal-shimmer 2s infinite;
}

@keyframes horizontal-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
/* Responsive Breakpoints with Fluid Scaling */
/* Small tablets and larger phones */
@media (min-width: 480px) {
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    min-height: clamp(55px, 10vw, 70px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    min-width: clamp(55px, 10vw, 70px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book {
    min-width: clamp(65px, 12vw, 85px);
  }
}
/* Tablets */
@media (min-width: 768px) {
  #horizontalcalendar header {
    padding: clamp(var(--wp--preset--spacing--md), 3vw, var(--wp--preset--spacing--lg)) 0;
  }
  #horizontalcalendar #calendario2 {
    max-width: 100%;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    min-height: clamp(65px, 8vw, 80px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    min-width: clamp(65px, 10vw, 80px);
    padding: clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--md));
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha {
    padding: 0 clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--lg));
    gap: clamp(var(--wp--preset--spacing--xs), 1.5vw, var(--wp--preset--spacing--sm));
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book {
    min-width: clamp(70px, 12vw, 95px);
    padding: clamp(var(--wp--preset--spacing--sm), 2vw, var(--wp--preset--spacing--md));
  }
}
/* Desktop and Large Screens */
@media (min-width: 1024px) {
  #horizontalcalendar #calendario2 {
    max-width: 100%;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox {
    min-height: clamp(70px, 7vw, 85px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth {
    min-width: clamp(75px, 9vw, 90px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth .resNum {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth .resMonth {
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .start-date,
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .end-date {
    font-size: clamp(var(--wp--preset--font-size--small), 1.5vw, var(--wp--preset--font-size--normal));
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .rango-fecha .date-separator {
    min-width: clamp(20px, 3vw, 28px);
    height: clamp(20px, 3vw, 28px);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale span {
    font-size: clamp(0.5rem, 1vw, 0.65rem);
  }
}
/* Extra Large Screens - Prevent over-scaling */
@media (min-width: 1440px) {
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .dayMonth .resNum {
    font-size: 1.8rem;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .res-price .price-sale {
    font-size: 1.5rem;
  }
  #horizontalcalendar #calendarSalidas tbody tr td.availBox .goto-book button {
    font-size: 0.9rem;
  }
}
/* Tour Optionals */
.tourOptionals {
  margin-top: var(--space-xl);
}

.tourOptionals h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: 600;
}

.tourOptionals ol {
  list-style: none;
  counter-reset: item;
}

.tourOptionals li {
  counter-increment: item;
  background: var(--sand);
  margin-bottom: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary);
  position: relative;
}

.tourOptionals li::before {
  content: counter(item);
  background: var(--primary);
  color: var(--white);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  position: absolute;
  left: -0.75rem;
  top: var(--space-md);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tour-requirements-table {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: var(--wp--preset--color--white, #FFFFFF);
  border-radius: var(--wp--custom--effects--radius--large);
  box-shadow: var(--wp--custom--effects--shadow--small);
  overflow: hidden;
  margin: var(--wp--preset--spacing--md, 24px) 0;
  padding: var(--wp--preset--spacing--sm);
  align-items: stretch;
  justify-items: stretch;
}
.tour-requirements-table.is-layout-constrained, .tour-requirements-table.wp-block-group-is-layout-constrained {
  display: grid;
}
.tour-requirements-table.is-layout-constrained > *, .tour-requirements-table.wp-block-group-is-layout-constrained > * {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.tour-requirements-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 32px 0 0;
  border-color: var(--wp--preset--color--primary, #2A5D45) transparent transparent transparent;
  z-index: 3;
}
.tour-requirements-table::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wp--preset--color--primary, #2A5D45) 0%, var(--wp--preset--color--light-green, #7FB685) 100%);
  z-index: 2;
}

.tour-requirements-table > .wp-block-group {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.tour-requirements-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--wp--preset--spacing--xs);
  background: var(--wp--preset--color--sand, #F8F7F4);
  border-radius: var(--wp--custom--effects--radius--medium);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--wp--custom--effects--transition--fast) ease;
  animation: fadeIn var(--wp--custom--effects--transition--medium) ease-out both;
  width: 100%;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
  justify-self: stretch;
  align-self: stretch;
}
.tour-requirements-row:nth-child(1) {
  animation-delay: 0.025s;
}
.tour-requirements-row:nth-child(2) {
  animation-delay: 0.05s;
}
.tour-requirements-row:nth-child(3) {
  animation-delay: 0.075s;
}
.tour-requirements-row:nth-child(4) {
  animation-delay: 0.1s;
}
.tour-requirements-row:nth-child(5) {
  animation-delay: 0.125s;
}
.tour-requirements-row:nth-child(6) {
  animation-delay: 0.15s;
}
.tour-requirements-row:nth-child(7) {
  animation-delay: 0.175s;
}
.tour-requirements-row:nth-child(8) {
  animation-delay: 0.2s;
}
.tour-requirements-row:nth-child(9) {
  animation-delay: 0.225s;
}
.tour-requirements-row:nth-child(10) {
  animation-delay: 0.25s;
}
.tour-requirements-row:nth-child(11) {
  animation-delay: 0.275s;
}
.tour-requirements-row:nth-child(12) {
  animation-delay: 0.3s;
}
.tour-requirements-row:hover {
  background: var(--wp--preset--color--white, #FFFFFF);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: var(--wp--custom--effects--shadow--small);
  transform: translateY(-1px);
}
.tour-requirements-row:hover .tour-requirements-row__icon::before {
  background: var(--wp--preset--color--primary, #2A5D45);
  border-color: var(--wp--preset--color--primary, #2A5D45);
}
.tour-requirements-row:hover .tour-requirements-row__icon svg {
  color: var(--wp--preset--color--white, #FFFFFF);
  transform: scale(1.05);
}
.tour-requirements-row:hover .tour-requirements-row__label {
  color: var(--wp--preset--color--primary, #2A5D45);
}

.tour-requirements-row__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tour-requirements-row__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wp--preset--color--white, #FFFFFF);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--wp--custom--effects--transition--fast) ease;
  z-index: 0;
}
.tour-requirements-row__icon svg {
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--wp--preset--color--primary, #2A5D45);
  z-index: 1;
  transition: all var(--wp--custom--effects--transition--fast) ease;
}

.tour-requirements-row__content {
  flex: 1;
  min-width: 0;
}
.tour-requirements-row__content, .tour-requirements-row__content.is-layout-flex, .tour-requirements-row__content.is-nowrap, .tour-requirements-row__content.wp-block-group-is-layout-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 4px;
}

.tour-requirements-row__label {
  font-family: var(--wp--preset--font-family--heading, system-ui, sans-serif);
  color: var(--wp--preset--color--foreground, #1C1D19);
  margin: 0;
  padding: var(--wp--preset--spacing--xs) 0 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--wp--custom--effects--transition--fast) ease;
  line-height: 1.3;
  order: 1;
}

.tour-requirements-row__value {
  font-family: var(--wp--preset--font-family--body, system-ui, sans-serif);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--foreground, #1C1D19);
  line-height: 1.5;
  margin: 0;
  opacity: 0.7;
  word-break: break-word;
  order: 2;
}
.tour-requirements-row__value:empty::before {
  content: "—";
  color: var(--wp--preset--color--stone, #999);
}

.tour-requirements-row--insurance .tour-requirements-row__value::after {
  content: "REQUIRED";
  display: inline-block;
  margin-left: var(--wp--preset--spacing--xs);
  font-family: var(--wp--preset--font-family--body, system-ui, sans-serif);
  font-size: 9px;
  color: var(--wp--preset--color--white, #FFFFFF);
  background: var(--wp--preset--color--secondary, #E67E22);
  padding: 3px 8px;
  border-radius: var(--wp--custom--effects--radius--medium);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .tour-requirements-table {
    gap: 10px;
    padding: 14px;
  }
  .tour-requirements-row {
    padding: 14px var(--wp--preset--spacing--sm);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .tour-requirements-table {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: var(--wp--custom--effects--radius--medium);
  }
  .tour-requirements-table::before {
    border-width: 28px 28px 0 0;
  }
  .tour-requirements-row {
    padding: 14px;
  }
  .tour-requirements-row__icon {
    width: 34px;
    height: 34px;
  }
  .tour-requirements-row__icon svg {
    width: 16px;
    height: 16px;
  }
  .tour-requirements-row__label {
    font-size: 10px;
  }
  .tour-requirements-row__value {
    font-size: var(--wp--preset--font-size--tiny);
  }
  .tour-requirements-row--insurance .tour-requirements-row__value::after {
    display: block;
    margin-left: 0;
    margin-top: 6px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.is-dark-mode .tour-requirements-table,
body.dark-mode .tour-requirements-table,
[data-theme=dark] .tour-requirements-table {
  background: var(--wp--preset--color--background-dark, #1C1D19);
  box-shadow: var(--wp--custom--effects--shadow--medium);
}
.is-dark-mode .tour-requirements-table::before,
body.dark-mode .tour-requirements-table::before,
[data-theme=dark] .tour-requirements-table::before {
  border-color: var(--wp--preset--color--light-green, #7FB685) transparent transparent transparent;
}
.is-dark-mode .tour-requirements-table::after,
body.dark-mode .tour-requirements-table::after,
[data-theme=dark] .tour-requirements-table::after {
  background: linear-gradient(90deg, var(--wp--preset--color--light-green, #7FB685) 0%, var(--wp--preset--color--primary, #2A5D45) 100%);
}
.is-dark-mode .tour-requirements-row,
body.dark-mode .tour-requirements-row,
[data-theme=dark] .tour-requirements-row {
  background: var(--wp--preset--color--white-dark, #232420);
  border-color: rgba(255, 255, 255, 0.06);
}
.is-dark-mode .tour-requirements-row:hover,
body.dark-mode .tour-requirements-row:hover,
[data-theme=dark] .tour-requirements-row:hover {
  background: var(--wp--preset--color--sand-dark, #2F302B);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--wp--custom--effects--shadow--medium);
}
.is-dark-mode .tour-requirements-row:hover .tour-requirements-row__icon::before,
body.dark-mode .tour-requirements-row:hover .tour-requirements-row__icon::before,
[data-theme=dark] .tour-requirements-row:hover .tour-requirements-row__icon::before {
  background: var(--wp--preset--color--light-green, #7FB685);
  border-color: var(--wp--preset--color--light-green, #7FB685);
}
.is-dark-mode .tour-requirements-row:hover .tour-requirements-row__icon svg,
body.dark-mode .tour-requirements-row:hover .tour-requirements-row__icon svg,
[data-theme=dark] .tour-requirements-row:hover .tour-requirements-row__icon svg {
  color: var(--wp--preset--color--background-dark, #1C1D19);
}
.is-dark-mode .tour-requirements-row__icon::before,
body.dark-mode .tour-requirements-row__icon::before,
[data-theme=dark] .tour-requirements-row__icon::before {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.is-dark-mode .tour-requirements-row__icon svg,
body.dark-mode .tour-requirements-row__icon svg,
[data-theme=dark] .tour-requirements-row__icon svg {
  color: var(--wp--preset--color--light-green, #7FB685);
}
.is-dark-mode .tour-requirements-row__label,
body.dark-mode .tour-requirements-row__label,
[data-theme=dark] .tour-requirements-row__label {
  color: var(--wp--preset--color--foreground-dark, #E8E6E0);
}
.is-dark-mode .tour-requirements-row__value,
body.dark-mode .tour-requirements-row__value,
[data-theme=dark] .tour-requirements-row__value {
  color: var(--wp--preset--color--stone, #C9C9C7);
}

@media (prefers-color-scheme: dark) {
  .tour-requirements-table:not(.force-light) {
    background: var(--wp--preset--color--background-dark, #1C1D19);
    box-shadow: var(--wp--custom--effects--shadow--medium);
  }
  .tour-requirements-row:not(.force-light) {
    background: var(--wp--preset--color--white-dark, #232420);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .tour-requirements-row:not(.force-light):hover {
    background: var(--wp--preset--color--sand-dark, #2F302B);
  }
  .tour-requirements-row__icon:not(.force-light)::before {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
  }
  .tour-requirements-row__icon:not(.force-light) svg {
    color: var(--wp--preset--color--light-green, #7FB685);
  }
  .tour-requirements-row__label:not(.force-light) {
    color: var(--wp--preset--color--foreground-dark, #E8E6E0);
  }
}
@media print {
  .tour-requirements-table {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .tour-requirements-table::before, .tour-requirements-table::after {
    display: none;
  }
  .tour-requirements-row {
    background: #f9f9f9;
    border: 1px solid #eee;
  }
  .tour-requirements-row:hover {
    transform: none;
    box-shadow: none;
  }
  .tour-requirements-row__icon::before {
    border: 1px solid #ccc;
  }
  .tour-requirements-row--insurance .tour-requirements-row__value::after {
    background: #666;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
.tour-requirements-list {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xs);
  width: 100%;
}
.tour-requirements-list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px var(--wp--preset--spacing--xs);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.tour-requirements-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tour-requirements-list__item:first-child {
  padding-top: 0;
}
.tour-requirements-list__service, .tour-requirements-list__method, .tour-requirements-list__term, .tour-requirements-list__requirement, .tour-requirements-list__document, .tour-requirements-list__milestone {
  font-weight: 500;
  color: var(--wp--preset--color--foreground);
  flex-basis: 100%;
}
.tour-requirements-list__label {
  font-weight: 500;
  color: var(--wp--preset--color--foreground);
  margin-right: 4px;
}
.tour-requirements-list__label::after {
  content: "";
}
.tour-requirements-list__value {
  color: var(--wp--preset--color--foreground);
  opacity: 0.85;
}
.tour-requirements-list__phone, .tour-requirements-list__email, .tour-requirements-list__available, .tour-requirements-list__description, .tour-requirements-list__fees, .tour-requirements-list__notes, .tour-requirements-list__percentage, .tour-requirements-list__due-date {
  font-size: var(--wp--preset--font-size--tiny);
}
.tour-requirements-list__phone::before {
  content: "☎";
  margin-right: 4px;
}
.tour-requirements-list__email::before {
  content: "✉";
  margin-right: 4px;
}
.tour-requirements-list__available::before {
  content: "🕑";
  margin-right: 4px;
}
.tour-requirements-list__percentage::before {
  content: "";
}
.tour-requirements-list__due-date::before {
  content: "Due: ";
  font-weight: 500;
}
.tour-requirements-list__fees::before {
  content: "Fee: ";
  font-weight: 500;
}
.tour-requirements-list__mandatory {
  font-size: 9px;
  font-weight: 600;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--secondary);
  padding: 2px 6px;
  border-radius: var(--wp--custom--effects--radius--small);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.is-dark-mode .tour-requirements-list__item,
body.dark-mode .tour-requirements-list__item,
[data-theme=dark] .tour-requirements-list__item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.is-dark-mode .tour-requirements-list__service, .is-dark-mode .tour-requirements-list__method, .is-dark-mode .tour-requirements-list__term, .is-dark-mode .tour-requirements-list__requirement, .is-dark-mode .tour-requirements-list__document, .is-dark-mode .tour-requirements-list__milestone, .is-dark-mode .tour-requirements-list__label,
body.dark-mode .tour-requirements-list__service,
body.dark-mode .tour-requirements-list__method,
body.dark-mode .tour-requirements-list__term,
body.dark-mode .tour-requirements-list__requirement,
body.dark-mode .tour-requirements-list__document,
body.dark-mode .tour-requirements-list__milestone,
body.dark-mode .tour-requirements-list__label,
[data-theme=dark] .tour-requirements-list__service,
[data-theme=dark] .tour-requirements-list__method,
[data-theme=dark] .tour-requirements-list__term,
[data-theme=dark] .tour-requirements-list__requirement,
[data-theme=dark] .tour-requirements-list__document,
[data-theme=dark] .tour-requirements-list__milestone,
[data-theme=dark] .tour-requirements-list__label {
  color: var(--wp--preset--color--foreground-dark);
}
.is-dark-mode .tour-requirements-list__value,
body.dark-mode .tour-requirements-list__value,
[data-theme=dark] .tour-requirements-list__value {
  color: var(--wp--preset--color--foreground-dark);
  opacity: 0.9;
}
.is-dark-mode .tour-requirements-list__phone, .is-dark-mode .tour-requirements-list__email, .is-dark-mode .tour-requirements-list__available, .is-dark-mode .tour-requirements-list__description, .is-dark-mode .tour-requirements-list__fees, .is-dark-mode .tour-requirements-list__notes, .is-dark-mode .tour-requirements-list__percentage, .is-dark-mode .tour-requirements-list__due-date,
body.dark-mode .tour-requirements-list__phone,
body.dark-mode .tour-requirements-list__email,
body.dark-mode .tour-requirements-list__available,
body.dark-mode .tour-requirements-list__description,
body.dark-mode .tour-requirements-list__fees,
body.dark-mode .tour-requirements-list__notes,
body.dark-mode .tour-requirements-list__percentage,
body.dark-mode .tour-requirements-list__due-date,
[data-theme=dark] .tour-requirements-list__phone,
[data-theme=dark] .tour-requirements-list__email,
[data-theme=dark] .tour-requirements-list__available,
[data-theme=dark] .tour-requirements-list__description,
[data-theme=dark] .tour-requirements-list__fees,
[data-theme=dark] .tour-requirements-list__notes,
[data-theme=dark] .tour-requirements-list__percentage,
[data-theme=dark] .tour-requirements-list__due-date {
  color: var(--wp--preset--color--stone);
}
.is-dark-mode .tour-requirements-list__mandatory,
body.dark-mode .tour-requirements-list__mandatory,
[data-theme=dark] .tour-requirements-list__mandatory {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}

@media (max-width: 768px) {
  .tour-requirements-list__item {
    gap: 2px 6px;
    padding: 4px 0;
  }
  .tour-requirements-list__service, .tour-requirements-list__method, .tour-requirements-list__term, .tour-requirements-list__requirement, .tour-requirements-list__document, .tour-requirements-list__milestone {
    font-size: var(--wp--preset--font-size--tiny);
  }
}
/**
 * Return Service Transport Options
 * Package 7 (4-Day Inca Trail) booking form
 */
#returnService .itemexp {
  margin-bottom: 1rem;
  color: var(--wp--preset--color--secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

#returnservicebox .transportopt {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 2px solid var(--wp--preset--color--border, #e0e0e0);
  border-radius: 8px;
  transition: all 0.3s ease;
}
#returnservicebox .transportopt:hover {
  border-color: var(--wp--preset--color--primary);
  background-color: var(--wp--preset--color--light-gray, #f9f9f9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#returnservicebox .transportopt input[type=radio] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#returnservicebox .transportopt input[type=radio]:checked + label {
  font-weight: 600;
  color: var(--wp--preset--color--primary);
}
#returnservicebox .transportopt label {
  cursor: pointer;
  display: inline-block;
  width: calc(100% - 30px);
}
#returnservicebox .transportopt label strong {
  font-size: 1.1rem;
  color: var(--wp--preset--color--heading);
  display: block;
  margin-bottom: 0.5rem;
}
#returnservicebox .transportopt label .transport-desc {
  display: block;
  color: var(--wp--preset--color--text);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
#returnservicebox .transportopt label .transport-price {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--wp--preset--color--accent, #ffa500);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

#returnservice.item .transport-name {
  font-size: 0.9rem;
  color: var(--wp--preset--color--text);
}

@media (max-width: 768px) {
  #returnservicebox .transportopt {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  #returnservicebox .transportopt label {
    width: calc(100% - 25px);
  }
  #returnservicebox .transportopt label strong {
    font-size: 1rem;
  }
  #returnservicebox .transportopt label .transport-desc {
    font-size: 0.85rem;
  }
  #returnservicebox .transportopt input[type=radio] {
    width: 16px;
    height: 16px;
  }
}
/**
 * FAQ Component
 * 
 * Accordion-style FAQ system with interactive states and animations.
 * Extracted from front-page.scss for better modularity.
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
.faq-section {
  padding: var(--wp--preset--spacing--xl) 0;
}
@media (min-width: 768px) {
  .faq-section {
    padding: var(--wp--preset--spacing--xxl) 0;
  }
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--xl);
}
.faq-section .section-header .faq-title {
  font-size: var(--wp--preset--font-size--x-large);
  color: var(--wp--preset--color--primary);
  margin-bottom: var(--wp--preset--spacing--sm);
}
@media (min-width: 768px) {
  .faq-section .section-header .faq-title {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.faq-section .section-header .section-subtitle {
  font-size: var(--wp--preset--font-size--medium);
  color: var(--wp--preset--color--foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container {
  margin: 0 auto;
  padding: 3rem 0;
}
.faq-container h2 {
  font-weight: normal;
  color: var(--wp--preset--color--primary);
}

.faq-item {
  background: var(--wp--preset--color--background);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--medium);
  margin-bottom: var(--wp--preset--spacing--xs);
  margin-top: 0;
  overflow: hidden;
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.faq-item:hover {
  border-color: var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--effects--shadow--small);
}
.faq-item .faq-toggle {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.faq-item .faq-toggle:checked ~ .faq-question-wrapper .faq-question {
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--primary);
}
.faq-item .faq-toggle:checked ~ .faq-question-wrapper .faq-question::after {
  content: "-";
  transform: rotate(0deg);
  color: var(--wp--preset--color--primary);
}
.faq-item .faq-toggle:checked ~ .faq-answer-wrapper {
  max-height: 500px;
  padding-top: var(--wp--preset--spacing--sm);
  opacity: 1;
}
.faq-item .faq-toggle:checked ~ .faq-question-wrapper {
  border-color: var(--wp--preset--color--primary);
}
.faq-item:has(.faq-toggle:checked) {
  border-color: var(--wp--preset--color--primary);
  box-shadow: var(--wp--custom--effects--shadow--medium);
}

.faq-question-wrapper {
  display: block;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0;
  margin: 0;
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.faq-question-wrapper:hover .faq-question {
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--primary);
}

.faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--sm) var(--wp--preset--spacing--xs);
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--primary);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  border: none;
  width: 100%;
  text-align: left;
  letter-spacing: 0;
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .faq-item .faq-question {
    font-size: var(--wp--preset--font-size--medium);
  }
}
.faq-item .faq-question::after {
  content: "+";
  width: 24px;
  height: 24px;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wp--preset--color--sand);
  border-radius: 50%;
  font-weight: 300;
  font-size: 25px;
  line-height: 1;
  margin-left: var(--wp--preset--spacing--md);
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-top: 0;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  background: var(--wp--preset--color--background);
}

.faq-answer {
  padding: 0 var(--wp--preset--spacing--sm) var(--wp--preset--spacing--sm);
  background: transparent;
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.7;
  color: var(--wp--preset--color--foreground);
  margin: 0;
}
.faq-answer p {
  margin-bottom: var(--wp--preset--spacing--md);
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul, .faq-answer ol {
  margin: var(--wp--preset--spacing--md) 0;
  padding-left: var(--wp--preset--spacing--lg);
}
.faq-answer ul li, .faq-answer ol li {
  margin-bottom: var(--wp--preset--spacing--xs);
  line-height: 1.6;
}
.faq-answer strong {
  color: var(--wp--preset--color--primary);
  font-weight: 600;
}
.faq-answer a {
  color: var(--wp--preset--color--primary);
  text-decoration: underline;
  transition: color var(--wp--custom--effects--transition--medium) ease;
}
.faq-answer a:hover {
  color: var(--wp--preset--color--secondary);
  text-decoration: none;
}
.faq-answer code {
  background: var(--wp--preset--color--sand);
  padding: 2px 6px;
  border-radius: var(--wp--custom--effects--radius--small);
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: var(--wp--preset--color--primary);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--wp--preset--spacing--sm);
  margin-bottom: var(--wp--preset--spacing--xl);
}
.faq-categories .category-tab {
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--lg);
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--foreground);
  border: 1px solid var(--wp--preset--color--stone);
  border-radius: var(--wp--custom--effects--radius--medium);
  text-decoration: none;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 500;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  cursor: pointer;
}
.faq-categories .category-tab:hover, .faq-categories .category-tab.active {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--primary);
  transform: translateY(-2px);
  box-shadow: var(--wp--custom--effects--shadow--small);
}
.faq-categories .category-tab.booking::before {
  content: "📅";
  margin-right: var(--wp--preset--spacing--xs);
}
.faq-categories .category-tab.payment::before {
  content: "💳";
  margin-right: var(--wp--preset--spacing--xs);
}
.faq-categories .category-tab.travel::before {
  content: "🎒";
  margin-right: var(--wp--preset--spacing--xs);
}
.faq-categories .category-tab.general::before {
  content: "ℹ️";
  margin-right: var(--wp--preset--spacing--xs);
}

.faq-search {
  max-width: 500px;
  margin: 0 auto var(--wp--preset--spacing--xl);
  position: relative;
}
.faq-search .search-input {
  width: 100%;
  padding: var(--wp--preset--spacing--md) var(--wp--preset--spacing--lg);
  padding-right: 50px;
  border: 2px solid var(--wp--preset--color--sand);
  border-radius: var(--wp--custom--effects--radius--medium);
  font-size: var(--wp--preset--font-size--normal);
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--foreground);
  transition: border-color var(--wp--custom--effects--transition--medium) ease;
}
.faq-search .search-input:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 3px rgba(42, 93, 69, 0.1);
}
.faq-search .search-input::-moz-placeholder {
  color: var(--wp--preset--color--stone);
}
.faq-search .search-input::placeholder {
  color: var(--wp--preset--color--stone);
}
.faq-search .search-icon {
  position: absolute;
  right: var(--wp--preset--spacing--md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--wp--preset--color--stone);
  pointer-events: none;
}
.faq-search .search-icon::before {
  content: "🔍";
  font-size: var(--wp--preset--font-size--medium);
}
.faq-search .clear-search {
  position: absolute;
  right: var(--wp--preset--spacing--md);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--wp--preset--color--stone);
  cursor: pointer;
  padding: var(--wp--preset--spacing--xs);
  border-radius: 50%;
  transition: all var(--wp--custom--effects--transition--medium) ease;
  display: none;
}
.faq-search .clear-search:hover {
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--primary);
}
.faq-search .clear-search::before {
  content: "✕";
  font-size: 14px;
}
.faq-search .clear-search.visible {
  display: block;
}

.faq-no-results {
  text-align: center;
  padding: var(--wp--preset--spacing--xl);
  color: var(--wp--preset--color--stone);
  display: none;
}
.faq-no-results .no-results-icon {
  font-size: 3rem;
  margin-bottom: var(--wp--preset--spacing--md);
  opacity: 0.5;
}
.faq-no-results .no-results-icon::before {
  content: "🤔";
}
.faq-no-results .no-results-title {
  font-size: var(--wp--preset--font-size--large);
  font-weight: 600;
  margin-bottom: var(--wp--preset--spacing--sm);
  color: var(--wp--preset--color--foreground);
}
.faq-no-results .no-results-text {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}
.faq-no-results.visible {
  display: block;
}

.faq-help {
  margin-top: var(--wp--preset--spacing--xl);
  padding: var(--wp--preset--spacing--lg);
  background: var(--wp--preset--color--sand);
  border-radius: var(--wp--custom--effects--radius--medium);
  text-align: center;
}
.faq-help .help-title {
  font-size: var(--wp--preset--font-size--large);
  font-weight: 600;
  color: var(--wp--preset--color--primary);
  margin-bottom: var(--wp--preset--spacing--sm);
}
.faq-help .help-text {
  font-size: var(--wp--preset--font-size--normal);
  color: var(--wp--preset--color--foreground);
  margin-bottom: var(--wp--preset--spacing--md);
  line-height: 1.6;
}
.faq-help .help-contact {
  display: inline-flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--lg);
  border-radius: var(--wp--custom--effects--radius--medium);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--wp--custom--effects--transition--medium) ease;
}
.faq-help .help-contact:hover {
  background: var(--wp--preset--color--secondary);
  transform: translateY(-2px);
  box-shadow: var(--wp--custom--effects--shadow--medium);
}
.faq-help .help-contact::before {
  content: "📧";
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .faq-item .faq-question::after {
    width: 20px;
    height: 20px;
  }
  .faq-answer {
    padding: 0 var(--wp--preset--spacing--md) var(--wp--preset--spacing--md);
  }
  .faq-categories .category-tab {
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--md);
    font-size: var(--wp--preset--font-size--tiny);
  }
  .faq-search .search-input {
    padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
    padding-right: 40px;
    font-size: var(--wp--preset--font-size--small);
  }
  .faq-help {
    padding: var(--wp--preset--spacing--md);
  }
  .faq-help .help-contact {
    padding: var(--wp--preset--spacing--sm);
    font-size: var(--wp--preset--font-size--small);
  }
}
@media print {
  .faq-search,
  .faq-categories {
    display: none;
  }
  .faq-item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    border: 1px solid #ccc;
    margin-bottom: var(--wp--preset--spacing--sm);
  }
  .faq-item .faq-toggle {
    display: none;
  }
  .faq-item .faq-answer-wrapper {
    max-height: none;
    opacity: 1;
    visibility: visible;
    padding-top: var(--wp--preset--spacing--sm);
  }
  .faq-item .faq-answer {
    padding: 0 var(--wp--preset--spacing--md) var(--wp--preset--spacing--md);
  }
  .faq-item .faq-question::after {
    display: none;
  }
}
/**
 * Footer Component Styles
 * Modern, responsive footer with dark mode support
 * Uses theme.json design system exclusively
 */
.site-footer {
  background-color: var(--wp--preset--color--dark-green);
  color: var(--wp--preset--color--sand);
}
.site-footer img {
  max-width: none;
  margin-right: 1rem;
}
.site-footer .wp-block-columns {
  flex-direction: column;
}
@media (min-width: 768px) {
  .site-footer .wp-block-columns {
    flex-direction: row;
  }
}

.footer-content {
  display: grid;
  gap: var(--wp--preset--spacing--lg);
  grid-template-columns: 1fr;
  padding: 1rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-hero {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--sm);
}
.footer-hero .site-logo {
  inline-size: 50px;
  block-size: 50px;
}
.footer-hero .site-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--accent);
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-block: 0;
}
.footer-hero .footer-description {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.6;
  margin-block: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--md);
  opacity: 0.9;
}

.footer-social .wp-block-social-links {
  gap: var(--wp--preset--spacing--xs);
}
.footer-social .wp-block-social-links .wp-social-link {
  background-color: var(--wp--preset--color--primary);
  border-radius: var(--wp--custom--effects--radius--medium);
  transition: all var(--wp--custom--effects--transition--fast) ease;
  min-inline-size: 44px;
  min-block-size: 44px;
}
.footer-social .wp-block-social-links .wp-social-link:hover, .footer-social .wp-block-social-links .wp-social-link:focus {
  background-color: var(--wp--preset--color--secondary);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .footer-social .wp-block-social-links .wp-social-link {
    min-inline-size: auto;
    min-block-size: auto;
  }
}

.footer-navigation .footer-nav-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.3;
  text-transform: uppercase;
  margin-block-end: var(--wp--preset--spacing--sm);
}
@media (prefers-color-scheme: dark) {
  .footer-navigation .footer-nav-title {
    color: var(--tertiary);
  }
}
.footer-navigation .wp-block-navigation {
  gap: var(--wp--preset--spacing--xs);
}
.footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  color: var(--wp--preset--color--background);
  font-size: var(--wp--preset--font-size--normal);
  font-weight: 400;
  text-decoration: none;
  opacity: 0.85;
  transition: all var(--wp--custom--effects--transition--fast) ease;
}
.footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover, .footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus {
  opacity: 1;
  color: var(--wp--preset--color--secondary);
}
@media (prefers-color-scheme: dark) {
  .footer-navigation .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
    color: var(--tertiary);
  }
}

.footer-newsletter .newsletter-title {
  color: var(--wp--preset--color--background);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  text-transform: uppercase;
  margin-block-end: var(--wp--preset--spacing--sm);
}
@media (prefers-color-scheme: dark) {
  .footer-newsletter .newsletter-title {
    color: var(--tertiary);
  }
}
.footer-newsletter .newsletter-description {
  font-size: var(--wp--preset--font-size--normal);
  line-height: 1.6;
  opacity: 0.9;
  margin-block-end: var(--wp--preset--spacing--sm);
}
.footer-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--xs);
  background-color: var(--wp--preset--color--background);
  border-radius: var(--wp--custom--effects--radius--medium);
  padding: var(--wp--preset--spacing--xs);
}
@media (min-width: 480px) {
  .footer-newsletter .newsletter-form {
    flex-direction: row;
  }
  .footer-newsletter .newsletter-form .form-input {
    flex: 1;
  }
}
.footer-newsletter .newsletter-form .form-input {
  border: 2px solid var(--wp--preset--color--sand);
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--sm);
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--normal);
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--foreground);
  transition: border-color var(--wp--custom--effects--transition--fast) ease;
}
.footer-newsletter .newsletter-form .form-input:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 2px var(--wp--preset--color--primary);
}
.footer-newsletter .newsletter-form .form-input::-moz-placeholder {
  color: var(--wp--preset--color--stone);
  opacity: 0.7;
}
.footer-newsletter .newsletter-form .form-input::placeholder {
  color: var(--wp--preset--color--stone);
  opacity: 0.7;
}
.footer-newsletter .newsletter-form .newsletter-button {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border: none;
  border-radius: var(--wp--custom--effects--radius--small);
  padding: var(--wp--preset--spacing--sm) var(--wp--preset--spacing--md);
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--medium);
  cursor: pointer;
  transition: all var(--wp--custom--effects--transition--fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--xs);
}
.footer-newsletter .newsletter-form .newsletter-button:hover, .footer-newsletter .newsletter-form .newsletter-button:focus {
  background-color: var(--wp--preset--color--primary);
  transform: translateY(-1px);
}
.footer-newsletter .newsletter-form .newsletter-button .dashicons {
  font-size: 1.2em;
}
.footer-newsletter .newsletter-privacy {
  font-size: var(--wp--preset--font-size--tiny);
  color: var(--wp--preset--color--stone);
  opacity: 0.8;
  margin-block-start: var(--wp--preset--spacing--xs);
}

.footer-separator {
  margin-block: var(--wp--preset--spacing--lg) var(--wp--preset--spacing--sm);
  border-color: var(--wp--preset--color--primary);
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--sm);
  padding-bottom: var(--wp--preset--spacing--sm);
}
.footer-bottom p {
  font-size: 0.75rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom .copyright {
  padding-left: 2rem;
  opacity: 0.8;
}
.footer-bottom .footer-links {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--sm);
}
.footer-bottom .footer-links a {
  color: var(--wp--preset--color--stone);
  text-decoration: none;
  transition: color var(--wp--custom--effects--transition--fast) ease;
}
.footer-bottom .footer-links a:hover, .footer-bottom .footer-links a:focus {
  color: var(--wp--preset--color--background);
}
.footer-bottom .footer-links .separator {
  color: var(--wp--preset--color--stone);
  opacity: 0.5;
}
.footer-bottom .footer-note {
  color: var(--wp--preset--color--stone);
  font-style: italic;
  opacity: 0.9;
  padding-right: 1.3rem;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background-color: var(--wp--preset--color--background-dark);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link {
    background-color: var(--wp--preset--color--primary-dark);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link:hover, .site-footer .footer-social .wp-block-social-links .wp-social-link:focus {
    background-color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form {
    background-color: var(--wp--preset--color--white-dark);
  }
  .site-footer .newsletter-form .form-input {
    background-color: var(--wp--preset--color--sand-dark);
    border-color: var(--wp--preset--color--stone-dark);
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form .form-input::-webkit-input-placeholder {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .newsletter-form .form-input:focus {
    border-color: var(--wp--preset--color--primary-dark);
    box-shadow: 0 0 0 2px var(--wp--preset--color--primary-dark);
  }
  .site-footer .newsletter-form .newsletter-button:hover, .site-footer .newsletter-form .newsletter-button:focus {
    background-color: var(--wp--preset--color--primary-dark);
  }
  .site-footer .newsletter-privacy {
    color: var(--tertiary);
  }
  .site-footer .copyright {
    color: var(--tertiary);
  }
  .site-footer .footer-links a {
    color: var(--tertiary);
  }
  .site-footer .footer-links a:hover, .site-footer .footer-links a:focus {
    color: var(--wp--preset--color--foreground-dark);
  }
  .site-footer .footer-note {
    color: var(--tertiary);
  }
}
@media (prefers-contrast: high) {
  .site-footer {
    border-top: 2px solid var(--wp--preset--color--foreground);
  }
  .site-footer .footer-social .wp-block-social-links .wp-social-link {
    border: 2px solid var(--wp--preset--color--background);
  }
  .site-footer .newsletter-form .form-input {
    border-width: 3px;
  }
}
.site-footer {
  margin: 0;
}
.site-footer .wp-element-button {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.2rem;
}
.site-footer .wp-element-button .dashicons {
  padding: 0 1rem;
}

/**
 * Tour Page Dark Mode Styles
 * 
 * Dark mode styles specific to tour page components.
 * Only loaded on tour templates (single-tour, single-trail).
 * 
 * @package IncaTrail_Theme
 * @since 1.0.0
 */
@media (prefers-color-scheme: dark) {
  .tour-info-container {
    border-color: rgba(127, 182, 133, 0.2);
  }
  .tour-info-item {
    border-color: rgba(127, 182, 133, 0.15);
  }
  .tour-info-item p {
    color: var(--tertiary);
  }
  .tour-info-item:hover {
    color: #292A2C;
  }
  .tour-additional-info p {
    color: var(--tertiary);
  }
  .tourIntro, .tourPane h4 {
    color: var(--foreground);
  }
  dt.tourPane {
    background: var(--primary-gradient);
  }
  dt.tourPane h3 {
    color: var(--foreground);
  }
  .tourPane h4 {
    background: var(--background);
  }
  #comment {
    color: goldenrod;
  }
  .pricebox {
    background: var(--primary-gradient);
    color: var(--foreground);
    padding: clamp(var(--space-lg), 3vw, var(--space-xl));
    border-radius: var(--radius-lg);
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: var(--space-md);
  }
  .breadcrumb-item.current {
    color: var(--foreground);
  }
  #calendarSalidas th {
    color: var(--foreground);
    opacity: 0.7;
  }
  #calendarSalidas td {
    background: var(--wp--preset--color--white);
    color: var(--wp--preset--color--foreground);
  }
  #studentDiscount {
    background: var(--sand);
    color: var(--foreground);
    border-left-color: var(--tertiary);
  }
  .trail-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .stat-item {
    background: rgba(255, 255, 255, 0.1);
  }
}

/*# sourceMappingURL=single-tour.css.map*/