/**
 * Tienda pública ExploList — cabecera Adventure (BS4).
 * Logo máx. 70px, menú alineado al centro vertical, barra compacta (claro sobre hero / oscuro sticky).
 */

.store-layout.store-adventure {
  /* Altura reservada al bloque del header (logo 70px + padding barra); usada también para el hero */
  --store-public-header-min-h: calc(70px + 1.5rem);
  --store-brand-dark: #222222;
}

/* Honeypot anti-spam en formularios públicos */
.hp-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Anclas del menú (#home, #actividades, #contact): el scroll no debe quedar bajo la barra fija */
.store-layout.store-adventure #home,
.store-layout.store-adventure #actividades,
.store-layout.store-adventure #contact {
  scroll-margin-top: calc(var(--store-public-header-min-h) + 0.75rem);
}

/* Ficha actividad: cabecera + altura aprox. de la fila de pestañas (nav-tabs) */
.store-layout.store-adventure #store-activity-tabs-section {
  scroll-margin-top: calc(var(--store-public-header-min-h) + 3.25rem);
}

/* Botón flotante: volver arriba (visible tras bajar un poco) */
.store-layout.store-adventure .store-scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, #b21aff 0%, #732bde 100%);
  background-image: -webkit-linear-gradient(0deg, #b21aff 0%, #732bde 100%);
  background-image: -ms-linear-gradient(0deg, #b21aff 0%, #732bde 100%);
  background-image: linear-gradient(0deg, #b21aff 0%, #732bde 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.store-layout.store-adventure .store-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.store-layout.store-adventure .store-scroll-top:hover,
.store-layout.store-adventure .store-scroll-top:focus {
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.store-layout.store-adventure .store-scroll-top .lnr {
  font-size: 1.35rem;
  line-height: 1;
}

/*
 * Sticky (jquery.sticky): el header es position:absolute, así que el wrapper no “crece” con height:auto
 * y queda en ~0px → scrollTop siempre > umbral → .is-sticky permanente y el fondo oscuro tapa el hero.
 * main.css fuerza además .sticky-wrapper { height: 48px !important } (demasiado bajo).
 * Solución: anular el 48px, altura auto y min-height acorde al logo (70px) + padding de la barra.
 */
.store-layout.store-adventure .sticky-wrapper {
  position: relative;
  z-index: 20; /* por encima del carrusel (en el DOM va antes que .default-banner) */
  min-height: var(--store-public-header-min-h);
  height: auto !important;
}

/*
 * Home con carrusel: transparente solo antes del scroll.
 * Páginas internas y home sin carrusel (.store-header-solid): color de marca siempre.
 */
.store-layout.store-adventure:not(.store-header-solid) .sticky-wrapper:not(.is-sticky) > .default-header.store-public-header {
  background-color: transparent !important;
}

.store-layout.store-adventure .sticky-wrapper.is-sticky > .default-header.store-public-header,
.store-layout.store-adventure .is-sticky .default-header.store-public-header {
  background-color: var(--store-brand-dark) !important;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.store-layout.store-adventure.store-header-solid .default-header.store-public-header,
.store-layout.store-adventure.store-header-solid .sticky-wrapper > .default-header.store-public-header,
.store-layout.store-adventure.store-header-solid .sticky-wrapper:not(.is-sticky) > .default-header.store-public-header {
  background-color: var(--store-brand-dark) !important;
}

/* Pie de página: mismo color de marca (anula #222 de main.css) */
.store-layout.store-adventure footer.footer-area,
.store-layout.store-adventure .footer-area.section-gap {
  background-color: var(--store-brand-dark) !important;
}

/* main.css fuerza #222 en móvil e .is-sticky: respetar marca y transparencia con carrusel */
@media (max-width: 992px) {
  .store-layout.store-adventure:not(.store-header-solid) .sticky-wrapper:not(.is-sticky) > .default-header.store-public-header {
    background-color: transparent !important;
  }

  .store-layout.store-adventure.store-header-solid .default-header.store-public-header,
  .store-layout.store-adventure .is-sticky .default-header.store-public-header {
    background-color: var(--store-brand-dark) !important;
  }
}

.store-layout.store-adventure .store-banner-area.store-banner-area--no-carousel {
  min-height: 0;
}

.store-layout.store-adventure .store-banner-area.store-banner-area--no-carousel .default-banner {
  display: none;
}

.store-layout.store-adventure .store-static-page-body img {
  max-width: 100%;
  height: auto;
}

.store-layout.store-adventure .store-public-header .navbar.store-public-navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  align-items: center;
}

.store-layout.store-adventure .store-public-header .navbar > .container {
  align-items: center;
  min-height: var(--store-public-header-min-h);
}

/*
 * Carrusel debajo del header en capas: el slide ocupa 100vh desde arriba (imagen visible tras el header
 * transparente). margin-top negativo = misma idea que main.css (-48px) pero acorde al alto real del header.
 */
.store-layout.store-adventure .store-banner-area {
  position: relative;
}

.store-layout.store-adventure .store-banner-area .default-banner {
  margin-top: calc(-1 * var(--store-public-header-min-h)) !important;
}

/* Altura pantalla completa: la imagen de fondo llega hasta arriba (detrás del header transparente) */
.store-layout.store-adventure .store-banner-area .row.fullscreen {
  min-height: 100vh !important;
  height: 100vh !important;
  box-sizing: border-box;
  /* El texto no queda tapado por el menú; la imagen sigue viéndose en la franja del header */
  padding-top: var(--store-public-header-min-h);
}

.store-layout.store-adventure .store-banner-area .default-banner .item-slider {
  min-height: 100vh;
}

/* Logo: máximo 70px de alto + proporción ancho */
.store-layout.store-adventure .store-public-header .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: auto;
  max-height: 70px;
}

.store-layout.store-adventure .store-public-header .navbar-brand img,
.store-layout.store-adventure .store-public-header .navbar-brand .store-brand-image {
  max-height: 70px;
  width: auto;
  height: auto;
  vertical-align: middle;
  object-fit: contain;
}

.store-layout.store-adventure .store-public-header .navbar-brand .store-brand-text {
  display: inline-block;
  max-width: min(280px, 52vw);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}

/* Menú: quitar padding vertical grande de main.css (20px) para alinear con el logo */
.store-layout.store-adventure .store-public-header .navbar-nav {
  align-items: center;
}

.store-layout.store-adventure .store-public-header .navbar-nav > li {
  display: flex;
  align-items: center;
}

.store-layout.store-adventure .store-public-header .navbar-nav > li > a {
  padding: 0.35rem 0.65rem;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 992px) {
  .store-layout.store-adventure .store-public-header .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    flex-grow: 0;
  }

  .store-layout.store-adventure .store-public-header .navbar-nav {
    flex-wrap: nowrap;
    margin-bottom: 0;
  }
}

/* Botones / menú usuario: misma línea base que enlaces */
.store-layout.store-adventure .store-public-header .store-public-user-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.store-layout.store-adventure .store-public-header .store-public-user-menu .btn {
  margin-bottom: 0;
}

/* Outline claro sobre barra oscura: en hover/active el texto debe ser oscuro (Bootstrap deja color #fff). */
.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light:hover,
.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light:focus,
.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light:active,
.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light.active,
.store-layout.store-adventure .store-public-header .store-public-user-menu .show > .btn-outline-light.dropdown-toggle {
  color: #222 !important;
  background-color: #fff !important;
  border-color: #fff !important;
  box-shadow: none;
}

.store-layout.store-adventure .store-public-header .store-public-user-menu .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {
  /*
   * Móvil / tablet: menú colapsado alineado a la izquierda (el tema usa justify-content-end
   * y paddings que desplazan el bloque); usuario e invitado bajo los enlaces, mismo margen.
   */
  .store-layout.store-adventure .store-public-header .navbar > .container {
    align-items: flex-start;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse {
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    flex-direction: column;
    padding-top: 0.35rem;
    padding-bottom: 0.5rem;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .navbar-nav {
    width: 100%;
    align-items: flex-start !important;
    align-self: stretch;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0;
    padding-left: 0.125rem;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .navbar-nav > li {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .navbar-nav > li > a {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 0.5rem 0.25rem 0.5rem 0;
    box-sizing: border-box;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-public-user-menu {
    width: 100%;
    align-self: stretch;
    justify-content: flex-start !important;
    padding-left: 0.125rem;
    padding-top: 0.65rem;
    margin-top: 0.25rem;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-public-user-menu.dropdown {
    display: block;
    width: 100%;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-public-user-menu .store-user-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0 !important;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-user-dropdown-label {
    display: inline !important;
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-public-user-menu .store-user-dropdown-menu {
    left: 0 !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0.35rem;
    max-width: min(228px, 100%);
  }

  .store-layout.store-adventure .store-public-header .store-navbar-collapse .store-public-user-menu .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.35rem;
  }
}

/* Modo oscuro: misma geometría (fondos los define la plantilla / .is-sticky) */
.store-layout.store-layout--dark.store-adventure .store-public-header .navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.92);
}

/* Tarjeta actividad: bloque completo enlaza al detalle (sin botón duplicado) */
.store-layout.store-adventure a.store-activity-card-link.single-destinations {
  color: inherit;
  text-decoration: none !important;
  border-radius: 4px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.store-layout.store-adventure a.store-activity-card-link.single-destinations:hover {
  color: inherit;
  text-decoration: none !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.store-layout.store-adventure a.store-activity-card-link.single-destinations:focus {
  outline: 2px solid rgba(115, 43, 222, 0.45);
  outline-offset: 3px;
}

/* Texto bajo la imagen: margen interno respecto al borde de la tarjeta */
.store-layout.store-adventure a.store-activity-card-link .store-activity-card-details {
  padding: 1.25rem 1.15rem 1.35rem;
  box-sizing: border-box;
  background-color: #fff;
}

/* La fila BS4 estira las columnas al alto del vecino más alto → hueco vacío bajo tarjetas más cortas */
.store-layout.store-adventure #actividades .store-activities-cards-row {
  align-items: flex-start;
}

.store-layout.store-adventure section#actividades.section-gap {
  padding-top: 90px;
  /* Menos aire bajo la grilla (section-gap por defecto = 120px abajo) */
  padding-bottom: 2.5rem;
}

/* Acerca «Contáctanos» a la sección de actividades (menos padding superior que section-gap) */
.store-layout.store-adventure section#contact.section-gap {
  padding-top: 2.75rem;
}

.store-layout.store-adventure section#actividades.section-gap .section-title {
  padding-bottom: 0.5rem !important;
}

.store-layout.store-adventure section#actividades.section-gap .section-title h2 {
  margin-bottom: 0.35rem !important;
}

.store-layout.store-adventure section#actividades.section-gap .row.mb-40 {
  margin-bottom: 0.75rem !important;
}

/* Formulario contacto tienda: bordes redondeados (main.css fuerza radius 0 en .form-area) */
.store-layout.store-adventure #contact .form-area .form-control {
  border-radius: 0.375rem;
}

.store-layout.store-adventure #contact .form-area textarea.form-control {
  min-height: 180px;
}

/* Modales login/registro tienda: logo empresa + tipografía alineada a auth/login */
.store-layout.store-adventure .store-auth-modal-brand .store-auth-modal-logo {
  max-height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.store-layout.store-adventure .store-auth-modal-content .modal-header .close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem 0 0;
}

/* Recordarme: alinear checkbox y etiqueta (flex evita desfase del .form-check absoluto) */
.store-layout.store-adventure .store-auth-modal-form .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
  min-height: 1.25rem;
}

.store-layout.store-adventure .store-auth-modal-form .form-check-input {
  position: static;
  margin: 0;
  flex: 0 0 1rem;
  width: 1rem;
  height: 1rem;
}

.store-layout.store-adventure .store-auth-modal-form .form-check-label {
  padding-left: 0;
  margin-bottom: 0;
  line-height: 1.25;
}

.store-layout.store-adventure .store-google-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 500;
  color: #3c4043;
  background: #fff;
  cursor: pointer;
}

.store-layout.store-adventure .store-google-auth-btn:hover,
.store-layout.store-adventure .store-google-auth-btn:focus {
  color: #202124;
  background: #f8f9fa;
  text-decoration: none;
}

.store-layout.store-adventure .store-google-auth-btn__icon {
  display: inline-flex;
  line-height: 0;
}

.store-layout.store-adventure .store-auth-divider {
  position: relative;
}

.store-layout.store-adventure .store-auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #dee2e6;
  z-index: 0;
}

.store-layout.store-adventure .store-auth-divider__label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0.75rem;
  background: #fff;
}

/* -------------------------------------------------------------------------
 * Menú usuario (cabecera pública): mismo tono que la barra (#222), más
 * estrecho que antes; enlaces y email legibles; salida estilo outline claro.
 * Apertura por clic en desktop (.show) frente al hover del main.css.
 * ------------------------------------------------------------------------- */
.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-menu {
  min-width: 200px;
  max-width: min(228px, calc(100vw - 1.5rem));
  margin-top: 0.45rem;
  padding: 0;
  z-index: 1060;
  background: #222 !important;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35) !important;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-header {
  padding: 0.65rem 0.85rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  word-break: break-word;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-email {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
  word-break: break-all;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-item {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95) !important;
  background-color: transparent !important;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-item:hover,
.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-item:focus {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  text-decoration: none !important;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-divider {
  margin: 0.2rem 0;
  border-top-color: rgba(255, 255, 255, 0.1);
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-footer {
  padding: 0.55rem 0.85rem 0.7rem;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-logout {
  font-weight: 600;
  border-radius: 0.3rem;
  color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  background-color: transparent !important;
}

.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-logout:hover,
.store-layout.store-adventure .store-public-user-menu .store-user-dropdown-logout:focus {
  color: #222 !important;
  background-color: #fff !important;
  border-color: #fff !important;
}

/* Desktop: main.css usa opacity 0 + hover; permitir apertura por clic (.show en .dropdown) */
@media (min-width: 768px) {
  .store-layout.store-adventure .store-public-user-menu.dropdown .dropdown-menu.store-user-dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .store-layout.store-adventure .store-public-user-menu.dropdown.show .dropdown-menu.store-user-dropdown-menu,
  .store-layout.store-adventure .store-public-user-menu.dropdown:hover .dropdown-menu.store-user-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* Fecha y horario de evento (ficha actividad + checkout) */
.store-layout.store-adventure .store-activity-event-schedule {
  line-height: 1.45;
  font-size: 0.9375rem;
}

.store-layout.store-adventure .store-activity-event-schedule .store-activity-event-weekday {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  background-color: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
  margin-bottom: 0.35rem;
}

.store-layout.store-adventure .store-activity-event-schedule .store-activity-event-times {
  color: #6c757d;
  font-size: 0.875rem;
}

.store-layout.store-adventure .store-event-schedule-block {
  margin-bottom: 1.25rem;
}

/* Checkout: términos alineados con el resumen */
.store-layout.store-adventure .store-event-checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1rem;
  padding: 0 0.25rem 0 0.75rem;
}

.store-layout.store-adventure .store-event-checkout-terms .store-event-checkout-terms-input {
  flex: 0 0 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.2rem 0 0 0;
}

.store-layout.store-adventure .store-event-checkout-terms .store-event-checkout-terms-label {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  cursor: pointer;
}

/* Controles clicables: cursor puntero (tema tienda no lo define en todos los .btn) */
.store-layout.store-adventure a[href],
.store-layout.store-adventure .btn,
.store-layout.store-adventure button:not(:disabled):not([disabled]),
.store-layout.store-adventure label[for],
.store-layout.store-adventure input[type="checkbox"],
.store-layout.store-adventure input[type="radio"],
.store-layout.store-adventure input[type="submit"],
.store-layout.store-adventure input[type="button"],
.store-layout.store-adventure .store-extra-detail-link,
.store-layout.store-adventure [data-store-extra-open] {
  cursor: pointer;
}

.store-layout.store-adventure button:disabled,
.store-layout.store-adventure .btn:disabled,
.store-layout.store-adventure .btn.disabled,
.store-layout.store-adventure input:disabled {
  cursor: not-allowed;
}

/* Detalle reserva (mis aventuras): resumen + tareas compactas */
.store-layout.store-adventure .store-adventure-reservation-hero {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
}

.store-layout.store-adventure .store-adventure-reservation-cover {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: #e9ecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.store-layout.store-adventure .store-adventure-reservation-title {
  line-height: 1.35;
  font-weight: 600;
}

.store-layout.store-adventure .store-adventure-reservation-company {
  line-height: 1.45;
}

.store-layout.store-adventure .store-adventure-reservation-schedule-label {
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem !important;
}

.store-layout.store-adventure .store-adventure-reservation-schedule-block.store-activity-event-schedule {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.store-layout.store-adventure .store-adventure-reservation-schedule-block .store-activity-event-weekday {
  margin-bottom: 0.4rem;
}

.store-layout.store-adventure .store-adventure-reservation-schedule-block .store-activity-event-times {
  display: inline-block;
  margin-top: 0.15rem;
}

.store-layout.store-adventure .store-adventure-detail .store-adventure-status-pill {
  font-size: 0.8125rem;
}

.store-layout.store-adventure .badge-danger.store-adventure-status-pill,
.store-layout.store-adventure .badge-danger.store-adventure-card-meta-badge {
  background-color: #dc3545;
  color: #fff;
}

.store-layout.store-adventure .store-adventure-total-row td {
  font-size: 1rem;
  padding-top: 0.65rem;
}

.store-layout.store-adventure .store-adventure-total-row .font-weight-bold {
  font-weight: 700 !important;
}

.store-layout.store-adventure .store-adventure-pay-total {
  padding: 0.65rem 0.75rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.375rem;
}

.store-layout.store-adventure .store-adventure-pay-total__amount {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #212529;
}

.store-layout.store-adventure .store-adventure-transfer-link {
  font-weight: 500;
  text-decoration: underline;
}

.store-layout.store-adventure .store-adventure-bank-transfer-body {
  line-height: 1.55;
  white-space: pre-wrap;
}

/* Mis Aventuras: tarjetas tipo listado de actividades */
.store-layout.store-adventure .store-adventure-cards-row {
  align-items: stretch;
}

.store-layout.store-adventure .store-adventure-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.store-layout.store-adventure .store-adventure-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.store-layout.store-adventure .store-adventure-card-media-link {
  color: inherit;
}

.store-layout.store-adventure .store-adventure-card-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.store-layout.store-adventure .store-adventure-card-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.store-layout.store-adventure .store-adventure-card-upcoming-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.92);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: help;
  pointer-events: auto;
}

.store-layout.store-adventure .store-adventure-card-details {
  padding: 1.15rem 1.15rem 0.85rem;
  background: #fff;
}

.store-layout.store-adventure .store-adventure-card-title {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
}

.store-layout.store-adventure .store-adventure-card-schedule-inner {
  font-size: 0.875rem;
}

.store-layout.store-adventure .store-adventure-card-meta-badge {
  font-size: 0.7rem;
  font-weight: 500;
  margin-right: 0.35rem;
  margin-bottom: 0.25rem;
}

.store-layout.store-adventure .store-adventure-card-footer {
  padding: 0.65rem 1rem 1rem;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.store-layout.store-adventure .store-adventure-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.store-layout.store-adventure .store-adventure-card-action {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  line-height: 1;
}

.store-layout.store-adventure .store-adventure-card-action .fa {
  font-size: 1rem;
}

.store-layout.store-adventure .store-adventure-card-action--labeled {
  width: auto;
  height: auto;
  min-height: 2.25rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Mi perfil (cliente tienda) */
.store-layout.store-adventure .store-page-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.store-layout.store-adventure .store-profile-layout {
  --store-profile-sidebar-max: 17rem;
}

.store-layout.store-adventure .store-profile-sidebar {
  max-width: 100%;
}

@media (min-width: 992px) {
  .store-layout.store-adventure .store-profile-sidebar {
    max-width: var(--store-profile-sidebar-max);
  }
}

.store-layout.store-adventure .store-profile-sidebar .store-profile-meta {
  line-height: 1.4;
}

.store-layout.store-adventure .store-profile-avatar {
  object-fit: cover;
  background: #e9ecef;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.store-layout.store-adventure .store-profile-main .store-profile-tabs {
  margin-bottom: 0;
}

.store-layout.store-adventure .store-profile-tabs .nav-link {
  font-weight: 500;
  color: #6c757d;
  padding: 0.5rem 1rem;
}

.store-layout.store-adventure .store-profile-tabs .nav-link.active {
  color: #212529;
  font-weight: 600;
}

.store-layout.store-adventure .store-profile-google-notice {
  color: #495057;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.375rem;
  padding: 0.4rem 0.6rem;
  line-height: 1.35;
}

.store-layout.store-adventure .store-profile-page .form-control[readonly] {
  background-color: #f8f9fa;
}

/* Cancelar reserva (cliente) */
.store-layout.store-adventure .store-cancel-page .store-cancel-hero {
  gap: 1rem;
}

.store-layout.store-adventure .store-cancel-page .store-cancel-hero .store-adventure-reservation-cover {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.store-layout.store-adventure .store-cancel-refund-card {
  background: linear-gradient(180deg, #f0f9ff 0%, #fff 100%);
  border: 1px solid #e0f2fe !important;
}

.store-layout.store-adventure .store-cancel-refund-total-row td {
  border-top-color: #e2e8f0;
}

.store-layout.store-adventure .store-cancel-policy-list li + li {
  margin-top: 0.35rem;
}

.store-layout.store-adventure .store-cancel-actions {
  gap: 0.75rem;
}

.store-layout.store-adventure .store-cancel-bank-fields .form-control-sm {
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .store-layout.store-adventure .store-adventure-reservation-cover {
    width: 9rem;
    height: 9rem;
  }

  .store-layout.store-adventure .store-adventure-reservation-hero {
    gap: 1.25rem;
  }
}

.store-layout.store-adventure .store-adventure-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.75rem 1rem;
}

.store-layout.store-adventure .store-adventure-status-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.store-layout.store-adventure .store-adventure-status-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #6c757d;
}

.store-layout.store-adventure .store-adventure-actions {
  gap: 0.625rem;
}

.store-layout.store-adventure .store-adventure-action-btn {
  min-width: 8.5rem;
}

.store-layout.store-adventure .store-adventure-task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.store-layout.store-adventure .store-adventure-refund-card {
  border-left: 3px solid var(--store-primary, #38bdf8);
}

.store-layout.store-adventure .store-adventure-refund-card .badge-success {
  background-color: #198754;
}

.store-layout.store-adventure .store-adventure-form-status-list li:last-child {
  border-bottom: none !important;
}

.store-layout.store-adventure .store-adventure-modal .modal-header .close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem 0 0;
}

.store-layout.store-adventure .store-adventure-form-block:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (min-width: 992px) {
  .store-layout.store-adventure .store-adventure-summary-card,
  .store-layout.store-adventure .store-adventure-pricing-card {
    min-height: 100%;
  }
}
