    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
    }

    main.container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
    }

    .detail-header h1 {
      font-size: 28px;
      margin-bottom: 5px;
    }

    .detail-header .city-name {
      font-size: 16px;
      color: #777;
    }

    .rating {
      margin: 5px 0;
      font-weight: bold;
    }

    .badge.cancel {
      display: inline-block;
      background-color: #e6f4ea;
      color: #0f9d58;
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 14px;
      margin-top: 5px;
    }

    .detail-gallery {
      margin: 20px 0;
    }

    .main-image img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
    }

    .thumbnails {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .thumb {
      width: 100px;
      height: 70px;
      object-fit: cover;
      border-radius: 5px;
    }

    .detail-info-intro {
      background-color: #f9f9f9;
      padding: 20px;
      margin-top: -25px;
      border-radius: 10px;
      font-size: 15px;
      line-height: 1.6;
    }

    .detail-info-intro ul {
      margin: 10px 0 20px;
      padding-left: 25px;
    }

    .detail-info-intro h3 {
      margin-top: 25px;
      font-size: 18px;
      color: #333;
    }

    .detail-description, .detail-pricing {
      margin-top: 30px;
    }

    .detail-description h2,
    .detail-pricing h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .price {
      font-size: 20px;
      font-weight: bold;
    }
    .service-includes,
    .service-summary {
      background-color: #f2f2f2;
      padding: 20px 25px;
      margin: 30px 0;
      border-radius: 12px;
      font-size: 15px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .service-includes h3,
    .service-summary h3 {
      font-size: 20px;
      color: #a67c00; /* dorado oscuro */
      font-weight: bold;
      margin-bottom: 10px;
      border-bottom: 1px solid #d2b26c;
      padding-bottom: 6px;
    }

    .service-includes ul,
    .service-summary ul {
      padding-left: 25px;
      margin-top: 12px;
    }

    .service-includes li,
    .service-summary li {
      margin-bottom: 8px;
      list-style-type: disc;
    }
    .service-additional {
      background-color: #f2f2f2;
      padding: 20px;
      margin: 30px 0;
      border-radius: 10px;
      font-size: 15px;
    }

    .service-additional h3 {
      margin-top: 0;
      font-size: 18px;
    }

    .service-additional ul {
      padding-left: 20px;
      margin-top: 10px;
    }
    .faq {
      margin-top: 50px;
      padding: 20px;
      border-top: 1px solid #ddd;
    }

    .faq h2 {
      font-size: 22px;
      margin-bottom: 20px;
    }

    .faq-item {
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 15px;
      text-align: left;
      background: #fff;
      font-size: 16px;
      font-weight: bold;
      border: none;
      cursor: pointer;
      position: relative;
    }

    .faq-question::after {
      content: '▼';
      position: absolute;
      right: 20px;
      transition: transform 0.3s ease;
    }

    .faq-question.active::after {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #f9f9f9;
      transition: max-height 0.3s ease;
      padding: 0 15px;
    }

    .faq-answer p {
      margin: 15px 0;
    }
    .sidebar {
      width: 100%;
      max-width: 400px;
      padding: 20px;
      border-left: 1px solid #eee;
      position: sticky;
      top: 20px; /* o el valor que quieras según tu diseño */
    }

    .ticket-box {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      font-size: 15px;
    }

    .ticket-box h2 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .calendar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      margin: 15px 0;
    }

    .calendar-day {
      border: 1px solid #ccc;
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      min-width: 60px;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
    }

    .calendar-day.active {
      border: 2px solid #007bff;
      background: #e6f0ff;
    }

    .day {
      font-weight: bold;
    }

    .ticket-summary {
      margin-top: 20px;
    }

    .cancellation-green {
      color: green;
      font-weight: bold;
      margin: 10px 0;
    }

    .ticket-control {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;
    }

    .ticket-control button {
      width: 30px;
      height: 30px;
      font-size: 18px;
      border: 1px solid #ccc;
      background: #fff;
      cursor: pointer;
      border-radius: 4px;
    }

    .ticket-control input {
      width: 40px;
      text-align: center;
      border: none;
      font-size: 16px;
    }

    .btn-next {
      background: #007bff;
      color: #fff;
      padding: 12px;
      width: 100%;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      margin-top: 20px;
      cursor: pointer;
    }
    .detail-layout {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start; /* Alínea ambas columnas por la parte superior */
      gap: 1px;               /* Espacio entre columnas */
      margin-top: 20px;
      overflow: visible;
    }

    .main-left {
      flex: 3;
      min-width: 0;
      margin-top: 0;
      padding-top: 0;
      margin-left: -80px;
    }

    .sidebar {
      flex: 0.8;           /* antes era 1 → más estrecho */
      max-width: 350px;    /* puedes ajustarlo más si quieres */
      background-color: #fff;
      padding-left: 30px;  /* más espacio desde la izquierda */
      margin-left: 20px;   /* esto lo empuja más hacia la derecha */
      margin-right: -100px;
      margin-top: 0;
      padding-top: 0;
    }
    .detail-gallery-booking {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .gallery-left {
      flex: 2;
    }

    .gallery-right {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .main-img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    .thumb-img {
      width: 48%;
      border-radius: 6px;
      height: 70px;
      object-fit: cover;
    }
    .sticky-box {
      position: sticky;
      top: 30px;
      z-index: 10;
    }
    .breadcrumb {
      font-size: 14px;
      margin: 10px 0 20px 0;
      color: #666;
      margin-left: 80px;
      padding: 10px 0;
    }

    .breadcrumb a {
      color: #337ab7;
      text-decoration: none;
      margin-right: 5px;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .breadcrumb span {
      font-weight: bold;
    }
    .main-title {
      font-size: 28px;
      font-weight: 800;
      margin: 20px auto 30px;
      margin-bottom: 1px;
      color: #2a2a2a;
      text-align: center;
      font-family: 'Georgia', 'Noto Serif', 'Noto Naskh Arabic', serif;
      border-bottom: 2px solid #c8a951;
      padding-bottom: 10px;
      letter-spacing: 0.5px;
      max-width: 800px; /* 👈 limita el ancho total */
      width: 90%;       /* 👈 opcional para responsividad */
    }
    .lightbox {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 12px;
    }

    .lightbox .close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 35px;
      color: white;
      cursor: pointer;
    }

    .lightbox-nav {
      margin-top: 15px;
    }

    .lightbox-nav button {
      background: none;
      color: white;
      font-size: 30px;
      border: none;
      margin: 0 15px;
      cursor: pointer;
    }
    .gallery-block {
      display: flex;
      gap: 40px;
      margin: 30px 5%;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 0;     /* elimina espacio adicional superior */
      padding-top: 0;    /* por si acaso tiene padding */
    }

    .gallery-main-image {
      flex: 1 1 60%;
    }

    .gallery-main-img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      cursor: pointer;
    }

    .gallery-thumbnails {
      flex: 1 1 35%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 19px;
    }

    .gallery-thumb-wrapper {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-thumb-img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .gallery-thumb-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }
    .gallery-thumb-img:hover {
      transform: scale(1.05);
      transition: transform 0.2s ease-in-out;
    }.info-box-oriental {
      background: #fdf9f3;
      border: 2px solid #c8a951;
      border-radius: 16px;
      padding: 25px 25px;
      margin-bottom: 25px;
      box-shadow: 0 4px 8px rgba(200, 169, 81, 0.1);
      font-family: 'Georgia', 'Noto Serif', serif;
      color: #2a2a2a;
    }

    .info-box-oriental h3,
    .info-box-oriental h2 {
      font-size: 20px;
      color: #a07628;
      margin-top: 30px;
      margin-bottom: 15px;
      border-bottom: 1px solid #d8c28f;
      padding-bottom: 6px;
    }

    .info-box-oriental ul {
      padding-left: 1.2em;
      margin-bottom: 15px;
    }

    .info-box-oriental li {
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .info-box-oriental li::marker {
      color: #c8a951;
    }

    .info-box-oriental p {
      font-size: 16px;
      line-height: 1.7;
    }
    .ticket-box {
      background-color: #f2f2f2;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
      margin-bottom: 30px;
      font-size: 15px;
      font-family: 'Georgia', 'Noto Serif', serif;
      border: 1px solid #e1d7c1;
    }

    .ticket-box h2 {
      color: #a67c00; /* dorado */
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px;
      border-bottom: 1px solid #d2b26c;
      padding-bottom: 6px;
    }

    .ticket-box p {
      margin: 10px 0;
      line-height: 1.5;
    }

    .ticket-box .calendar-link {
      display: inline-block;
      margin-bottom: 15px;
      color: #a67c00;
      font-weight: 600;
      text-decoration: underline;
      font-size: 14px;
    }

    .ticket-box .calendar {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .calendar-day {
      border: 1px solid #d2b26c;
      background-color: #fffdf6;
      color: #2a2a2a;
      border-radius: 8px;
      padding: 8px 10px;
      cursor: pointer;
      min-width: 70px;
      text-align: center;
      font-size: 14px;
    }

    .calendar-day.active {
      background-color: #f9eec2;
      border-color: #c8a951;
      font-weight: bold;
    }

    .ticket-summary {
      background-color: #fffef8;
      border-top: 1px solid #d2b26c;
      padding-top: 12px;
      margin-top: 15px;
      text-align: center;
    }

    .ticket-summary p {
      margin-bottom: 10px;
    }

    .ticket-control {
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 10px 0;
      justify-content: center;

    }

    .ticket-control button {
      background-color: #c8a951;
      border: none;
      padding: 5px 10px;
      color: white;
      font-weight: bold;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }

    .ticket-control input {
      width: 40px;
      text-align: center;
      font-weight: bold;
      font-size: 16px;
      border: none;
      background: transparent;
    }

    .btn-next {
      margin-top: 15px;
      width: 100%;
      background-color: #a67c00;
      color: white;
      font-size: 16px;
      padding: 10px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
    }

    .btn-next:hover {
      background-color: #8e6600;
    }
    /* ENVOLTORIO GENERAL */
    .calendar-wrapper {
      position: relative;
      min-height: 60px; /* o el alto de .calendar-scroll */

    }

    /* CONTENEDOR SCROLLABLE */
    .calendar-scroll {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 10px;
      padding: 10px 30px;
    }

    /* BOTONES DE FECHAS */
    .calendar-day {
      background: #fff;
      border: 2px solid #002B5B;
      color: #002B5B;
      border-radius: 10px;
      padding: 10px;
      min-width: 80px;
      text-align: center;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .calendar-day:hover {
      background: #f3c500;
      color: #002B5B;
    }

    .calendar-day.active {
      background: #f3c500;
      font-weight: bold;
    }

    .calendar-day.calendar-more {
      background: #eee;
      font-size: 1.1rem;
    }

    /* FLECHAS DE SCROLL */
    .calendar-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22px;
      background: #002B5B;
      color: white;
      border: none;
      border-radius: 50%;
      padding: 8px 12px;
      cursor: pointer;
      z-index: 10;
      opacity: 0.8;
      transition: background 0.3s;
    }

    .calendar-arrow:hover {
      background: #f3c500;
      color: #002B5B;
    }

    .calendar-arrow.left {
      left: 0;
    }

    .calendar-arrow.right {
      right: 0;
    }
    .hidden-route {
    display: none;
    }

    .toggle-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    margin-top: 8px;
    font-weight: bold;
    }
