﻿:root {
  --steel: #055D82;
  --orange: #ff8344;
  --orange-soft: rgba(255, 131, 68, .64);
  --ink: #122238;
  --muted: #667085;
  --line: #e6ecf3;
  --cloud: #f6f8fb;
  --paper: #ffffff;
  --shadow: 0 22px 55px rgba(25, 67, 118, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.drawer-open,
body.lightbox-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
  margin: 0;
  color: var(--steel);
  line-height: 1.08;
}

h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { max-width: 920px; color: #fff; font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.18rem; font-weight: 900; }

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-card {
  display: grid;
  place-items: center;
  gap: .9rem;
  color: var(--steel);
  font-weight: 900;
}

.loader-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  animation: loaderPulse 1.15s ease-in-out infinite;
}

@keyframes loaderPulse {
  50% { transform: scale(1.08); filter: drop-shadow(0 12px 18px rgba(255, 131, 68, .28)); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: .75rem clamp(1rem, 3vw, 2.5rem);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1480px;
  margin: 0 auto;
  padding: .6rem .8rem;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 16px 42px rgba(14, 34, 58, .12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
  color: var(--orange);
  font-weight: 900;
}

.brand img { width: 58px !important; height: 58px; object-fit: contain; }
.brand strong { color: var(--steel); }

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
}

.main-menu > a,
.menu-group > button,
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 42px;
  padding: .65rem .8rem;
  border: 0;
  border-radius: 8px;
  color: var(--steel);
  background: transparent;
  font-size: .94rem;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.main-menu > a:hover,
.menu-group > button:hover {
  color: var(--orange);
  background: transparent;
}

.main-menu > a::after,
.menu-group > button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .22rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.main-menu > a:hover::after,
.menu-group > button:hover::after {
  width: 28px;
}

.cart-button {
  color: #fff;
  background: var(--steel);
}

.cart-button:hover { color: #fff; background: var(--orange); }

.cart-button span {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}

.cart-button:hover span { background: var(--steel); }

.menu-group { position: relative; }

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 235px;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
}

.menu-group:hover .submenu,
.menu-group.open .submenu,
.menu-group:focus-within .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.submenu a {
  position: relative;
  padding: .7rem .8rem;
  border-radius: 4px;
  color: var(--steel);
  font-weight: 800;
  transition: color .2s ease;
}

.submenu a:hover,
.submenu a.active {
  color: var(--orange);
  background: transparent;
}

.submenu a::after {
  content: "";
  position: absolute;
  left: .8rem;
  bottom: .36rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: width .2s ease;
}

.submenu a:hover::after,
.submenu a.active::after {
  width: 26px;
}

.menu-social-actions {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  margin-left: .35rem;
  padding-left: .55rem;
  border-left: 1px solid rgba(25, 67, 118, .12);
}

.menu-social-actions a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--steel);
  background: rgba(25, 67, 118, .06);
  font-size: .95rem;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.menu-social-actions a:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

.menu-language-actions {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  margin-left: .25rem;
  padding: .18rem;
  border: 1px solid rgba(25, 67, 118, .14);
  border-radius: 999px;
  background: rgba(25, 67, 118, .04);
}

.menu-language-actions button {
  display: inline-grid;
  width: 34px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: transparent;
  font-size: .72rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.menu-language-actions button:hover,
.menu-language-actions button.active {
  color: #fff;
  background: var(--steel);
  transform: translateY(-1px);
}

.menu-item-icon {
  display: none;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  background: transparent;
  color: var(--steel);
  cursor: pointer;
}

.menu-toggle { font-size: 2rem; }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 9rem clamp(1rem, 6vw, 5rem) 5rem;
  color: #fff;
}

.hero-media,
.hero-media img,
.hero-overlay { position: absolute; inset: 0; }

.hero-media {
  transform: translateZ(0);
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  animation: slowPan 18s ease-in-out infinite alternate;
}

@keyframes slowPan {
  from { transform: translateY(0) scale(1.02); }
  to { transform: translateY(-5%) scale(1.08); }
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 22, 43, .9), rgba(25, 67, 118, .56) 52%, rgba(6, 22, 43, .18));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 740px;
  margin: 1rem 0 1.45rem;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn-primary,
.btn-ghost,
.newsletter button,
.admin-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: .78rem 1.15rem;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 131, 68, .28);
  transition: transform .2s ease, background .2s ease;
}

.btn-primary:hover,
.newsletter button:hover,
.admin-actions button:hover {
  background: #ec6d2c;
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .13);
  box-shadow: none;
}

.btn-ghost.dark {
  border-color: var(--line);
  color: var(--steel);
  background: #fff;
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: .78rem 1.15rem;
  color: #fff;
  background: var(--steel);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(25, 67, 118, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.tour-actions .btn-primary,
.tour-actions .btn-cart {
  width: min(100%, 180px);
  min-height: 42px;
  padding: .62rem .9rem;
  font-size: .98rem;
  box-shadow: 0 10px 20px rgba(25, 67, 118, .16);
}

.tour-actions .btn-primary:hover,
.tour-actions .btn-cart:hover {
  box-shadow: 0 12px 22px rgba(25, 67, 118, .22);
  transform: translateY(-1px);
}

.btn-cart:hover {
  background: #234472;
  box-shadow: 0 16px 30px rgba(25, 67, 118, .32);
  transform: translateY(-2px);
}

.hero-card {
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 3.4rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: .65rem;
  max-width: min(820px, calc(100% - 2rem));
}

.hero-card span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.quick-search {
  position: relative;
  z-index: 5;
  max-width: 1180px;
  margin: -2.6rem auto 0;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-search form {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(150px, .85fr) minmax(140px, .75fr) minmax(140px, .75fr) auto;
  gap: .75rem;
}

.coupon-form div,
.newsletter div {
  display: grid;
  grid-template-columns: 1.15fr .85fr .75fr auto;
  gap: .75rem;
}

label {
  display: grid;
  gap: .25rem;
  color: var(--steel);
  font-size: .82rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: #fff;
  outline: none;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 131, 68, .16);
}

.section,
.admin-panel,
.site-footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 6rem clamp(1rem, 3vw, 2rem);
}

.section-heading {
  display: grid;
  gap: .65rem;
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p,
.tour-card p,
.checkout-card p,
.blog-grid p,
.experience-grid p,
.contact-section p,
.admin-panel p,
.site-footer p {
  color: var(--muted);
}
.tour-grid,
.commerce-grid,
.experience-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.tour-card,
.checkout-card,
.experience-grid article,
.blog-grid article,
.lead-form,
.reviews-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 67, 118, .08);
  overflow: hidden;
}

.tour-card { display: flex; flex-direction: column; position: relative; }

.blog-grid {
  align-items: start;
}

.tour-card.empty-result {
  padding: 1.2rem;
}

.tour-card.empty-result h3 {
  margin: 0 0 .4rem;
  color: var(--steel);
}

.tour-card.empty-result p {
  margin: 0;
  color: var(--muted);
}

.tour-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .45s ease;
}

.tour-card:hover > img { transform: scale(1.07); }

.tour-cover {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--steel);
}

.tour-cover::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(8, 24, 44, 0), rgba(8, 24, 44, .82));
}

.tour-cover img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform .45s ease;
}

.tour-card:hover .tour-cover img {
  transform: scale(1.04);
}

.tour-cover h3 {
  position: absolute;
  left: 1rem;
  right: auto;
  bottom: 1.15rem;
  z-index: 1;
  max-width: min(82%, 420px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.32rem);
  line-height: 1.15;
  letter-spacing: .01em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .28),
    0 2px 0 rgba(25, 67, 118, .55),
    0 6px 16px rgba(8, 24, 44, .75);
}

.tours-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(230px, .72fr);
  gap: 1.35rem;
  align-items: start;
}

.tours-layout .tour-grid {
  grid-template-columns: 1fr;
}

.tours-layout .tour-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tours-layout .tour-card > img {
  height: 310px;
  min-height: 0;
}

.tours-layout .tour-card:hover > img {
  transform: scale(1.04);
}

.tour-tags-sidebar {
  position: sticky;
  top: 105px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(25, 67, 118, .08);
}

.tour-tags-sidebar h3 {
  margin: 0 0 .9rem;
  color: var(--steel);
  font-size: 1.2rem;
}

.tour-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.tour-tags span,
.tour-tags a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .72rem;
  border: 1px solid rgba(25, 67, 118, .14);
  border-radius: 999px;
  color: var(--steel);
  background: var(--cloud);
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.tour-tags span:hover,
.tour-tags a:hover {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}
.tour-tags a.active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 131, 68, .22);
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 1rem;
}

.review-modal.open {
  display: grid;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 24, 42, .62);
  backdrop-filter: blur(5px);
}

.review-modal-card {
  position: relative;
  z-index: 1;
  width: min(760px, 96vw);
  max-height: 90vh;
  overflow: auto;
  padding: 1.4rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(10, 24, 42, .28);
}

.review-modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: var(--cloud);
  cursor: pointer;
}

.review-modal-copy {
  padding-right: 2.4rem;
}

.review-modal-copy h2 {
  margin: .25rem 0 .45rem;
  color: var(--steel);
}

.review-modal-copy p {
  color: var(--muted);
}

.review-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.review-modal-grid article {
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cloud);
  text-align: center;
}

.review-modal-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.review-modal-grid span {
  display: block;
  margin-top: .65rem;
  color: var(--steel);
  font-weight: 900;
}

.review-socials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .7rem;
}

.review-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .7rem .8rem;
  border-radius: 999px;
  color: #fff;
  background: var(--steel);
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.review-socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

body.review-modal-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .review-modal-card {
    padding: 1rem;
  }

  .review-modal-grid,
  .review-socials {
    grid-template-columns: 1fr;
  }

  .review-modal-grid img {
    height: 150px;
  }
}

.tour-card-body {
  display: grid;
  gap: .82rem;
  padding: 1rem;
  flex: 1;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.badge,
.discount {
  width: fit-content;
  padding: .32rem .72rem;
  border-radius: 999px;
  color: #fff;
  background: var(--steel);
  font-size: .78rem;
  font-weight: 900;
}

.discount { background: var(--orange); }

.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.tour-tabs button {
  position: relative;
  min-height: 40px;
  border: 0;
  border-radius: 0;
  color: var(--steel);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color .2s ease;
}

.tour-tabs button:hover,
.tour-tabs button.active {
  color: var(--steel);
  background: transparent;
}

.tour-tabs button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.tour-tabs button:hover::after,
.tour-tabs button.active::after {
  width: 34px;
}

.tour-panel {
  display: none;
  min-height: 210px;
}

.tour-panel.active {
  display: grid;
  gap: .85rem;
}

.tour-detail-grid {
  display: grid;
  gap: .65rem;
}

.tour-summary-title {
  margin: 0;
  color: var(--steel);
  font-size: 1.05rem;
  font-weight: 900;
}

.tour-summary-title + .tour-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-summary-title + .tour-detail-grid span {
  grid-template-columns: 21px 1fr;
  padding: .48rem .52rem;
  font-size: .84rem;
  line-height: 1.25;
}

.tour-summary-title + .tour-detail-grid i {
  width: 21px;
  height: 21px;
  font-size: .78rem;
}

.tour-detail-grid span {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: .65rem;
  align-items: center;
  padding: .72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
}

.tour-detail-grid i {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
}

.tour-detail-grid strong {
  color: var(--steel);
}

@media (max-width: 640px) {
  .tour-summary-title + .tour-detail-grid {
    grid-template-columns: 1fr;
  }
}

.tour-day-list {
  display: grid;
  gap: .75rem;
}

.tour-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.tour-day summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .75rem;
  padding: .85rem 1rem;
  color: var(--steel);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.tour-day summary::-webkit-details-marker {
  display: none;
}

.tour-day summary i {
  order: -1;
  color: var(--orange);
  transition: transform .2s ease;
}

.tour-day[open] summary i {
  transform: rotate(180deg);
}

.tour-day > div {
  display: grid;
  gap: .75rem;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.72;
}

.tour-day p {
  margin: 0;
}

.tour-day strong {
  color: var(--steel);
}

.tour-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.tour-inclusion-grid h4 {
  position: relative;
  width: fit-content;
  margin: 0 0 .75rem;
  padding-bottom: .35rem;
  color: var(--steel);
}

.tour-inclusion-grid h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.tour-inclusion-grid ul {
  display: grid;
  gap: .4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
}

.tour-inclusion-grid li {
  display: flex;
  gap: .45rem;
}

.tour-inclusion-grid i {
  color: var(--orange);
}

.tour-recommendations {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-recommendations li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: .7rem;
  align-items: center;
  padding: .78rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: linear-gradient(180deg, #fff, rgba(25, 67, 118, .035));
  font-weight: 800;
}

.tour-recommendations i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
}

.tour-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.tour-photo-gallery button {
  position: relative;
  min-height: 150px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cloud);
  cursor: zoom-in;
}

.tour-photo-gallery button::after {
  content: "\F52A";
  position: absolute;
  right: .6rem;
  bottom: .6rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(25, 67, 118, .88);
  font-family: "bootstrap-icons";
  font-size: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.tour-photo-gallery button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.tour-photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.tour-photo-gallery button:hover img {
  filter: saturate(1.12);
  transform: scale(1.04);
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: .75rem;
}

.price-prefix {
  display: block;
  margin-bottom: .15rem;
  color: var(--steel);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.price {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 800;
}

.usd {
  color: var(--steel);
  font-size: 1.65rem;
  font-weight: 900;
}


.per-person {
  display: block;
  margin-top: .18rem;
  color: var(--muted, #64748b);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.15;
}.rating { color: var(--orange); font-weight: 900; }

.tour-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: .7rem;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.photo-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 22, 43, .82);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  max-height: 86vh;
  padding: .65rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}

.photo-lightbox.open .lightbox-dialog {
  transform: translateY(0) scale(1);
}

.lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: calc(86vh - 1.3rem);
  border-radius: 4px;
  object-fit: contain;
  background: var(--steel);
}

.lightbox-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--steel);
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.lightbox-nav:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

.ecommerce-panel {
  max-width: none;
  background: var(--cloud);
}

.ecommerce-panel > * {
  max-width: 1240px;
  margin-inline: auto;
}

.checkout-card,
.lead-form { padding: 1.25rem; }

.checkout-card form {
  display: grid;
  gap: .75rem;
}

.payment-icons {
  display: grid;
  gap: .65rem;
  margin: 1rem 0;
}

.payment-icons span {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem;
  border-radius: 8px;
  color: var(--steel);
  background: var(--cloud);
  font-weight: 900;
}

.payment-icons i { color: var(--orange); font-size: 1.35rem; }

.manual-payment-box {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
  padding: .95rem;
  border: 1px solid rgba(255, 131, 68, .26);
  border-radius: 8px;
  background: rgba(255, 131, 68, .08);
}

.manual-payment-box h4 {
  margin: 0;
  color: var(--steel);
}

.manual-payment-box p,
.manual-payment-box small {
  margin: 0;
  color: var(--muted);
}

.manual-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}

.manual-qr-grid div {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: .75rem;
  border: 1px dashed rgba(25, 67, 118, .32);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.manual-qr-grid strong {
  color: var(--steel);
}

.manual-qr-grid span {
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
}

.coupon-form { display: grid; gap: .65rem; }
.coupon-form div { grid-template-columns: 1fr auto; }

.booking-item {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}

.experiences .experience-grid {
  max-width: 820px;
  grid-template-columns: 1fr;
  gap: .85rem;
}

.experience-grid article {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
}

.experience-grid article > div:only-child {
  grid-column: 1 / -1;
}

.experience-grid img {
  width: 82px;
  height: 82px;
  border: 3px solid rgba(255, 131, 68, .22);
  border-radius: 999px;
  object-fit: cover;
}

.empty-avatar {
  display: block;
  width: 82px;
  height: 82px;
  border: 3px solid rgba(255, 131, 68, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(25, 67, 118, .08), rgba(255, 131, 68, .18));
}

.experience-grid h3 {
  margin: 0 0 .18rem;
  color: var(--steel);
  font-size: 1.02rem;
}

.experience-grid p {
  margin: .35rem 0 0;
}

.experience-grid span {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 900;
}

.video-card { position: relative; }
.video-card button {
  position: absolute;
  top: 92px;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  transform: translateX(-50%);
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: .75rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(25, 67, 118, .09);
  transition: transform .35s ease, filter .35s ease;
}

.gallery-grid img:hover { transform: scale(1.03); filter: saturate(1.12); }
.gallery-grid img:nth-child(1), .gallery-grid img:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery-grid img:nth-child(2), .gallery-grid img:nth-child(3), .gallery-grid img:nth-child(5), .gallery-grid img:nth-child(6) { grid-column: span 2; }

.blog-grid article { display: grid; }
.blog-grid img { width: 100%; height: 220px; object-fit: cover; }
.blog-grid div {
  display: grid;
  gap: .55rem;
  padding: 1rem;
}
.blog-grid span { color: var(--orange); font-weight: 900; }

.blog-grid h3 {
  margin: 0;
}

.blog-grid p {
  margin: 0;
}

.blog-details {
  display: grid;
  gap: .55rem;
  padding: .55rem 0;
}

.blog-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .45rem;
  width: fit-content;
  min-height: 36px;
  padding: .52rem .75rem;
  border: 1px solid rgba(255, 131, 68, .35);
  border-radius: 8px;
  color: var(--steel);
  background: rgba(255, 131, 68, .08);
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.blog-details summary::-webkit-details-marker {
  display: none;
}

.blog-details summary i {
  color: var(--orange);
  transition: transform .2s ease;
}

.blog-details[open] summary i {
  transform: rotate(180deg);
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin-top: .35rem;
  padding: .62rem .95rem;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255, 131, 68, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.blog-button:hover {
  color: #fff;
  background: #ec6d2c;
  box-shadow: 0 15px 26px rgba(255, 131, 68, .3);
  transform: translateY(-2px);
}

.social-share,
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}

.social-share a,
.social-links a,
.floating-tools a,
.floating-tools button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.floating-tools button[data-scroll-top]:hover {
  background: var(--steel);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(25, 67, 118, .28);
}

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 2rem;
}

.lead-form {
  display: grid;
  gap: .85rem;
}

.reviews-card {
  margin-top: 1rem;
  padding: 1rem;
}

.reviews-card span { display: block; color: var(--orange); font-weight: 900; }

.admin-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  justify-content: flex-end;
  background: rgba(9, 20, 35, .45);
  opacity: 0;
  pointer-events: none;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer > div {
  width: min(460px, 100%);
  height: 100%;
  padding: 1.2rem;
  overflow: auto;
  background: #fff;
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer.open > div { transform: translateX(0); }

.drawer-close {
  float: right;
  border: 0;
  background: transparent;
  color: var(--steel);
  font-size: 1.25rem;
  cursor: pointer;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img { width: 72px; height: 62px; border-radius: 8px; object-fit: cover; }
.cart-item button { border: 0; color: var(--orange); background: transparent; cursor: pointer; }

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  color: var(--steel);
  font-size: 1.25rem;
  font-weight: 900;
}

.full { width: 100%; margin-top: .55rem; }

.floating-tools {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  gap: .6rem;
}

.floating-tools a:last-child {
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse { to { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } }

.live-chat {
  position: fixed;
  right: 4.6rem;
  bottom: 1rem;
  z-index: 1200;
  width: min(360px, calc(100vw - 2rem));
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.live-chat.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.live-chat header {
  display: flex;
  justify-content: space-between;
  padding: .9rem 1rem;
  color: #fff;
  background: var(--steel);
}

.live-chat header button {
  border: 0;
  color: #fff;
  background: transparent;
}

.chat-body { min-height: 130px; padding: 1rem; color: var(--muted); }
.chat-body p { margin: .4rem 0; padding: .7rem; border-radius: 8px; background: var(--cloud); }
.live-chat form { display: grid; grid-template-columns: 1fr 48px; gap: .4rem; padding: .75rem; border-top: 1px solid var(--line); }
.live-chat form button { border: 0; border-radius: 8px; color: #fff; background: var(--orange); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr .9fr 1fr;
  gap: 2rem;
  max-width: none;
  color: rgba(255, 255, 255, .8);
  background: #0f2238;
}

.site-footer > * {
  max-width: 1240px;
}

.site-footer h3,
.site-footer label {
  display: block;
  margin-bottom: .7rem;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  display: block;
  margin: .45rem 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.site-footer a:hover { color: var(--orange); }
.site-footer input { border: 0; }
.site-footer p { color: rgba(255, 255, 255, .72); }

.newsletter div { grid-template-columns: 1fr auto; }

.footer-brand p,
.footer-contact p {
  margin: .45rem 0;
  color: rgba(255, 255, 255, .76);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.footer-contact i {
  color: var(--orange);
  margin-top: .18rem;
}

.footer-social {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.footer-social h3 {
  margin-top: 0;
}

.footer-social .social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}

.footer-social .social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  transition: transform .2s ease, background .2s ease;
}

.footer-social .social-links a:hover {
  color: #fff;
  background: var(--steel);
  transform: translateY(-2px);
}

.footer-copy {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 1rem;
  text-align: center;
}

.footer-copy p { margin: 0; }

@media (max-width: 1160px) {
  .menu-toggle,
  .menu-close {
    display: grid;
    place-items: center;
  }

  .main-menu {
    position: fixed;
    inset: 0 auto 0 0;
    display: block;
    width: min(420px, 92vw);
    height: 100dvh;
    padding: 1rem;
    overflow: auto;
    background: #fff;
    box-shadow: 18px 0 45px rgba(14, 34, 58, .18);
    transform: translateX(-105%);
    transition: transform .28s ease;
  }

  .main-menu.open { transform: translateX(0); }
  .menu-close { margin-left: auto; min-height: 44px; font-size: 1.2rem; }

  .main-menu > a,
  .menu-group > button,
  .cart-button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    min-height: 52px;
  }

  .menu-group > button .bi-chevron-down {
    margin-left: auto;
  }

  .submenu a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .55rem;
    text-align: left;
  }

  .menu-social-actions {
    width: 100%;
    justify-content: center;
    margin: .5rem 0 0;
    padding: .75rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(25, 67, 118, .12);
  }

  .menu-social-actions a {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .menu-language-actions {
    width: 100%;
    justify-content: center;
    margin: .5rem 0 0;
    padding: .65rem 0 0;
    border: 0;
    border-top: 1px solid rgba(25, 67, 118, .12);
    border-radius: 0;
    background: transparent;
  }

  .menu-language-actions button {
    width: 48px;
    height: 38px;
    border: 1px solid rgba(25, 67, 118, .14);
    background: rgba(25, 67, 118, .04);
    font-size: .82rem;
  }

  #main-menu .menu-item-icon {
    display: inline-grid;
    width: 26px;
    height: 26px;
    min-width: 26px;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: rgba(255, 131, 68, .12);
    font-size: .9rem;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .menu-group.open .submenu { display: grid; }
}

@media (max-width: 920px) {
  .quick-search form,
  .tour-grid,
  .tours-layout,
  .commerce-grid,
  .experience-grid,
  .blog-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
.hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .admin-panel {
    flex-direction: column;
    align-items: center;
  }

  .tours-layout .tour-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tours-layout .tour-card > img {
    height: 260px;
    min-height: 0;
  }

  .tour-cover,
  .tour-cover img {
    height: 260px;
    min-height: 260px;
  }

  .tour-tags-sidebar {
    position: static;
  }

  .tour-inclusion-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header { padding: .5rem; }
  .brand { min-width: 0; }
  .brand span { font-size: .9rem; }
  .brand img { width: 48px; height: 48px; }
  .hero { min-height: 100vh; padding: 7rem 1rem 2rem; }
  .hero-actions, .hero-actions a, .hero-actions button { width: 100%; }
  .quick-search { margin: 0; border-radius: 0; }
.tour-actions { grid-template-columns: 1fr; justify-items: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
  .tour-tabs,
  .tour-photo-gallery {
    grid-template-columns: 1fr;
  }
  .experience-grid article {
    grid-template-columns: 70px 1fr;
    gap: .8rem;
    padding: .85rem;
  }
  .experience-grid img {
    width: 70px;
    height: 70px;
  }
  .empty-avatar {
    width: 70px;
    height: 70px;
  }
  .tour-photo-gallery button {
    height: 190px;
    min-height: 0;
  }
  .live-chat { right: 1rem; bottom: 4.8rem; }
  .section, .admin-panel, .site-footer { padding-block: 4rem; }
  .newsletter div, .coupon-form div { grid-template-columns: 1fr; }
}


/* Hybrid live chat */
.live-chat header div {
  display: grid;
  gap: .12rem;
}

.live-chat header small {
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  font-weight: 600;
}

.chat-body {
  display: grid;
  gap: .75rem;
  max-height: min(68vh, 560px);
  overflow-y: auto;
}

.chat-message.bot {
  color: var(--steel);
  line-height: 1.45;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.chat-quick-replies button {
  border: 1px solid rgba(25, 67, 118, .14);
  border-radius: 999px;
  padding: .48rem .68rem;
  color: var(--steel);
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.chat-quick-replies button:hover,
.chat-quick-replies button.active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  transform: translateY(-1px);
}

.live-chat .chat-lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  padding: 0;
  border-top: 0;
}

.chat-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.live-chat .chat-lead-form label {
  display: grid;
  gap: .28rem;
  color: var(--steel);
  font-size: .76rem;
  font-weight: 800;
}

.live-chat .chat-lead-form input,
.live-chat .chat-lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .62rem .68rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: .86rem;
  outline: none;
}

.live-chat .chat-lead-form input:focus,
.live-chat .chat-lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 131, 68, .16);
}

.live-chat .chat-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #25d366;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.live-chat .chat-whatsapp-button:hover {
  transform: translateY(-2px);
  filter: brightness(.96);
}

@media (max-width: 520px) {
  .chat-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer payment methods */
.footer-payments {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.footer-payments h3 {
  margin-top: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
}

.payment-methods span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 40px;
  padding: .55rem .78rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .88rem;
  font-weight: 900;
}

.payment-methods i:not(.yape-icon) {
  color: var(--orange);
  font-size: 1.18rem;
}

.yape-icon {
  display: inline-grid;
  width: 1.35em;
  height: 1.35em;
  min-width: 1.35em;
  place-items: center;
  border-radius: .36em;
  color: #fff;
  background: #742284;
  font-style: normal;
  font-size: .78em;
  font-weight: 950;
  line-height: 1;
}

.manual-payment-box .yape-icon {
  margin-right: .35rem;
  font-size: .82rem;
  vertical-align: -0.08em;
}

.manual-qr-card img {
  width: min(160px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  padding: .45rem;
  background: #fff;
  box-shadow: 0 10px 22px rgba(25, 67, 118, .12);
}

.manual-qr-grid .manual-qr-card {
  align-content: start;
  gap: .45rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.manual-qr-label {
  display: block;
  width: 100%;
  color: var(--steel);
  font-size: .95rem;
  font-weight: 950;
  text-align: center;
}

.manual-qr-image {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(25, 67, 118, .12);
}

.manual-qr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.payment-methods span:has(img) {
  display: grid;
  min-width: 92px;
  min-height: 48px;
  place-items: center;
  padding: .42rem .7rem;
  background: transparent;
}

.payment-methods img {
  display: block;
  max-width: 86px;
  max-height: 30px;
  margin: auto;
  object-fit: contain;
}


/* Global claim modal */
.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 28px);
  background: rgba(9, 27, 48, .78);
  backdrop-filter: blur(8px);
}

.claim-modal.open {
  display: flex;
}

.claim-modal-open {
  overflow: hidden;
}

.claim-modal-dialog {
  width: min(1080px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .36);
}

.claim-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border-bottom: 1px solid rgba(25, 67, 118, .12);
  background:
    linear-gradient(135deg, rgba(25, 67, 118, .97), rgba(25, 67, 118, .86)),
    #194376;
  color: #fff;
}

.claim-title-group {
  display: grid;
  gap: 7px;
}

.claim-kicker {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #194376;
  background: #fff;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.claim-modal-header .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-modal-header h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.claim-modal-header p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
}

.claim-close {
  display: grid;
  width: 42px;
  height: 42px;
  min-width: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.claim-close:hover {
  transform: translateY(-2px);
  color: #194376;
  background: #fff;
}

.claim-modal-instructions {
  display: grid;
  gap: 18px;
  margin: clamp(18px, 3vw, 30px) clamp(18px, 4vw, 34px) 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(25, 67, 118, .12);
  border-left: 4px solid #ff8344;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25, 67, 118, .08);
}

.claim-instruction-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.claim-instruction-heading i {
  display: grid;
  width: 38px;
  height: 38px;
  min-width: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff8344;
}

.claim-instruction-heading strong {
  display: block;
  color: #194376;
  font-size: 1.04rem;
  font-weight: 950;
}

.claim-instruction-heading p,
.claim-legal-note {
  margin: 5px 0 0;
  color: #59677b;
  line-height: 1.6;
}

.claim-modal-instructions ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: claim-step;
}

.claim-modal-instructions li {
  counter-increment: claim-step;
  display: flex;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fbff;
  color: #59677b;
  line-height: 1.55;
}

.claim-modal-instructions li::before {
  content: counter(claim-step);
  display: grid;
  width: 24px;
  height: 24px;
  min-width: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #194376;
  font-size: .78rem;
  font-weight: 950;
}

.claim-legal-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(25, 67, 118, .18);
  font-size: .94rem;
}

.claim-form {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}

.claim-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(25, 67, 118, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(25, 67, 118, .07);
}

.claim-form legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: #194376;
  font-size: 1rem;
  font-weight: 950;
}

.claim-form legend span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ff8344;
  font-size: .86rem;
}

.claim-form-grid,
.claim-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.claim-form label {
  display: grid;
  gap: 8px;
  color: #194376;
  font-size: .92rem;
  font-weight: 850;
}

.claim-form input,
.claim-form select,
.claim-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #1f2d3d;
  background: #f8fbff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.claim-form textarea {
  min-height: 118px;
  resize: vertical;
}

.claim-form input:focus,
.claim-form select:focus,
.claim-form textarea:focus {
  border-color: #ff8344;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 131, 68, .15);
}

.claim-choice,
.claim-acceptance {
  display: flex !important;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
}

.claim-choice {
  padding: 16px;
  border: 1px solid rgba(25, 67, 118, .16);
  background: #f8fbff;
}

.claim-choice input,
.claim-acceptance input {
  width: auto;
  margin-top: 4px;
  accent-color: #ff8344;
}

.claim-choice span,
.claim-acceptance span {
  color: #59677b;
  font-size: .94rem;
  line-height: 1.55;
}

.claim-choice strong {
  display: block;
  margin-bottom: 2px;
  color: #194376;
}

.claim-acceptance {
  padding: 16px 18px;
  border: 1px solid rgba(255, 131, 68, .22);
  background: rgba(255, 131, 68, .09);
}

.claim-code-card {
  padding: 18px;
  border: 1px solid rgba(255, 131, 68, .24);
  border-radius: 10px;
  background: rgba(255, 131, 68, .08);
}

.claim-code-card strong,
.claim-code-card span {
  color: #194376;
}

.claim-code-card span {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 950;
}

.claim-code-card small {
  display: block;
  margin-top: 6px;
  color: #59677b;
  line-height: 1.6;
}

.claim-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.claim-submit,
.claim-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.claim-submit {
  border: 1px solid #ff8344;
  color: #fff;
  background: #ff8344;
  box-shadow: 0 14px 26px rgba(255, 131, 68, .24);
}

.claim-submit:hover {
  transform: translateY(-2px);
  border-color: #194376;
  background: #194376;
}

.claim-secondary {
  border: 1px solid rgba(25, 67, 118, .18);
  color: #194376;
  background: #fff;
}

.claim-secondary:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #194376;
}

.claim-message {
  min-height: 24px;
  margin: 0;
  color: #194376;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .claim-modal {
    align-items: stretch;
    padding: 0;
  }

  .claim-modal-dialog {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .claim-modal-header {
    grid-template-columns: 1fr auto;
  }

  .claim-modal-instructions ol,
  .claim-form-grid,
  .claim-type-grid {
    grid-template-columns: 1fr;
  }

  .claim-actions-row {
    flex-direction: column;
  }

  .claim-submit,
  .claim-secondary {
    width: 100%;
  }
}

/* Simple hybrid chat */
.floating-tools .chat-fast-toggle {
  width: auto;
  min-width: 48px;
  padding: 0 .78rem;
  gap: .42rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 950;
}

.floating-tools .chat-fast-toggle span {
  display: inline-block;
  white-space: nowrap;
}

.live-chat.simple-chat {
  width: min(380px, calc(100vw - 2rem));
  border: 1px solid rgba(25, 67, 118, .12);
  border-radius: 12px;
}

.live-chat.simple-chat header {
  align-items: center;
  padding: .95rem 1rem;
  background: linear-gradient(135deg, #194376, #24588f);
}

.live-chat.simple-chat header strong {
  font-size: 1rem;
}

.live-chat.simple-chat .chat-body {
  gap: .8rem;
  padding: .95rem;
  background: #f8fbff;
}

.live-chat.simple-chat .chat-message.bot {
  margin: 0;
  padding: .85rem;
  border: 1px solid rgba(25, 67, 118, .1);
  border-radius: 10px;
  color: #194376;
  background: #fff;
  font-size: .9rem;
}

.live-chat.simple-chat .chat-quick-replies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}

.live-chat.simple-chat .chat-quick-replies button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: .45rem;
  min-height: 40px;
  padding: .58rem .68rem;
  border-radius: 8px;
  font-size: .78rem;
  text-align: left;
}

.live-chat.simple-chat .chat-quick-replies button i {
  color: #ff8344;
  font-size: .95rem;
}

.live-chat.simple-chat .chat-quick-replies button:hover i,
.live-chat.simple-chat .chat-quick-replies button.active i {
  color: #fff;
}

.chat-selected-card {
  padding: .85rem;
  border: 1px solid rgba(255, 131, 68, .22);
  border-radius: 10px;
  background: rgba(255, 131, 68, .08);
}

.chat-selected-card span {
  display: inline-block;
  margin-bottom: .3rem;
  color: #194376;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-selected-card p {
  margin: 0;
  padding: 0;
  color: #59677b;
  background: transparent;
  font-size: .88rem;
  line-height: 1.5;
}

.live-chat.simple-chat .chat-lead-form {
  gap: .55rem;
  padding: .85rem;
  border: 1px solid rgba(25, 67, 118, .1);
  border-radius: 10px;
  background: #fff;
}

.live-chat.simple-chat .chat-form-grid {
  grid-template-columns: 1fr 92px;
}

.chat-helper-note {
  color: #59677b;
  font-size: .74rem;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 520px) {
  .floating-tools .chat-fast-toggle span {
    display: none;
  }

  .live-chat.simple-chat {
    right: 1rem;
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }

  .live-chat.simple-chat .chat-form-grid,
  .live-chat.simple-chat .chat-quick-replies {
    grid-template-columns: 1fr;
  }
}

/* Basic compact chat */
.live-chat.basic-chat {
  width: min(320px, calc(100vw - 2rem));
  border-radius: 10px;
}

.live-chat.basic-chat .chat-body {
  display: grid;
  gap: .7rem;
  padding: .95rem;
  background: #fff;
}

.live-chat.basic-chat .chat-message {
  margin: 0;
  padding: .75rem .85rem;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.45;
}

.live-chat.basic-chat .chat-message.user {
  justify-self: end;
  max-width: 88%;
  color: #fff;
  background: #194376;
}

.live-chat.basic-chat .chat-message.bot {
  justify-self: start;
  max-width: 92%;
  color: #194376;
  background: #f8fbff;
  border: 1px solid rgba(25, 67, 118, .12);
}

.live-chat.basic-chat .chat-whatsapp-button {
  width: 100%;
  margin-top: .15rem;
}

@media (max-width: 520px) {
  .live-chat.basic-chat {
    right: 1rem;
    bottom: 5rem;
    width: calc(100vw - 2rem);
  }
}

/* Free text compact chat */
.live-chat.basic-chat .chat-body {
  max-height: 260px;
  overflow-y: auto;
}

.live-chat.basic-chat .chat-free-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: .45rem;
  padding: .75rem;
  border-top: 1px solid rgba(25, 67, 118, .12);
  background: #fff;
}

.live-chat.basic-chat .chat-free-form input {
  width: 100%;
  border: 1px solid rgba(25, 67, 118, .16);
  border-radius: 8px;
  padding: .68rem .78rem;
  color: #1f2d3d;
  background: #f8fbff;
  font: inherit;
  font-size: .9rem;
  outline: none;
}

.live-chat.basic-chat .chat-free-form input:focus {
  border-color: #ff8344;
  box-shadow: 0 0 0 3px rgba(255, 131, 68, .16);
}

.live-chat.basic-chat .chat-free-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #ff8344;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.live-chat.basic-chat .chat-free-form button:hover {
  transform: translateY(-1px);
  background: #194376;
}
.footer-claim-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.footer-claim-link img {
  display: block;
  width: 58px !important;
  max-width: 58px !important;
  height: auto !important;
  margin-top: .15rem;
  margin-left: .45rem;
  margin-right: 0;
  border-radius: 4px;
  transition: transform .2s ease, filter .2s ease;
}

.footer-claim-link:hover img {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
/* Mobile hero buttons: compact and left aligned */
@media (max-width: 640px) {
  .hero .hero-actions {
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: .48rem;
    margin-top: .7rem;
  }

  .hero .hero-actions a,
  .hero .hero-actions button,
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-ghost {
    width: auto;
    min-height: 36px;
    justify-content: center;
    padding: .52rem .82rem;
    font-size: .88rem;`r`n    line-height: 1.15;
  }
}
/* === Hero uniform responsive patch === */
/* Hero ordenado y uniforme */
.hero,
.destination-hero {
  min-height: 520px;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 7.5rem clamp(1rem, 5vw, 4.5rem) 4.5rem;
  text-align: center;
}

.hero-media img,
.destination-hero img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(6, 22, 43, .64), rgba(25, 67, 118, .48) 52%, rgba(6, 22, 43, .52));
}

.hero-content,
.destination-hero .hero-content {
  width: min(900px, 100%);
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1.05rem;
}

.hero h1,
.destination-hero h1 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(1.78rem, 4.6vw, 3.35rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-content > p:not(.eyebrow),
.destination-hero .hero-content > p:not(.eyebrow) {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  margin-top: .15rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-ghost,
.hero-payment-chip {
  width: auto;
  min-height: 42px;
  padding: .64rem .95rem;
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.1;
}

.hero-payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
  background: rgba(255, 255, 255, .13);
  font-weight: 900;
  box-shadow: none;
}

.hero-payment-chip i {
  color: #fff;
}

@media (max-width: 900px) {
  .hero,
  .destination-hero {
    min-height: 440px;
    padding: 6.6rem 1rem 3.2rem;
  }
}

@media (max-width: 640px) {
  .hero,
  .destination-hero {
    min-height: 360px;
    padding: 5.9rem .9rem 2.4rem;
  }

  .hero-content,
  .destination-hero .hero-content {
    gap: .78rem;
  }

  .hero h1,
  .destination-hero h1 {
    max-width: 19rem;
    font-size: clamp(1.32rem, 6.1vw, 1.78rem);
    line-height: 1.08;
  }

  .hero .hero-actions {
    width: min(100%, 20rem);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    margin-top: .2rem;
  }

  .hero .hero-actions a,
  .hero .hero-actions button,
  .hero .hero-actions .btn-primary,
  .hero .hero-actions .btn-ghost,
  .hero .hero-actions .hero-payment-chip {
    width: auto;
    min-height: 32px;
    padding: .42rem .58rem;
    font-size: .7rem;
    line-height: 1.08;
  }

  .hero-payment-chip {
    flex-basis: auto;
  }
}
/* === End hero uniform responsive patch === */
/* === Mobile filter highlight patch === */
/* Cuadro de filtrar tours destacado en dispositivos */
@media (max-width: 900px) {
  .quick-search {
    width: min(92vw, 720px);
    margin: -2rem auto 2rem;
    padding: .95rem;
    border: 1px solid rgba(5, 93, 130, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(5, 93, 130, .18);
  }

  .quick-search form {
    gap: .7rem;
  }

  .quick-search label {
    color: var(--steel, #055D82);
    font-weight: 900;
  }

  .quick-search select,
  .quick-search input {
    border-color: rgba(5, 93, 130, .18);
    background: #fff;
    box-shadow: 0 8px 18px rgba(5, 93, 130, .06);
  }
}

@media (max-width: 640px) {
  .quick-search {
    width: min(92vw, 22rem);
    margin: -1.35rem auto 1.8rem;
    padding: .82rem;
    border: 1px solid rgba(255, 131, 68, .34);
    box-shadow: 0 16px 36px rgba(5, 93, 130, .2);
  }

  .quick-search form {
    gap: .62rem;
  }

  .quick-search label span {
    color: var(--steel, #055D82);
    font-size: .72rem;
  }

  .quick-search select,
  .quick-search input {
    min-height: 40px;
    font-size: .78rem;
  }

  .quick-search button,
  .quick-search .btn-primary {
    justify-self: center;
    min-height: 34px;
    padding: .46rem .78rem;
    font-size: .74rem;
  }
}
/* === End mobile filter highlight patch === */
/* === Hero H1 slide motion patch === */
/* Movimiento suave de entrada para H1 del hero */
.hero h1, .destination-hero h1 {
  animation: heroTitleSlideIn 1.05s ease both;
  will-change: opacity, transform, filter;
}

@keyframes heroTitleSlideIn {
  from {
    opacity: 0;
    transform: translateX(-34px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1, .destination-hero h1 {
    animation: none;
  }
}
/* === End hero H1 slide motion patch === */
/* === Mobile tour tabs emphasis patch === */
/* Pestañas Detalle / Itinerario / Recomendación / Fotos más visibles en dispositivos */
@media (max-width: 900px) {
  .tour-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
    padding: .6rem;
    border-bottom: 1px solid rgba(5, 93, 130, .12);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .tour-tabs button {
    min-height: 42px;
    border: 1px solid rgba(5, 93, 130, .16);
    border-radius: 8px;
    color: var(--steel, #055D82);
    background: #fff;
    font-size: .82rem;
    box-shadow: 0 8px 18px rgba(5, 93, 130, .08);
  }

  .tour-tabs button:hover,
  .tour-tabs button.active {
    border-color: rgba(255, 131, 68, .48);
    color: #fff;
    background: var(--steel, #055D82);
    box-shadow: 0 12px 24px rgba(5, 93, 130, .18);
  }

  .tour-tabs button::after {
    left: 50%;
    bottom: 5px;
    height: 2px;
    background: var(--orange, #ff8344);
    transform: translateX(-50%);
  }

  .tour-tabs button:hover::after,
  .tour-tabs button.active::after {
    width: 28px;
  }
}

@media (max-width: 640px) {
  .tour-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    padding: .68rem;
  }

  .tour-tabs button {
    min-height: 46px;`r`n    padding: .62rem .46rem;
    font-size: .88rem;`r`n    line-height: 1.15;
  }

  .tour-tabs button:hover::after,
  .tour-tabs button.active::after {
    width: 24px;
  }
}
/* === End mobile tour tabs emphasis patch === */

/* === Hero unique subtitle patch === */
.hero-subtitle {
  max-width: min(760px, 92vw);
  margin: clamp(.65rem, 1.5vw, 1rem) 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-shadow: 0 12px 28px rgba(4, 18, 38, .58);
  animation: heroSubtitleSoftIn 1.35s ease both .28s;
}

.contact-hero-content .hero-subtitle,
.about-hero-content .hero-subtitle,
.store-hero-content .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroSubtitleSoftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 640px) {
  .hero-subtitle {
    max-width: min(320px, 88vw);
    margin-top: .55rem;
    font-size: .9rem;
    line-height: 1.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-subtitle {
    animation: none;
  }
}
/* === End hero unique subtitle patch === */