[x-cloak] {
  display: none !important;
}

@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/2a37af55a999bc0f86aa20597c1fb573.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/2a37af55a999bc0f86aa20597c1fb573.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/b2993d987b5c093b8e2f484b40d7cf58.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/b2993d987b5c093b8e2f484b40d7cf58.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Marine";
  src: url("https://db.onlinewebfonts.com/t/43b27bb39d30a1c5e6a45769a5f9f692.woff2") format("woff2"), url("https://db.onlinewebfonts.com/t/43b27bb39d30a1c5e6a45769a5f9f692.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --navy: #1b2e4a;
  --navy-dark: #12233d;
  --gold: #e8b731;
  --gold-dark: #d4a320;
  --cream: #fef9e7;
  --bg-light: #edf1f5;
  --bg-white: #ffffff;
  --text-dark: #1b2e4a;
  --text-body: #3a4a5e;
  --text-muted: #7a8a9e;
  --green: #a8d86e;
  --font-main: "Marine", "DM Sans", -apple-system, sans-serif;
  --font-body: "DM Sans", -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --tr: .3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.2;
}

.vc[data-vc-input] {
  z-index: 999;
}

#mainNav {
  padding: 1rem 0;
  transition: all var(--tr);
  z-index: 1050;
}
#mainNav .container {
  max-width: 96%;
}
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 50px;
  width: auto;
  transition: all var(--tr);
}

#mainNav.scrolled .brand-logo {
  height: 42px;
}

.navbar-nav .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.9rem;
  transition: color var(--tr);
}
.navbar-nav .nav-link:hover {
  color: var(--gold);
}

#mainNav.scrolled .nav-link {
  color: var(--text-body);
}

#mainNav.scrolled .nav-link:hover {
  color: var(--gold-dark);
}

.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(27,46,74,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-community-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 50px;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  text-decoration: none;
  transition: all var(--tr);
}

.btn-community-white {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--navy);
}
.btn-community-white:hover {
  background: #f5f5f5;
  color: var(--navy);
}

#mainNav.scrolled .btn-community-white {
  background: var(--bg-light);
  border-color: #dde3ea;
}

.community-avatars-nav {
  display: flex;
}

.c-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -8px;
}
.c-av:first-child {
  margin-left: 0;
}

.community-nav-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.community-nav-text small {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.community-nav-text strong {
  font-size: 0.75rem;
  color: var(--navy);
}

.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-section .carousel-item {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 46, 74, 0.4) 0%, rgba(27, 46, 74, 0.25) 35%, rgba(27, 46, 74, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 400;
  color: #fff;
  margin: 0 0 0.3rem;
  letter-spacing: -1px;
}

.hero-accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0;
}
.hero-subtitle strong {
  font-weight: 700;
  font-style: italic;
}
.hero-subtitle:empty {
  display: none;
}

.hero-wave-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  z-index: 2;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
}

.hero-wave--back {
  height: 100%;
}

.hero-wave--mid {
  height: 85%;
}

.hero-wave--front {
  height: 70%;
}

.hero-search-area {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  width: 92%;
  max-width: 720px;
}

.hero-search-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.search-type-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.search-type-tabs .tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
}
.search-type-tabs .tab-btn.active {
  background: #fff;
  color: var(--navy);
}

.search-bar-wrapper {
  position: relative;
}

.hero-search-bar {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 0.35rem 0.35rem 0.35rem 0.4rem;
  align-items: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 10;
}

.search-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  border-radius: 40px;
  transition: background var(--tr);
  position: relative;
}
.search-field:hover {
  background: var(--bg-light);
}
.search-field.active {
  background: var(--bg-light);
}
.search-field--dove {
  flex: 1.5;
}
.search-field--quando {
  flex: 1;
}
.search-field--ospiti {
  flex: 1;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: #dde3ea;
  flex-shrink: 0;
}

.search-field-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}

.search-field-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.search-field-inline-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
  width: 100%;
  padding: 0;
}
.search-field-inline-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-poi-select {
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  max-width: 120px;
}

.btn-search {
  background: var(--gold);
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  transition: all var(--tr);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.btn-search:hover {
  background: var(--gold-dark);
  color: #fff;
}
.btn-search i {
  font-size: 0.9rem;
}
.btn-search:disabled {
  opacity: 0.7;
}

.search-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  max-width: 95vw;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.22);
  padding: 1.8rem;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.search-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.search-dropdown-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.2rem;
  text-align: center;
}

.search-continents {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.continent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem 0.8rem;
  border: 1.5px solid #e8ecf0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--tr);
  gap: 0.3rem;
}
.continent-card:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-2px);
}
.continent-card.selected {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(232, 183, 49, 0.2);
}

.continent-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.continent-card strong {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.continent-card small {
  font-size: 0.62rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.search-popular-section {
  padding-top: 1.2rem;
  border-top: 1px solid #eef1f5;
}

.search-popular-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.popular-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid #e8ecf0;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--tr);
}
.popular-pill:hover {
  border-color: var(--gold);
  background: var(--cream);
  color: var(--text-dark);
}
.popular-pill.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}
.popular-pill img.popular-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.search-field--quando {
  position: relative;
}

.when-cal-anchor {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  border: none;
  padding: 0;
}

.occupancy-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.occupancy-room {
  /* padding-bottom: .75rem;
  margin-bottom: .75rem; */
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}
.occupancy-room:last-of-type {
  border-bottom: none;
}

.occ-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.occ-count {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}

.formula-section {
  padding-top: 0;
  margin-top: -2px;
}

.formula-banner-wrap {
  position: relative;
  width: 100%;
  height: 100px;
}

.formula-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 130%;
}

.formula-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.formula-title {
  font-size: clamp(1.4rem, 3.5vw, 3.4rem);
  color: #fff;
  margin: 0;
  text-align: center;
}

.formula-desc {
  text-align: center;
  max-width: 900px;
  margin: 2.5rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.5;
}

.section-block {
  padding: 80px 0;
}

.section-block .container {
  max-width: 96%;
}

.section-bg-light {
  background: var(--bg-light);
}

.section-bg-cream {
  background: var(--cream);
}

.bg-white {
  background: #fff;
}

.section-title-center {
  font-family: var(--font-main);
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  margin-bottom: 0.5rem;
}

.section-subtitle-center {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.cards-scroll-wrapper {
  overflow-x: auto;
  margin: 0;
  padding: 0 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.cards-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}
.cards-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.cards-scroll {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.trip-card {
  width: 500px;
  min-width: 500px;
  height: 850px;
  border-radius: 20px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--tr), box-shadow var(--tr);
  flex-shrink: 0;
  position: relative;
  display: block;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.trip-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.trip-card-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90%;
  background: linear-gradient(0deg, rgba(29, 34, 21, 0.85) 55%, rgba(29, 34, 21, 0.55) 80%, transparent 100%);
  z-index: 1;
}

.trip-card-top {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 1.8rem 1.6rem 0;
  text-align: center;
}
.trip-card-top h4 {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  line-height: 1.1;
}
.trip-card-top p {
  font-family: var(--font-main);
  font-size: 27px;
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

.trip-card-photo {
  display: none;
}

.trip-card-body {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
}

.trip-card-body .trip-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.trip-card-body .trip-detail i {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 2px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.trip-card-body .trip-detail small {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 2px;
}
.trip-card-body .trip-detail strong {
  display: inline;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
}

.detail-date-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.text-muted-sm {
  font-size: 0.8rem;
  color: var(--gold);
  cursor: pointer;
}

.trip-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.trip-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  text-align: center;
}
.trip-tag small {
  font-weight: 400;
  color: var(--gold);
  font-size: 0.72rem;
  font-style: italic;
}

.trip-community-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  margin-top: 3.2rem;
}
.trip-community-row span {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.3;
}

.trip-community-avatars {
  display: flex;
  flex-shrink: 0;
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  margin-left: -8px;
  flex-shrink: 0;
}
.tc-av:first-child {
  margin-left: 0;
}

.trip-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.5rem;
  padding-top: 0.3rem;
}

.trip-price-badge {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 0.5rem 1.6rem;
  border-radius: 50px;
}
.trip-price-badge--green {
  background: var(--green);
  color: var(--navy);
}

.trip-badge-ponte {
  position: relative;
  z-index: 1;
  align-self: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.trip-badge-confirmed {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: var(--green);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

.trip-card--compact {
  height: auto;
}
.trip-card--compact .trip-card-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
}
.trip-card--compact .trip-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 65%);
}
.trip-card--compact .trip-card-header {
  position: relative;
  z-index: 1;
}
.trip-card--compact .trip-card-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
  line-height: 1.1;
}
.trip-card--compact .trip-card-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.trip-card--compact .trip-card-body {
  position: static;
  background: #fff;
  padding: 1.2rem 1.4rem;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.trip-card--compact .trip-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.75rem;
}
.trip-card--compact .trip-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-dark);
}
.trip-card--compact .trip-detail i {
  color: var(--navy);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.trip-card--compact .trip-detail small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1px;
}
.trip-card--compact .trip-detail strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 700;
}
.trip-card--compact .trip-price-row {
  color: var(--text-dark);
  border-top: 1px solid #eef1f5;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  font-size: 0.88rem;
}

.features-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}

.feature-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
  max-width: 480px;
}

.feature-img-wrap {
  width: 210px;
  min-width: 210px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  clip-path: url(#feature-img-wave);
  -webkit-clip-path: url(#feature-img-wave);
}
.feature-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-text h4 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 800;
  font-style: italic;
}
.feature-card-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.features-icon-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}

.feature-icon-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  max-width: 480px;
}
.feature-icon-card h5 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-weight: 800;
  font-style: italic;
}
.feature-icon-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

.feature-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 2rem;
  font-size: 1.65rem;
  color: var(--text-dark);
  flex-shrink: 0;
}

.mood-section {
  position: relative;
  padding-top: 5rem;
}

.mood-wave-top {
  position: absolute;
  top: -79px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.mood-wave-top svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mood-tabs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.mood-tab {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  border-radius: 50px;
  padding: 0.45rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-main);
}
.mood-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mood-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.mood-card {
  width: 550px;
  min-width: 550px;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: inherit;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform var(--tr);
  display: block;
}
.mood-card:hover {
  transform: scale(1.02);
}

.mood-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 46, 74, 0.88) 0%, rgba(27, 46, 74, 0.4) 45%, transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #fff;
}

.mood-card-tag {
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 0.25rem 1rem;
  align-self: flex-start;
  margin-bottom: 0.7rem;
  font-style: italic;
}

.mood-card-overlay h4 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.3rem;
  font-style: italic;
}

.mood-card-overlay p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0 0 0.7rem;
}

.mood-card-meta {
  display: flex;
  gap: 1.1rem;
  font-size: 0.98rem;
  opacity: 0.75;
  margin-bottom: 0.35rem;
}
.mood-card-meta i {
  font-size: 0.9rem;
}

.mood-card-price {
  font-size: 1.1rem;
  margin-top: 0.6rem;
  opacity: 0.85;
}

.price-pill {
  background: var(--gold);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 1.2rem;
  margin-left: 0.3rem;
}

.dest-scroll {
  gap: 1.5rem;
}

.dest-card {
  width: 575px;
  min-width: 575px;
  height: 690px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  color: inherit;
  text-decoration: none;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--tr);
  flex-shrink: 0;
}
.dest-card:hover {
  transform: scale(1.02);
}
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 46, 74, 0.15);
}
.dest-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  letter-spacing: 3px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.dest-swiper {
  position: relative;
  padding-bottom: 3rem;
}
.dest-swiper .swiper-slide {
  height: 690px;
}
.dest-swiper .dest-card {
  width: 100%;
  min-width: 0;
  height: 100%;
}
.dest-swiper .swiper-button-prev,
.dest-swiper .swiper-button-next {
  color: var(--navy);
}
.dest-swiper .swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}
.dest-swiper .swiper-pagination-bullet-active {
  background: var(--navy);
}

.trip-swiper,
.mood-swiper,
.pont-swiper,
.best-seller-swiper {
  position: relative;
  padding-bottom: 3rem;
}
.trip-swiper .swiper-slide,
.mood-swiper .swiper-slide,
.pont-swiper .swiper-slide,
.best-seller-swiper .swiper-slide {
  height: auto;
  width: auto;
}
.trip-swiper .swiper-button-prev,
.trip-swiper .swiper-button-next,
.mood-swiper .swiper-button-prev,
.mood-swiper .swiper-button-next,
.pont-swiper .swiper-button-prev,
.pont-swiper .swiper-button-next,
.best-seller-swiper .swiper-button-prev,
.best-seller-swiper .swiper-button-next {
  color: var(--navy);
}
.trip-swiper .swiper-pagination,
.mood-swiper .swiper-pagination,
.pont-swiper .swiper-pagination,
.best-seller-swiper .swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}
.trip-swiper .swiper-pagination-bullet-active,
.mood-swiper .swiper-pagination-bullet-active,
.pont-swiper .swiper-pagination-bullet-active,
.best-seller-swiper .swiper-pagination-bullet-active {
  background: var(--navy);
}

@media (max-width: 767px) {
  .trip-swiper .trip-card,
  .mood-swiper .mood-card,
  .pont-swiper .mood-card,
  .best-seller-swiper .mood-card {
    width: 100%;
    min-width: 0;
  }
}
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80") center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 46, 74, 0.8);
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-cta-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 2.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  border: none;
  transition: all var(--tr);
}
.btn-cta-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-3px);
}

.community-member {
  text-align: center;
}

.community-avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--bg-light);
}
.community-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-member h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.community-age {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.community-spec {
  display: inline-block;
  font-size: 0.75rem;
  border: 1px solid #cdd5de;
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
  color: var(--text-body);
}

.btn-dark-rounded {
  background: var(--navy);
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 2rem;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  transition: all var(--tr);
}
.btn-dark-rounded:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm-round {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

.community-cta-bar {
  background: var(--bg-light);
  padding: 1.5rem 0;
}
.community-cta-bar h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--navy);
}

.community-cta-avatars {
  display: flex;
}
.community-cta-avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -10px;
}
.community-cta-avatars img:first-child {
  margin-left: 0;
}

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 70px 0 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--tr);
}

.footer-brand:hover .footer-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--tr);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--tr);
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.footer-copy {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}
.footer-credits a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--tr);
}
.footer-credits a:hover {
  color: var(--gold-dark);
}

@media (max-width: 991.98px) {
  #mainNav {
    background: rgba(27, 46, 74, 0.95);
    backdrop-filter: blur(10px);
  }
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 0;
  }
  #mainNav.scrolled .navbar-nav .nav-link {
    color: var(--text-body);
  }
  .btn-community-white {
    margin-top: 0.5rem;
    width: fit-content;
  }
  .features-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-card-horizontal {
    max-width: 100%;
  }
  .features-icon-row {
    flex-direction: column;
    align-items: center;
  }
  .feature-icon-card {
    max-width: 100%;
  }
  .hero-wave-wrapper {
    height: 15%;
  }
}
@media (max-width: 767px) {
  .hero-search-bar {
    flex-wrap: wrap;
    border-radius: var(--radius);
    padding: 0.6rem;
  }
  .search-field--dove {
    flex: 1 1 100%;
  }
  .search-divider {
    display: none;
  }
  .search-field--quando {
    flex: 1;
  }
  .btn-search {
    width: 100%;
    margin-top: 0.4rem;
    justify-content: center;
    border-radius: var(--radius-sm);
  }
}
@media (max-width: 575.98px) {
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .hero-search-area {
    bottom: 12%;
    width: 92%;
  }
  .hero-wave-wrapper {
    height: 12%;
  }
  .search-dropdown {
    padding: 1rem;
    width: 95vw;
  }
  .search-continents {
    grid-template-columns: repeat(3, 1fr);
  }
  .trip-card {
    width: 420px;
    min-width: 420px;
  }
  .mood-card {
    width: 420px;
    min-width: 420px;
    height: 240px;
  }
  .dest-card {
    width: 380px;
    min-width: 380px;
    height: 460px;
  }
  .dest-swiper .swiper-slide {
    height: 460px;
  }
  .footer-bottom .row > div {
    text-align: center !important;
  }
  .section-block {
    padding: 50px 0;
  }
  .feature-img-wrap {
    width: 140px;
    min-width: 140px;
    height: 140px;
  }
}
.auth-modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  position: relative;
}

.auth-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  opacity: 0.5;
  transition: opacity var(--tr);
}
.auth-close:hover {
  opacity: 1;
}

.auth-tabs {
  border: none;
  display: flex;
  gap: 0;
  padding: 0;
  background: var(--bg-light);
}

.auth-tab {
  flex: 1;
  text-align: center;
  border: none !important;
  border-radius: 0 !important;
  padding: 1.1rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--tr);
  position: relative;
}
.auth-tab.active {
  color: var(--navy);
  background: #fff;
}
.auth-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
}

.auth-tab-content {
  background: #fff;
}

.auth-panel {
  padding: 2rem 2.5rem 2.5rem;
}

.auth-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-header h3 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.auth-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-row {
  display: flex;
  gap: 1rem;
}
.auth-row .auth-field {
  flex: 1;
}

.auth-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid #e0e5ec;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  transition: all var(--tr);
  background: #fff;
}
.auth-input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 46, 74, 0.08);
}
.auth-input-wrap i {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
}
.auth-input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: transparent;
}
.auth-input-wrap input::placeholder {
  color: #b5bec8;
}

.auth-eye {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: color var(--tr);
}
.auth-eye:hover {
  color: var(--navy);
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -0.2rem;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-body);
  cursor: pointer;
}
.auth-remember input {
  width: 15px;
  height: 15px;
  accent-color: var(--navy);
  cursor: pointer;
}

.auth-forgot {
  font-size: 0.8rem;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--tr);
}
.auth-forgot:hover {
  color: var(--navy);
}

.auth-btn-primary {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 0.5rem;
}
.auth-btn-primary:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 183, 49, 0.3);
}
.auth-btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1.4;
}
.auth-terms input {
  width: 15px;
  height: 15px;
  accent-color: var(--navy);
  cursor: pointer;
  margin-top: 1px;
  flex-shrink: 0;
}
.auth-terms a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}
.auth-terms a:hover {
  color: var(--navy);
}

.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.auth-switch a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--tr);
}
.auth-switch a:hover {
  color: var(--gold-dark);
}

@media (max-width: 575.98px) {
  .auth-panel {
    padding: 1.5rem 1.2rem 2rem;
  }
  .auth-row {
    flex-direction: column;
    gap: 1rem;
  }
  .auth-modal-content {
    border-radius: 16px;
  }
}
#results-grid {
  transition: opacity 0.25s ease;
}

[data-results-filter]:checked ~ label,
[data-results-filter]:checked + label {
  color: #007BFF;
  font-weight: 600;
}

#sort-select {
  font-size: 0.85rem;
  border-color: #dee2e6;
  color: #0d2d4e;
}
#sort-select:focus {
  border-color: #007BFF;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}

#load-more-wrap {
  padding-top: 2rem;
}

.custom-switch {
  display: inline-flex;
  align-items: center;
  width: 48px;
  height: 26px;
  background: #dee2e6;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.custom-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.custom-switch.active {
  background: #007BFF;
}
.custom-switch.active span {
  left: 25px;
}

.pick-item {
  display: flex;
  background: #fff;
  border: 1px solid #e5e9ef;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.pick-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.pick-item .item-gallery-col {
  width: 220px;
  flex-shrink: 0;
}
.pick-item .item-gallery {
  position: relative;
  height: 100%;
  min-height: 180px;
}
.pick-item .item-gallery .main-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  min-height: 180px;
}
.pick-item .item-gallery .prev-btn, .pick-item .item-gallery .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  font-size: 0.75rem;
  transition: background 0.15s;
}
.pick-item .item-gallery .prev-btn:hover, .pick-item .item-gallery .next-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}
.pick-item .item-gallery .prev-btn {
  left: 6px;
}
.pick-item .item-gallery .next-btn {
  right: 6px;
}
.pick-item .item-info {
  flex: 1;
  padding: 1.25rem;
  min-width: 0;
}
.pick-item .item-info .item-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0d2d4e;
  margin-bottom: 0.2rem;
}
.pick-item .item-info .item-subtitle {
  font-size: 0.82rem;
  color: #6C757D;
  margin-bottom: 0.6rem;
}
.pick-item .item-info .item-description {
  font-size: 0.85rem;
  color: #6C757D;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pick-item .price-infos {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid #f0f0f0;
  min-width: 90px;
}
.pick-item .price-infos .item-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0d2d4e;
  white-space: nowrap;
  text-align: center;
}
.pick-item .item-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-left: 1px solid #f0f0f0;
}
.pick-item .item-actions .action-label {
  font-size: 0.72rem;
  color: #6C757D;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .pick-item {
    flex-direction: column;
  }
  .pick-item .item-gallery-col {
    width: 100%;
    height: 200px;
  }
  .pick-item .item-gallery-col .item-gallery, .pick-item .item-gallery-col .main-image {
    min-height: 200px;
  }
  .pick-item .price-infos, .pick-item .item-actions {
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding: 0.75rem 1.25rem;
  }
  .pick-item .price-infos {
    justify-content: flex-start;
  }
  .pick-item .item-actions {
    flex-direction: row;
    justify-content: flex-start;
  }
}

.extra-pick-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border: 1px solid #e5e9ef;
  border-radius: 0.5rem;
  margin-bottom: 0.45rem;
  background: #fff;
  font-size: 0.9rem;
}
.extra-pick-item .item-name {
  color: #212529;
  flex-shrink: 0;
}
.extra-pick-item .extra-spacer {
  flex: 1;
}
.extra-pick-item .price-infos .item-price {
  font-weight: 700;
  color: #0d2d4e;
  white-space: nowrap;
  font-size: 0.95rem;
}
.extra-pick-item .extra-item-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.extra-pick-item .extra-item-actions .action-label {
  font-size: 0.72rem;
  color: #6C757D;
}
.extra-pick-item.confirm-pick-item {
  background: #f0f6ff;
  border-color: #c7deff;
}

.on-site-badge {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.12);
  color: #19692c;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.picker-cnt .static-items {
  display: flex;
  flex-direction: column;
}
.picker-cnt .travio-results .pick-group-cnt.not-first {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e9ef;
}
.picker-cnt .travio-results .pick-group-cnt > h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6C757D;
  margin-bottom: 1rem;
}

.travio-history-cnt {
  margin-bottom: 1.5rem;
}
.travio-history-cnt .history-service .history-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6C757D;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #007BFF;
}
.travio-history-cnt .history-service .history-item .pick-item {
  opacity: 0.95;
}
.travio-history-cnt .history-service .history-item .pick-item .item-actions .custom-switch {
  background: #28A745;
  pointer-events: none;
}
.travio-history-cnt .history-service .history-item .pick-item .item-actions .custom-switch span {
  left: 25px;
}

.cart-recap .cart-loader {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.cart-recap .cart-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0d2d4e;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e9ef;
}
.cart-recap .cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-recap .cart-item:last-child {
  border-bottom: none;
}
.cart-recap .cart-item > i.fa-circle-check {
  color: #28A745;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.cart-recap .cart-item .item-info {
  flex: 1;
  min-width: 0;
}
.cart-recap .cart-item .title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #0d2d4e;
}
.cart-recap .cart-item .item-dates {
  font-size: 0.78rem;
  margin-top: 0.2rem;
}
.cart-recap .cart-item .hotel-info {
  margin-top: 0.3rem;
}
.cart-recap .cart-item .hotel-info .rating i {
  color: #f6c90e;
  font-size: 0.72rem;
}
.cart-recap .cart-item .hotel-info .geo {
  font-size: 0.78rem;
  color: #6C757D;
}
.cart-recap .cart-item .item-detail {
  margin-top: 0.45rem;
  padding-left: 0.6rem;
  border-left: 2px solid var(--gold);
}
.cart-recap .cart-item .item-detail .title {
  font-size: 0.83rem;
}
.cart-recap .cart-item .item-detail .subtitle {
  font-size: 0.78rem;
  color: #6C757D;
  margin-top: 0.1rem;
}
.cart-recap .cart-item .item-detail .subtitle small {
  margin-left: 0.3rem;
  color: #28A745;
}
.cart-recap .cart-infos {
  padding-top: 0.5rem;
}
.cart-recap .cart-infos .cart-total {
  padding: 0.75rem 0;
}
.cart-recap .cart-infos .cart-total .label {
  display: block;
  font-size: 0.78rem;
  color: #6C757D;
  margin-bottom: 0.2rem;
}
.cart-recap .cart-infos .cart-total .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d2d4e;
  display: block;
}
.cart-recap .cart-infos .cart-total .on-site-prices .price {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6C757D;
}
.cart-recap .cart-actions {
  display: flex;
  gap: 0.5rem;
}
.cart-recap .cart-actions .btn {
  flex: 1;
  font-size: 0.83rem;
}

.search-summary .search-summary-text {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.result-card-list__img-col {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .result-card-list__img-col {
    width: 100%;
  }
}
.result-card-list__img-wrap {
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
  overflow: hidden;
}
@media (max-width: 575px) {
  .result-card-list__img-wrap {
    height: 180px;
  }
}
.result-card-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-card-list__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: #e9ecef;
}
.result-card-list__summary {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-search-bar {
  position: sticky;
  top: 62px;
  z-index: 1040;
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  padding: 0.8rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.listing-search-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.listing-search-inner {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e5ec;
  border-radius: 60px;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}
.listing-search-inner form {
  width: 100%;
}
.listing-search-inner form .hero-search-bar {
  box-shadow: none;
}

.listing-main {
  padding: 2.5rem 0 5rem;
}

.listing-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.listing-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.listing-sidebar {
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 150px;
  max-height: calc(100vh - 170px);
  overflow-y: auto;
}

.listing-results-title {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.filter-group {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e5ec;
}
.filter-group:last-child {
  border-bottom: none;
}

.filter-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  cursor: pointer;
  padding: 0.3rem 0;
  margin-bottom: 0;
  transition: color var(--tr);
}
.filter-check:hover {
  color: var(--text-dark);
}
.filter-check input[type=checkbox] {
  width: 17px;
  height: 17px;
  border: 1.5px solid #c5cdd6;
  border-radius: 3px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--tr);
  background: #fff;
}
.filter-check input[type=checkbox]:checked {
  background: var(--navy);
  border-color: var(--navy);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-left: 0.2rem;
}

.listing-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.listing-grid .trip-card {
  width: 100%;
  min-width: unset;
  height: 850px;
}

@media (max-width: 1200px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .listing-layout {
    flex-direction: column;
  }
  .listing-sidebar {
    width: 100%;
    min-width: unset;
    position: static;
    max-height: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .listing-results-title {
    width: 100%;
  }
  .filter-group {
    flex: 1;
    min-width: 180px;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .listing-grid {
    grid-template-columns: 1fr;
  }
  .listing-grid .trip-card {
    height: 800px;
  }
}
@media (max-width: 767.98px) {
  .listing-container {
    padding: 0 1rem;
  }
  .listing-search-container {
    padding: 0 1rem;
  }
  .listing-search-inner {
    flex-wrap: wrap;
    border-radius: var(--radius);
    padding: 0.6rem;
  }
  .listing-search-divider {
    display: none;
  }
  .listing-search-field {
    flex: 1 1 45%;
  }
  .listing-search-btn {
    width: 100%;
    margin-top: 0.4rem;
    border-radius: var(--radius-sm);
  }
}
.detail-hero {
  height: 55vh;
  min-height: 450px;
  position: relative;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}
.detail-hero > .container {
  position: relative;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 46, 74, 0.75) 0%, rgba(27, 46, 74, 0.3) 50%, rgba(27, 46, 74, 0.15) 100%);
  z-index: 1;
}

.detail-hero-content {
  color: #fff;
}
.detail-hero-content h1 {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.detail-hero-sub {
  font-size: clamp(1rem, 2vw, 1.4rem);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-meta-item i {
  font-size: 1.1rem;
  opacity: 0.7;
}
.detail-meta-item small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.65;
}
.detail-meta-item strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.detail-meta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
}

.detail-price-hero {
  font-size: 0.95rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-price-pill {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
}

.detail-main {
  padding: 0 0 4rem;
  position: relative;
  z-index: 5;
}

.detail-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.detail-content {
  flex: 1;
  min-width: 0;
  padding-top: 2.5rem;
}

.detail-sidebar {
  width: 380px;
  min-width: 380px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: -220px;
  z-index: 10;
}

.detail-activity-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0 1.8rem;
  border-bottom: 1px solid #e8ecf0;
  margin-bottom: 2rem;
}

.detail-activity-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.detail-activity-tag i {
  font-size: 1.1rem;
  color: var(--navy);
}
.detail-activity-tag strong {
  color: var(--text-dark);
}

.detail-activity-sep {
  color: #d0d5dc;
  font-weight: 300;
}

.detail-section {
  margin-bottom: 1rem;
}

.detail-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.2rem 0;
  border-bottom: 1px solid #e8ecf0;
  transition: all var(--tr);
}
.detail-section-header:hover {
  color: var(--gold-dark);
}
.detail-section-header h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.detail-section-header i {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.detail-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0;
}
.detail-section-body.open {
  max-height: 5000px;
  padding: 1.5rem 0;
}
.detail-section-body p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.detail-expand {
  color: var(--navy);
  font-weight: 700;
  font-style: italic;
  font-size: 0.88rem;
  text-decoration: none;
}
.detail-expand:hover {
  color: var(--gold-dark);
}

.detail-gallery {
  margin-bottom: 1rem;
}

.detail-gallery-scroll {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scrollbar-width: none;
}
.detail-gallery-scroll::-webkit-scrollbar {
  display: none;
}

.detail-gallery-img {
  width: 180px;
  min-width: 180px;
  height: 130px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--tr);
}
.detail-gallery-img:hover {
  transform: scale(1.05);
}

.detail-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5dc;
}
.dot.active {
  background: var(--navy);
}

.day-card {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.day-card--last {
  padding-bottom: 0;
}

.day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.day-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #d4a320 100%);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(232, 183, 49, 0.35);
  position: relative;
  z-index: 2;
}
.day-number--last {
  background: linear-gradient(135deg, var(--navy) 0%, #12233d 100%);
  box-shadow: 0 4px 15px rgba(27, 46, 74, 0.3);
}

.day-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--gold) 0%, #e0e5ec 100%);
  margin-top: 0.4rem;
  border-radius: 2px;
}

.day-content {
  flex: 1;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all var(--tr);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.day-content:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(232, 183, 49, 0.1);
  transform: translateY(-2px);
}
.day-content p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.day-header h4 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.day-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(232, 183, 49, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.day-highlights {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.day-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--bg-light);
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}
.day-highlight i {
  font-size: 0.7rem;
}

.incluso-title {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.incluso-title--yes {
  color: #2d8a4e;
}
.incluso-title--no {
  color: #c0392b;
  margin-top: 1.5rem;
}

.incluso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.incluso-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
}
.incluso-item--yes i {
  color: #2d8a4e;
}
.incluso-item--no i {
  color: #c0392b;
  opacity: 0.6;
}

.faq-item {
  border-bottom: 1px solid #e8ecf0;
  cursor: pointer;
  transition: all var(--tr);
}
.faq-item:hover {
  background: rgba(0, 0, 0, 0.01);
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1rem;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}
.faq-q i {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.sidebar-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.sidebar-card h4 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.sidebar-field {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f2f5;
}
.sidebar-field small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}
.sidebar-field strong {
  font-size: 0.92rem;
  color: var(--text-dark);
}

.sidebar-btn-primary {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 1.2rem;
  letter-spacing: 0.5px;
}
.sidebar-btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 183, 49, 0.3);
}

.sidebar-btn-accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: rgba(232, 183, 49, 0.06);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 0.6rem;
  gap: 0.15rem;
}
.sidebar-btn-accent small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
}
.sidebar-btn-accent:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.sidebar-btn-accent:hover small {
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-faq-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--tr);
}
.sidebar-faq-link:hover {
  color: var(--gold-dark);
}

.sidebar-card--why {
  border: none;
  background: var(--bg-light);
  box-shadow: none;
}

.sidebar-why-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.sidebar-why-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}
.sidebar-why-item:last-child {
  margin-bottom: 0;
}
.sidebar-why-item h5 {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}
.sidebar-why-item p {
  font-size: 0.78rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

.sidebar-why-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-search-bar--sidebar {
  flex-direction: column;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.hero-search-bar--sidebar .search-divider {
  display: none;
}
.hero-search-bar--sidebar .search-field {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f2f5;
  border-radius: 0;
  gap: 0.15rem;
}
.hero-search-bar--sidebar .search-field:hover {
  background: transparent;
}
.hero-search-bar--sidebar .search-field--quando {
  flex: none;
}
.hero-search-bar--sidebar .search-field--ospiti {
  flex: none;
}
.hero-search-bar--sidebar .search-field-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1;
}
.hero-search-bar--sidebar .search-field-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 100%;
  white-space: normal;
}
.hero-search-bar--sidebar .btn-search {
  width: 100%;
  margin-top: 1.2rem;
  border-radius: 12px;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: 0.5px;
}
.hero-search-bar--sidebar .btn-search:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 183, 49, 0.3);
}

@media (max-width: 991.98px) {
  .detail-layout {
    flex-direction: column;
  }
  .detail-sidebar {
    width: 100%;
    min-width: unset;
    position: static;
    margin-top: 0;
  }
  .incluso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .detail-hero {
    height: 45vh;
    min-height: 350px;
  }
  .detail-hero-meta {
    gap: 0.8rem;
  }
  .detail-meta-divider {
    display: none;
  }
  .day-card {
    gap: 1rem;
  }
  .day-number {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .incluso-grid {
    grid-template-columns: 1fr;
  }
}
.cart-progress {
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
  padding: 1.2rem 0;
}

.cart-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.cart-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d0d5dc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #d0d5dc;
  transition: all var(--tr);
}

.cart-step span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--tr);
}

.cart-step.active .cart-step-num {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.cart-step.active span {
  color: var(--text-dark);
}

.cart-step-line {
  width: 60px;
  height: 2px;
  background: #d0d5dc;
  margin: 0 0.8rem;
  transition: background var(--tr);
}

.cart-step-line.active {
  background: var(--navy);
}

.cart-main {
  padding: 2.5rem 0 4rem;
}

.cart-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.cart-form-area {
  flex: 1;
  min-width: 0;
}

.cart-section {
  margin-bottom: 2.5rem;
}

.cart-section-title {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-section-title i {
  color: var(--gold);
  font-size: 1.4rem;
}

.cart-trip-summary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 1.2rem;
  position: relative;
}

.cart-trip-img {
  width: 140px;
  min-width: 140px;
  height: 100px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.cart-trip-info h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.cart-trip-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}

.cart-trip-details {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cart-trip-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-body);
}
.cart-trip-details i {
  color: var(--navy);
  font-size: 0.85rem;
}

.cart-traveler {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.cart-traveler-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.cart-traveler-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-traveler-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.cart-traveler-header h4 small {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.cart-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cart-field--full {
  grid-column: 1/-1;
}

.cart-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.cart-field input, .cart-field textarea {
  width: 100%;
  border: 1.5px solid #e0e5ec;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fff;
  transition: all var(--tr);
  outline: none;
}
.cart-field input:focus, .cart-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 46, 74, 0.08);
}
.cart-field textarea {
  resize: vertical;
  min-height: 70px;
}

.cart-input-icon {
  position: relative;
}
.cart-input-icon i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.cart-input-icon input {
  padding-left: 2.5rem;
}

.cart-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.cart-payment-option {
  cursor: pointer;
}
.cart-payment-option input {
  display: none;
}

.cart-payment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 2px solid #e0e5ec;
  border-radius: 14px;
  transition: all var(--tr);
  background: #fff;
}

.cart-payment-option.selected .cart-payment-card {
  border-color: var(--navy);
  background: rgba(27, 46, 74, 0.02);
  box-shadow: 0 2px 12px rgba(27, 46, 74, 0.08);
}

.cart-payment-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
}

.cart-payment-option.selected .cart-payment-icon {
  background: var(--gold);
  color: #fff;
}

.cart-payment-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
  color: var(--text-dark);
}

.cart-payment-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.cart-payment-amount {
  margin-left: auto;
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.cart-subsection-title {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cart-payment-methods {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.cart-method {
  cursor: pointer;
  flex: 1;
}
.cart-method input {
  display: none;
}

.cart-method-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem;
  border: 2px solid #e0e5ec;
  border-radius: 12px;
  transition: all var(--tr);
  text-align: center;
}
.cart-method-inner i {
  font-size: 1.5rem;
  color: var(--text-muted);
}
.cart-method-inner span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
}

.cart-method.selected .cart-method-inner {
  border-color: var(--navy);
  background: rgba(27, 46, 74, 0.03);
}
.cart-method.selected .cart-method-inner i, .cart-method.selected .cart-method-inner span {
  color: var(--navy);
}

.cart-card-form {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cart-terms {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.cart-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
}
.cart-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.cart-check a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.cart-sidebar {
  width: 380px;
  min-width: 380px;
  position: sticky;
  top: 90px;
}

.cart-sidebar-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cart-sidebar-img {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.2rem;
}

.cart-sidebar-card h4 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cart-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
.cart-sidebar-row span {
  color: var(--text-muted);
}
.cart-sidebar-row strong {
  color: var(--text-dark);
}

.cart-sidebar-divider {
  height: 1px;
  background: #e8ecf0;
  margin: 0.4rem 0;
}

.cart-sidebar-total span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.cart-sidebar-total strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.cart-sidebar-due {
  background: rgba(232, 183, 49, 0.1);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-sidebar-due strong {
  color: var(--navy);
  font-size: 1rem;
}

.cart-btn-pay {
  display: block;
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  transition: all var(--tr);
}
.cart-btn-pay:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 183, 49, 0.3);
}

.cart-secure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.cart-secure i {
  color: #2d8a4e;
}

.cart-confirm-wrap {
  max-width: 560px;
  margin: 3rem auto 5rem;
  text-align: center;
}

.cart-confirm-icon {
  font-size: 4rem;
  color: #2d8a4e;
  margin-bottom: 1.2rem;
}

.cart-confirm-title {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.cart-confirm-sub {
  font-size: 1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.cart-confirm-ref {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--bg-light);
  border-radius: 14px;
  padding: 1rem 2rem;
  margin-bottom: 1.5rem;
}
.cart-confirm-ref span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-confirm-ref strong {
  font-family: var(--font-main);
  font-size: 1.4rem;
  color: var(--navy);
}

.cart-confirm-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cart-confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--tr);
}
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 10px;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--tr);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 991.98px) {
  .cart-layout {
    flex-direction: column;
  }
  .cart-sidebar {
    width: 100%;
    min-width: unset;
    position: static;
  }
}
@media (max-width: 575.98px) {
  .cart-form-grid {
    grid-template-columns: 1fr;
  }
  .cart-field--full {
    grid-column: 1;
  }
  .cart-payment-methods {
    flex-direction: column;
  }
  .cart-payment-card {
    flex-wrap: wrap;
  }
  .cart-payment-amount {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: right;
  }
  .cart-steps {
    gap: 0;
  }
  .cart-step span {
    font-size: 0.7rem;
  }
  .cart-step-line {
    width: 30px;
    margin: 0 0.4rem;
  }
}
.blog-page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.blog-page-hero .blog-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.blog-page-hero .blog-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.blog-page-hero .blog-hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 0;
}
.blog-page-hero .blog-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--tr), box-shadow var(--tr);
  background: #fff;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  color: inherit;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.blog-card-img-placeholder {
  background: var(--bg-light);
}

.blog-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: var(--font-main);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  transition: color var(--tr);
}
.blog-card-link:hover {
  color: var(--gold-dark);
}

.blog-detail-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-img-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.blog-detail-img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.blog-detail-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: block;
}

.blog-detail-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
}
.blog-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}
.blog-detail-body h2, .blog-detail-body h3, .blog-detail-body h4 {
  font-family: var(--font-main);
  color: var(--navy);
  margin-top: 2rem;
}
.blog-detail-body a {
  color: var(--gold);
  text-decoration: underline;
}

.blog-detail-back {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--tr);
}
.blog-detail-back:hover {
  color: var(--navy);
}