/* =========================================
   visitAgadirCity - Global Styles
   Font: Creato Display (custom)
   ========================================= */

/* ----- Fonts ----- */
@font-face {
  font-family: 'Creato Display';
  src: url('/fonts/CreatoDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Creato Display';
  src: url('/fonts/CreatoDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Creato Display';
  src: url('/fonts/CreatoDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Creato Display';
  src: url('/fonts/CreatoDisplay-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nechlas Logo';
  src: url('/fonts/brand/NechlasDemo.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Retro Vintage';
  src: url('/fonts/RetroVintage-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
  --color-primary: #7c4dff;
  --color-primary-dark: #5e35b1;
  --color-primary-light: #ede7f6;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-bg: #ffffff;
  --color-border: #e2e2e2;
  --color-surface: #f8f8f8;
  --checkout-warm: #fff7ed;
  --checkout-warm-border: #fed7aa;
  --checkout-warm-text: #9a3412;
  --checkout-green: #ecfdf5;
  --checkout-green-border: #a7f3d0;
  --checkout-green-text: #047857;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --header-height: 72px;
  --transition: 0.2s ease;
}

/* ----- Reset ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Creato Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----- Utilities ----- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  padding: 14px 28px;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.25);
}

.btn--light {
  background-color: #fff;
  color: var(--color-primary);
  padding: 14px 28px;
}

.btn--light:hover {
  background-color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  padding: 10px 18px;
}

.btn--outline:hover {
  border-color: var(--color-text);
  background-color: var(--color-surface);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
  display: flex;
}

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  padding: 10px 0;
}

.top-bar__text {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

@media (max-width: 639px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar__text {
    display: block;
    max-width: 100%;
    padding: 0 14px;
    font-size: 0.78rem;
    line-height: 1.25;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

/* =========================================
   Header
   ========================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 12px;
}

@media (min-width: 768px) {
  .header__inner {
    gap: 24px;
  }
}

/* ----- Logo ----- */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 0;
  max-width: 210px;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  flex: 0 0 70px;
  overflow: hidden;
}

.logo__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .logo {
    gap: 10px;
    max-width: 300px;
  }

  .logo__mark {
    width: 85px;
    height: 60px;
    flex-basis: 85px;
  }
}

.logo__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  line-height: 1;
}

.logo__name {
  display: block;
  font-family: 'Retro Vintage', 'Nechlas Logo', 'Creato Display', sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-text);
  line-height: 0.95;
  white-space: nowrap;
}

.logo__slug {
  display: block;
  margin-top: 3px;
  color: var(--color-text-muted);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .logo__name {
    font-size: 1.28rem;
  }

  .logo__slug {
    font-size: 0.58rem;
  }
}

@media (max-width: 390px) {
  .logo {
    gap: 7px;
    max-width: 220px;
  }

  .logo__mark {
    width: 60px;
    height: 43px;
    flex-basis: 60px;
  }

  .logo__name {
    font-size: 0.98rem;
  }

  .logo__slug {
    font-size: 0.48rem;
  }
}

/* ----- Desktop Navigation ----- */
.nav--desktop {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition);
}

.nav__link:hover {
  background-color: var(--color-surface);
}

.nav__chevron {
  transition: transform var(--transition);
}

.nav__item:hover .nav__chevron,
.nav__link[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav__item:hover .nav__dropdown,
.nav__link[aria-expanded="true"] ~ .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: background-color var(--transition);
}

.nav__dropdown-link:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* ----- Mega Menu ----- */
.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: 640px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 100;
  overflow: hidden;
}

.nav__item--mega:hover .mega-menu,
.nav__link--mega[aria-expanded="true"] ~ .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
}

.mega-menu__col {
  padding: 20px 16px 16px;
  border-right: 1px solid #f1f3f5;
}

.mega-menu__heading {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  padding: 0 10px;
  margin-bottom: 6px;
}

.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #1f2937;
  text-decoration: none;
  transition: background 0.12s ease;
}

.mega-menu__link:hover {
  background: #f9fafb;
  color: #1f2937;
}

.mega-menu__icon {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: #6b7280;
  flex-shrink: 0;
  transition: color 0.12s ease;
}

.mega-menu__link:hover .mega-menu__icon {
  color: var(--color-primary, #dc2626);
}

.mega-menu__link-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mega-menu__link-text strong {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
}

.mega-menu__link-text small {
  font-size: 0.7rem;
  color: #9ca3af;
  line-height: 1.2;
  font-weight: 400;
}

.mega-menu__promo {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu__promo-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f3f5;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mega-menu__promo-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mega-menu__promo-card img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.mega-menu__promo-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__promo-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary, #dc2626);
  margin-bottom: 2px;
}

.mega-menu__promo-title {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
}

.mega-menu__promo-price {
  font-size: 0.72rem;
  color: #6b7280;
  margin-top: 1px;
}

.mega-menu__promo-price strong {
  font-weight: 700;
  color: #111827;
}

.mega-menu__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-top: 1px solid #f1f3f5;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary, #dc2626);
  text-decoration: none;
  transition: background 0.12s ease;
}

.mega-menu__footer:hover {
  background: #fef2f2;
}

.mega-menu__footer i {
  font-size: 0.9rem;
  transition: transform 0.15s ease;
}

.mega-menu__footer:hover i {
  transform: translateX(2px);
}

/* ----- Header Actions ----- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Selectors (currency / language) */
.selector {
  position: relative;
}

.selector--desktop,
.btn--account-desktop {
  display: none;
}

.selector__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color var(--transition);
}

.selector__btn:hover {
  background-color: var(--color-surface);
}

.selector__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.selector__flag-img {
  display: block;
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.selector__value {
  min-width: 28px;
  text-align: left;
}

.selector__chevron {
  transition: transform var(--transition);
}

.selector__btn[aria-expanded="true"] .selector__chevron {
  transform: rotate(180deg);
}

.selector__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background-color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1100;
}

.selector__btn[aria-expanded="true"] + .selector__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.selector__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: inherit;
  font-family: inherit;
}

.selector__option .selector__flag-img {
  width: 22px;
  height: 15px;
}

.selector__option:hover,
.selector__option.is-active {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Account button */
.btn--account {
  display: none;
}

.btn--account i {
  font-size: 18px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-md);
  font-size: 22px;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  background-color: #fff;
  transition: background-color var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.menu-toggle:hover {
  background-color: var(--color-surface);
  border-color: var(--color-text-muted);
}

.mobile-wishlist-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font-size: 20px;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.mobile-wishlist-toggle:hover {
  border-color: rgba(124, 77, 255, 0.32);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.mobile-wishlist-toggle__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 13px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-wishlist-toggle__badge:empty {
  display: none;
}

/* ----- Mobile Menu ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.mobile-menu__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-text);
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  font-size: 22px;
  color: var(--color-text);
  transition: background-color var(--transition);
}

.mobile-menu__close:hover {
  background-color: var(--color-surface);
}

.mobile-menu__body {
  padding: 16px 24px 32px;
  flex: 1;
}

.mobile-menu__section {
  margin-bottom: 24px;
}

.mobile-menu__section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  padding-left: 12px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background-color var(--transition);
}

.mobile-nav__link:hover {
  background-color: var(--color-surface);
}

.mobile-nav__link i {
  font-size: 20px;
  color: var(--color-primary);
  width: 24px;
  text-align: center;
}

.mobile-nav__link--account i {
  color: var(--color-text);
}

.mobile-nav__group {
  padding-left: 36px;
}

.mobile-nav__link--sub {
  font-size: 0.86rem;
  min-height: 40px;
  padding: 6px 16px;
  gap: 8px;
}

.mobile-nav__link--sub i {
  color: #dc2626;
  width: 20px;
  font-size: 0.9rem;
}

.mobile-menu__selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-menu__chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-weight: 500;
  font-size: 0.8rem;
  transition: all var(--transition);
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-menu__chip[data-lang] {
  border: none;
  padding: 8px 10px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}

.mobile-menu__chip-flag {
  display: block;
  width: 20px;
  height: 14px;
  flex: 0 0 20px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
}

.mobile-menu__chip[data-lang].is-active,
.mobile-menu__chip[data-lang]:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.mobile-menu__chip.is-active,
.mobile-menu__chip:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
  position: relative;
  z-index: 100;
  background-color: var(--color-bg);
}

.hero__video {
  display: block;
  width: 100%;
  height: 192px;
  min-height: 0;
  object-fit: cover;
  object-position: center 34%;
  z-index: 0;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 192px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18) 0%, rgba(17, 24, 39, 0.04) 42%, rgba(17, 24, 39, 0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 192px;
  padding: 18px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__welcome {
  max-width: 520px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(12px);
  animation: heroWelcomeIn 0.85s ease forwards 0.18s;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 3px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__title {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__text {
  max-width: 34ch;
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.hero__search {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 14px 16px 20px;
  background-color: var(--color-bg);
}

.search-panel {
  width: min(540px, 100%);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

@keyframes heroWelcomeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__welcome {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* =========================================
   Home Trust Strip
   ========================================= */
.home-trust-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid rgba(124, 77, 255, 0.08);
  border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.home-trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  min-height: 112px;
  padding: 22px 0;
}

.home-trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  color: var(--color-text);
}

.home-trust-strip__icon {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 3.25rem;
  line-height: 1;
  stroke-width: 1.35;
}

.home-trust-strip__copy {
  min-width: 0;
}

.home-trust-strip__copy h2 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.home-trust-strip__copy p {
  max-width: 28ch;
  margin: 2px 0 0;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 760px) {
  .home-trust-strip {
    overflow: hidden;
  }

  .home-trust-strip .container {
    padding-left: 0;
    padding-right: 0;
  }

  .home-trust-strip__grid {
    display: flex;
    width: min(100%, 390px);
    max-width: 390px;
    margin: 0 auto 0 0;
    gap: 0;
    min-height: 116px;
    padding: 18px 0;
  }

  .home-trust-strip__item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    flex-direction: column;
    gap: 7px;
    padding: 0 4px;
    text-align: center;
  }

  .home-trust-strip__icon {
    font-size: 2.25rem;
  }

  .home-trust-strip__copy {
    width: 100%;
  }

  .home-trust-strip__copy h2 {
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.82rem;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .home-trust-strip__copy p {
    display: none;
  }
}

@media (max-width: 380px) {
  .home-trust-strip .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .home-trust-strip__grid {
    gap: 0;
  }

  .home-trust-strip__icon {
    font-size: 2.15rem;
  }

  .home-trust-strip__copy h2 {
    font-size: 0.78rem;
  }
}

/* =========================================
   Popular Section
   ========================================= */
.popular {
  position: relative;
  z-index: 1;
  padding: 64px 0 80px;
  background-color: #fff;
}

/* =========================================
   Review Form (trip detail page)
   ========================================= */
.review-form-section {
  padding: 40px 0;
  background: #f9f7fc;
}

.review-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
}

.review-form-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text, #1e1230);
}

.review-form-card__title i {
  color: var(--color-primary, #7c4dff);
}

.review-form__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.review-form__stars .exp-star-rating__star {
  background: none;
  border: none;
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  padding: 2px;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}

.review-form__stars .exp-star-rating__star:hover,
.review-form__stars .exp-star-rating__star.is-active {
  color: #f5a623;
  transform: scale(1.15);
}

.review-form__rating-label {
  font-size: 0.85rem;
  color: #888;
  margin-left: 6px;
}

.review-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.review-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary, #7c4dff);
}

/* =========================================
   Related Activities (product detail page)
   ========================================= */
.related-activities {
  padding: 48px 0 100px;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.related-activities .section-header {
  margin-bottom: 32px;
}

.related-activities .cards-grid {
  display: flex;
}

.related-activities .activity-card {
  flex: 0 0 calc(45% - 7px);
  min-width: 160px;
}

@media (min-width: 640px) {
  .related-activities .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .related-activities .activity-card {
    flex: 1 1 auto;
    min-width: 0;
    scroll-snap-align: none;
  }
}

@media (min-width: 992px) {
  .related-activities .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-header {
  text-align: center;
  width: min(100%, 640px);
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 16px;
}

.section-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.section-header__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.cards-grid {
  display: flex;
  gap: 14px;
  max-width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  padding-left: 16px;
  margin-left: -16px;
  padding-right: 16px;
  margin-right: -16px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.cards-grid::-webkit-scrollbar {
  display: none;
}

.cards-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Activity Card */
.activity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(45% - 7px);
  min-width: 160px;
  scroll-snap-align: start;
}

.activity-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
}

.activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.activity-card:hover .activity-card__media img {
  transform: scale(1.04);
}

.activity-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
}

.activity-card__body {
  padding: 14px 0 0;
}

.activity-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
}

.activity-card__title a:hover {
  color: var(--color-primary);
}

.activity-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 0.72rem;
  line-height: 1.2;
}

.activity-card__stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.activity-card__score {
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.72rem;
}

.activity-card__reviews {
  color: var(--color-text-muted);
  font-size: 0.72rem;
}

.activity-card__desc {
  margin-top: 4px;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.42;
  max-width: 100%;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 10px;
  padding: 5px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-primary);
  background-color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.activity-card__link:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.activity-card .wishlist-heart,
.explore-card .wishlist-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.14);
  transition: transform var(--transition), color var(--transition), border-color var(--transition), background-color var(--transition);
}

.activity-card .wishlist-heart:hover,
.explore-card .wishlist-heart:hover,
.activity-card .wishlist-heart.is-saved,
.explore-card .wishlist-heart.is-saved {
  border-color: rgba(217, 48, 37, 0.28);
  background: #fff5f4;
  color: #d93025;
  transform: translateY(-1px);
}

.activity-card .wishlist-heart i,
.explore-card .wishlist-heart i {
  font-size: 18px;
  line-height: 1;
}

.activity-card .wishlist-heart.is-saved i,
.explore-card .wishlist-heart.is-saved i {
  color: #d93025;
}

.card-scroller {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.card-scroller .cards-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-left: 16px;
  padding-left: 16px;
  margin-left: -16px;
  padding-right: 16px;
  margin-right: -16px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.card-scroller .activity-card {
  flex: 0 0 min(74vw, 260px);
  min-width: 210px;
  scroll-snap-align: start;
}

.card-scroller__btn {
  position: absolute;
  top: 38%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background-color: #fff;
  color: var(--color-text);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
  transform: translateY(-50%);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.card-scroller__btn:hover:not(:disabled) {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff;
}

.card-scroller__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.card-scroller__btn i {
  font-size: 18px;
}

.card-scroller__btn--prev {
  left: 4px;
}

.card-scroller__btn--next {
  right: 4px;
}

@media (min-width: 640px) {
  .card-scroller .activity-card {
    flex-basis: calc((100% - 14px) / 2.35);
  }
}

@media (min-width: 768px) {
  .card-scroller__btn--prev {
    left: -14px;
  }

  .card-scroller__btn--next {
    right: -14px;
  }
}

@media (min-width: 992px) {
  .card-scroller .activity-card {
    flex-basis: calc((100% - 42px) / 4);
  }

  .related-activities .card-scroller .activity-card {
    flex-basis: calc((100% - 28px) / 3);
  }
}

/* =========================================
   Promo Banner
   ========================================= */
.promo-banner {
  position: relative;
  margin-top: 48px;
  min-height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
}

.promo-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 27, 75, 0.92) 0%, rgba(30, 27, 75, 0.72) 55%, rgba(30, 27, 75, 0.35) 100%),
    url('/images/transfer-banner.webp') center/cover no-repeat;
  z-index: 0;
}

.promo-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(124, 77, 255, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 35%);
  pointer-events: none;
}

.promo-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 28px 22px;
  width: 100%;
}

.promo-banner__content {
  max-width: 600px;
}

.promo-banner__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a78bfa;
  margin-bottom: 10px;
}

.promo-banner__title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.promo-banner__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

/* =========================================
   Explore Trips Page
   ========================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.explore-page {
  background-color: var(--color-surface);
  min-height: 100vh;
}

.explore-hero {
  position: relative;
  min-height: 260px;
  padding: 32px 0 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.explore-hero .container {
  position: relative;
  z-index: 2;
}

.explore-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.82rem;
}

.explore-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.explore-hero__breadcrumb a:hover {
  color: #fff;
}

.explore-hero__breadcrumb-sep {
  color: rgba(255, 255, 255, 0.40);
}

.explore-hero__breadcrumb-current {
  color: #fff;
  font-weight: 600;
}

.explore-hero__content h1 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}

.explore-hero__content p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.explore-hero__count {
  display: inline-block;
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.8rem;
}

.explore-hero__count strong {
  color: #fff;
  font-size: 0.92rem;
}

/* Explore Hero Slide */
.explore-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.explore-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.explore-hero > .container {
  position: relative;
  z-index: 2;
}

/* Explore Sidebar Support */
.explore-support-card {
  margin-top: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.explore-support-card__top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.explore-support-card__pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: rgba(16, 185, 129, 0.10);
  color: #059669;
}

.explore-support-card__pin i {
  font-size: 18px;
}

.explore-support-card__eyebrow,
.explore-support-card__manager span {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.explore-support-card__top strong,
.explore-support-card__manager strong {
  display: block;
  margin-top: 2px;
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
}

.explore-support-card__map {
  position: relative;
  min-height: 118px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #cfe7f0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(18, 140, 126, 0.16) 0%, rgba(18, 140, 126, 0) 44%),
    linear-gradient(160deg, #e6f8fb 0%, #d7f0f5 48%, #f3fbf8 100%);
}

.explore-support-card__map::before,
.explore-support-card__map::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 0 0 1px rgba(14, 116, 144, 0.08);
}

.explore-support-card__map::before {
  width: 170px;
  height: 18px;
  left: -24px;
  top: 28px;
  transform: rotate(-18deg);
}

.explore-support-card__map::after {
  width: 190px;
  height: 16px;
  right: -62px;
  bottom: 30px;
  transform: rotate(22deg);
}

.explore-support-card__map-pin {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 8px;
  background: #d93025;
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 48, 37, 0.28);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.explore-support-card__map-pin i {
  font-size: 18px;
  transform: rotate(45deg);
}

.explore-support-card__map-tag {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  min-height: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-text);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
  transform: translateX(-50%);
  white-space: nowrap;
}

.explore-support-card__map-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.18);
}

.explore-support-card__map-road--one {
  width: 74px;
  height: 7px;
  right: 18px;
  top: 22px;
  transform: rotate(18deg);
}

.explore-support-card__map-road--two {
  width: 58px;
  height: 6px;
  left: 18px;
  bottom: 22px;
  transform: rotate(-12deg);
}

.explore-support-card__map-road--three {
  width: 46px;
  height: 6px;
  right: 38px;
  bottom: 58px;
  transform: rotate(-28deg);
}

.explore-support-card__route {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #dbeafe;
  border-radius: 9px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.explore-support-card__route span {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.explore-support-card__route a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 900;
}

.explore-support-card__manager {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.explore-support-card__avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  object-fit: cover;
}

.explore-support-card__status {
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.10);
  color: #047857;
  font-size: 0.66rem;
  font-weight: 900;
}

.explore-support-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border-radius: 8px;
  background: #128c7e;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.18);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.explore-support-card__whatsapp:hover {
  background: #0f7d70;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(18, 140, 126, 0.24);
}

.explore-support-card__whatsapp i {
  font-size: 18px;
}

.explore-support-card__social {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.explore-support-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-text-muted);
  font-size: 16px;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.explore-support-card__social a:hover {
  border-color: rgba(124, 77, 255, 0.28);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Explore Banner Ads */
.explore-banners {
  padding: 0 0 8px;
}

.explore-banners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.explore-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  border: 1px solid transparent;
}

.explore-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.explore-banner--hotel {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  border-color: #e0e7ff;
}

.explore-banner--transfer {
  background: linear-gradient(135deg, #f8fafc 0%, #ecfdf5 100%);
  border-color: #d1fae5;
}

.explore-banner__content {
  flex: 1;
  min-width: 0;
}

.explore-banner__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.explore-banner--hotel .explore-banner__eyebrow { color: #6366f1; }
.explore-banner--transfer .explore-banner__eyebrow { color: #10b981; }

.explore-banner__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  color: #111827;
}

.explore-banner__text {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.3;
  margin-bottom: 6px;
}

.explore-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}

.explore-banner--hotel .explore-banner__cta { color: #6366f1; }
.explore-banner--transfer .explore-banner__cta { color: #10b981; }

.explore-banner__cta i {
  font-size: 0.85rem;
  transition: transform 0.15s ease;
}

.explore-banner:hover .explore-banner__cta i {
  transform: translateX(2px);
}

.explore-banner__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
}

.explore-banner--hotel .explore-banner__icon {
  background: #e0e7ff;
  color: #6366f1;
}

.explore-banner--transfer .explore-banner__icon {
  background: #d1fae5;
  color: #10b981;
}

.explore-banner__img {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.explore-banner__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.explore-banner:hover .explore-banner__img img {
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .explore-banners__grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .explore-banner__title,
  .explore-banner__text {
    overflow-wrap: anywhere;
  }
}

.explore-main {
  padding: 14px 0 64px;
}

.explore-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
}

.explore-searchbox input,
.explore-sort {
  width: 100%;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: #fff;
  color: var(--color-text);
  font-size: 0.8rem;
  outline: 0;
}

.explore-searchbox input {
  padding: 0 10px;
}

.explore-searchbox input:focus,
.explore-sort:focus {
  border-color: var(--color-primary);
}

.explore-sort {
  max-width: 170px;
  padding: 0 9px;
  cursor: pointer;
}

.explore-layout {
  display: grid;
  gap: 12px;
}

.explore-sidebar {
  min-width: 0;
}

@media (max-width: 991px) {
  .explore-layout {
    display: flex;
    flex-direction: column;
  }

  .explore-sidebar {
    display: contents;
  }

  .explore-filter-card {
    order: 1;
  }

  .explore-results {
    order: 2;
  }

  .explore-support-card {
    order: 3;
    margin-top: 14px;
  }
}

.explore-filter-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.explore-filter-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  list-style: none;
}

.explore-filter-card__head::-webkit-details-marker {
  display: none;
}

.explore-filter-card__head span {
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 700;
}

.explore-filter-card__head small {
  display: none;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.explore-filter-card[open] .explore-filter-card__head small {
  color: var(--color-primary);
}

.explore-filter-card__body {
  display: block;
}

.explore-filter-actions {
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px 0;
}

.explore-clear,
.explore-clear-btn {
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 700;
}

.explore-filter-group {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
}

.explore-filter-group:last-child {
  border-bottom: 0;
}

.explore-filter-group h2 {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.explore-check {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--color-text);
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.35;
  padding: 4px 0;
}

.explore-check input {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.explore-results {
  min-width: 0;
}

.explore-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.explore-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.74rem;
  font-weight: 700;
}

.explore-list {
  display: grid;
  gap: 9px;
}

.explore-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.explore-card:hover {
  border-color: rgba(124, 77, 255, 0.35);
  box-shadow: var(--shadow-sm);
}

.explore-card[hidden] {
  display: none;
}

.explore-card__media {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 112px;
  background-color: #eef0f4;
  overflow: hidden;
}

.explore-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.explore-card .wishlist-heart {
  left: 10px;
  right: auto;
}

.explore-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0)),
    #eef0f4;
}

.explore-card__body {
  min-width: 0;
  overflow: hidden;
  padding: 9px 10px 8px;
}

.explore-card__line {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.explore-card__category {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.explore-card__body h2 {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}

.explore-card__body h2 a:hover {
  color: var(--color-primary);
}

.explore-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

.explore-rating__stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 0;
}

.explore-rating strong {
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 800;
}

.explore-card__body p {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.42;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.explore-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

.explore-card__labels span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  background-color: rgba(124, 77, 255, 0.08);
  border: 1px solid rgba(124, 77, 255, 0.16);
  border-radius: 999px;
  color: rgba(94, 53, 177, 0.92);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.explore-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 6px;
}

.explore-card__highlights li {
  position: relative;
  color: rgba(26, 26, 26, 0.66);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  padding-left: 8px;
}

.explore-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(124, 77, 255, 0.65);
}

.explore-card__side {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 8px 10px;
  border-top: 1px solid var(--color-border);
}

.explore-card__price-label {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.explore-card__price-block {
  min-width: 0;
  margin-right: auto;
  display: grid;
  gap: 2px;
}

.explore-card__price-block strong {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.explore-card__old-price {
  color: rgba(107, 107, 107, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
}

.explore-card__save {
  width: fit-content;
  min-height: 18px;
  padding: 2px 6px;
  background-color: rgba(6, 95, 70, 0.08);
  border-radius: 999px;
  color: #065f46;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.2;
}

.explore-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  background-color: var(--color-primary);
  border-radius: 5px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.explore-card__btn:hover {
  background-color: var(--color-primary-dark);
}

.explore-card__map {
  color: var(--color-primary);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.explore-card__map:hover {
  text-decoration: underline;
}

.explore-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 28px 14px;
  background-color: #fff;
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  text-align: center;
}

.explore-empty h2 {
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 800;
}

.explore-empty p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.explore-clear-btn {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 5px;
}

@media (min-width: 640px) {
  .explore-toolbar {
    grid-template-columns: minmax(0, 1fr) 170px;
    align-items: center;
  }

  .explore-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .explore-card__media {
    min-height: 118px;
  }
}

@media (min-width: 992px) {
  .explore-hero__content h1 {
    font-size: 1.8rem;
  }

  .explore-layout {
    grid-template-columns: 226px minmax(0, 1fr);
    align-items: start;
  }

  .explore-sidebar {
    grid-column: 1;
    position: sticky;
    top: calc(var(--header-height) + 14px);
  }

  .explore-results {
    grid-column: 2;
  }

  .explore-card {
    grid-template-columns: 172px minmax(0, 1fr) 150px;
  }

  .explore-card__media {
    min-height: 126px;
  }

  .explore-card__body {
    padding: 11px 12px;
  }

  .explore-card__side {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    border-top: 0;
    border-left: 1px solid var(--color-border);
    padding: 10px 12px;
  }

  .explore-card__price-block {
    margin-right: 0;
  }

  .explore-card__btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .explore-filter-card__head small {
    display: block;
  }

  .explore-hero {
    min-height: 220px;
    padding: 24px 0 28px;
  }

  .explore-hero__content h1 {
    font-size: 1.3rem;
  }

  .explore-hero__content p {
    max-width: calc(100vw - 32px);
    overflow-wrap: anywhere;
  }

  .explore-hero__count {
    display: inline-block;
    margin-top: 8px;
  }

  .explore-list {
    width: min(340px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
  }

  .explore-card {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .explore-card__media {
    height: 152px;
    min-height: 152px;
  }

  .explore-card__side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
  }

  .explore-card__price-label {
    display: none;
  }

  .explore-card__price-block {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: auto;
  }

  .explore-card__old-price {
    display: none;
  }

  .explore-card__btn {
    width: 100%;
    margin-left: 0;
  }

  .explore-card__map {
    width: 100%;
    white-space: normal;
    font-size: 0.68rem;
  }
}

/* =========================================
   Search Panel
   ========================================= */
.search-panel {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: auto;
}

@media (min-width: 768px) {
  .search-panel {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-xl);
  }
}

.search-panel__tabs {
  display: flex;
  gap: 4px;
  padding: 8px 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.search-panel__tabs::-webkit-scrollbar {
  display: none;
}

.search-panel__tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
}

.search-panel__tab:hover {
  color: var(--color-text);
  background-color: var(--color-surface);
}

.search-panel__tab.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-primary);
}

.search-panel__tab i,
.search-panel__tab .search-panel__tab-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.search-panel__body {
  padding: 10px 12px 12px;
}

/* ----- Search Form ----- */
.search-form {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.search-form.is-active {
  display: flex;
}

.search-form__group {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.search-form__group--destination {
  flex: 1 1 auto;
}

.hotel-date-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hotel-search-error {
  margin-top: 6px;
  color: #b9271f;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.hotel-search-error[hidden] {
  display: none;
}

.search-form__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.search-form__input,
.search-form__select {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #fff;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.search-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.search-form__input:focus,
.search-form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.search-form__input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.btn--search {
  height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
}

@media (max-width: 639px) {
  .hero__search {
    padding-left: 18px;
    padding-right: 18px;
  }

  .search-panel {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.10);
  }

  .search-panel__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 10px 0;
    overflow: visible;
  }

  .search-panel__tabs::-webkit-scrollbar {
    display: none;
  }

  .search-panel__tab {
    justify-content: center;
    gap: 4px;
    min-width: 0;
    padding: 9px 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: #fff;
    border-bottom-width: 1px;
    font-size: 0.76rem;
    white-space: normal;
  }

  .search-panel__tab.is-active {
    color: var(--color-primary-dark);
    border-color: rgba(124, 77, 255, 0.34);
    border-bottom-color: rgba(124, 77, 255, 0.34);
    background-color: var(--color-primary-light);
  }

  .search-panel__tab span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-overflow: clip;
    line-height: 1.2;
  }

  .search-panel__body {
    padding: 10px;
  }

  .search-form {
    gap: 9px;
  }

  .search-form.is-active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .search-form__group {
    min-width: 0;
  }

  .btn--search {
    width: 100%;
    grid-column: 1 / -1;
  }
}

/* =========================================
   Error Pages
   ========================================= */
.error-page {
  padding: 120px 0;
  text-align: center;
}

.error-page h1 {
  font-size: 6rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.error-page p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin: 16px 0 32px;
}

/* =========================================
   Responsive Breakpoints
   ========================================= */
@media (min-width: 640px) {
  .hero__video,
  .hero__overlay,
  .hero__content {
    height: 260px;
  }

  .hero__content {
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .hero__text {
    max-width: 42ch;
    font-size: 0.95rem;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
  }

  .activity-card {
    flex: 1 1 auto;
    min-width: 0;
    scroll-snap-align: none;
  }
}

@media (min-width: 640px) {
  .promo-banner {
    min-height: 260px;
  }

  .promo-banner__inner {
    padding: 36px 32px;
  }

  .promo-banner__title {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .header__actions {
    gap: 12px;
  }

  .selector--desktop,
  .btn--account-desktop {
    display: inline-flex;
  }

  .search-panel__tabs {
    padding: 10px 16px 0;
  }

  .search-panel__body {
    padding: 12px 16px 14px;
  }

  .search-form {
    flex-direction: row;
    align-items: end;
    flex-wrap: nowrap;
  }

  .search-form__group {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  .search-form__group--destination {
    flex: 2 1 0;
  }

  .btn--search {
    flex: 0 0 auto;
  }
}

@media (min-width: 992px) {
  .nav--desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-wishlist-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    padding: 24px 0 48px;
  }

  .hero__video {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    height: auto;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.32) 100%);
  }

  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    height: auto;
    margin: 0 auto 28px;
    padding: 0 24px;
    transform: none;
  }

  .hero__welcome {
    max-width: 650px;
  }

  .hero__eyebrow {
    margin-bottom: 8px;
    font-size: 0.78rem;
  }

  .hero__title {
    font-size: 3.35rem;
  }

  .hero__text {
    max-width: 48ch;
    margin-top: 12px;
    font-size: 1.02rem;
  }

  .hero__search {
    margin-top: 0;
    padding: 18px 24px 22px;
    background-color: transparent;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }

  .search-form__group {
    flex: 1 1 0;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
  }

  .section-header__title {
    font-size: 2rem;
  }

  .promo-banner {
    min-height: 280px;
  }

  .promo-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
  }

  .promo-banner__title {
    font-size: 1.85rem;
  }
}

@media (min-width: 1200px) {
  .search-panel__tabs {
    gap: 8px;
  }

  .search-panel__tab {
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .search-form {
    gap: 12px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-left: 0;
    margin-left: 0;
    padding-right: 0;
    margin-right: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   Product Detail Page
   ========================================= */
/* =========================================
   Experience Detail Page (Viator/GYG style)
   ========================================= */
.exp-detail {
  padding: 20px 0 60px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  color: #ccc;
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: 500;
}

/* Header */
.exp-header {
  margin-bottom: 24px;
}

.exp-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.exp-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.exp-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.exp-rating__stars {
  display: flex;
  gap: 1px;
  color: #f59e0b;
  font-size: 0.85rem;
}

.exp-rating__score {
  font-weight: 700;
  color: var(--color-text);
}

.exp-rating__count {
  color: var(--color-text-muted);
}

.exp-meta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #ccc;
}

.exp-meta__location {
  display: flex;
  align-items: center;
  gap: 4px;
}

.exp-meta__location i {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Quick Info Pills */
.exp-quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--color-surface);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.exp-pill i {
  font-size: 15px;
  color: var(--color-text-muted);
  opacity: 0.7;
}

/* Gallery */
.exp-gallery {
  margin-bottom: 32px;
}

.exp-gallery__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-surface);
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 280px;
}

.exp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.exp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background-color var(--transition), transform var(--transition);
  z-index: 2;
}

.exp-gallery__nav:hover {
  background-color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.exp-gallery__nav--prev { left: 12px; }
.exp-gallery__nav--next { right: 12px; }

.exp-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}

.exp-gallery__expand {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
  transition: background-color var(--transition);
}

.exp-gallery__expand:hover {
  background-color: rgba(0, 0, 0, 0.72);
}

.exp-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.exp-gallery__thumbs::-webkit-scrollbar { display: none; }

.exp-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  opacity: 0.55;
  padding: 0;
  background: none;
}

.exp-gallery__thumb:hover { opacity: 0.8; }

.exp-gallery__thumb.is-active {
  border-color: var(--color-primary);
  opacity: 1;
}

.exp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two-Column Layout */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Section Nav (anchor links - replaces tabs) */
.exp-section-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  z-index: 90;
  background-color: #fff;
  padding-top: 4px;
}

.exp-section-nav::-webkit-scrollbar { display: none; }

.exp-section-nav__link {
  flex: 0 0 auto;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}

.exp-section-nav__link:hover {
  color: var(--color-text);
}

.exp-section-nav__link.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
  font-weight: 700;
}

/* Content Sections */
.exp-content {
  min-width: 0;
}

.exp-section {
  padding-bottom: 36px;
  margin-bottom: 0;
}

.exp-section + .exp-section {
  border-top: 1px solid var(--color-border);
  padding-top: 36px;
}

.exp-section__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.exp-section__subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  margin-top: 24px;
}

.exp-section__body p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Highlights */
.exp-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.exp-highlights li i {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* What's Included */
.exp-included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.exp-included__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.exp-included__heading--yes {
  color: #059669;
}

.exp-included__heading--no {
  color: #dc2626;
}

.exp-included__heading i {
  font-size: 18px;
}

.exp-included__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-included__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.exp-included__list li i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-included__list li .ti-check {
  color: #059669;
}

.exp-included__list li .ti-x {
  color: #dc2626;
}

/* Itinerary */
.exp-itinerary {
  display: flex;
  flex-direction: column;
}

.exp-itinerary__step {
  display: flex;
  gap: 16px;
}

.exp-itinerary__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
}

.exp-itinerary__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-itinerary__line {
  width: 2px;
  flex: 1;
  background-color: var(--color-border);
  min-height: 20px;
}

.exp-itinerary__body {
  flex: 1;
  padding-bottom: 28px;
}

.exp-itinerary__step:last-child .exp-itinerary__body {
  padding-bottom: 0;
}

.exp-itinerary__time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.exp-itinerary__body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.exp-itinerary__body p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Meeting Point */
.exp-meeting {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-meeting__item {
  display: flex;
  gap: 14px;
}

.exp-meeting__item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 2px;
}

.exp-meeting__item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.exp-meeting__item p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Info List */
.exp-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.exp-info-list li i {
  color: var(--color-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Reviews Summary */
.exp-reviews-summary {
  display: flex;
  gap: 24px;
  padding: 24px;
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  flex-direction: column;
}

.exp-reviews-summary__score {
  text-align: center;
  flex-shrink: 0;
}

.exp-reviews-summary__number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  display: block;
}

.exp-reviews-summary__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 1rem;
  margin: 6px 0 4px;
}

.exp-reviews-summary--empty .exp-reviews-summary__stars {
  color: #c7cbd4;
}

.exp-reviews-summary__count {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.exp-reviews-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.exp-review-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.exp-review-bar span:first-child {
  width: 14px;
  text-align: right;
}

.exp-review-bar span:last-child {
  width: 30px;
}

.exp-review-bar__track {
  flex: 1;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.exp-review-bar__fill {
  height: 100%;
  background-color: #f59e0b;
  border-radius: var(--radius-full);
}

/* Reviews Empty */
.exp-reviews-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 20px;
  border: 1.5px dashed #d9dce4;
  border-radius: var(--radius-lg);
  background-color: #fff;
  margin-bottom: 24px;
}

.exp-reviews-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 24px;
}

.exp-reviews-empty h3 {
  font-size: 1rem;
  font-weight: 700;
}

.exp-reviews-empty p {
  max-width: 420px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

/* Review Form */
.exp-review-form-wrap {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background-color: var(--color-surface);
}

/* Star Rating Input */
.exp-star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
}

.exp-star-rating__star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: #d1d5db;
  font-size: 1.5rem;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}

.exp-star-rating__star:hover {
  transform: scale(1.15);
}

.exp-star-rating__star.is-active {
  color: #f59e0b;
}

.exp-star-rating__star.is-active i {
  font-weight: 700;
}

.exp-star-rating__label {
  margin-left: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.exp-review-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.exp-review-form-head h3 {
  font-size: 1rem;
  font-weight: 700;
}

.exp-review-form-head p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.exp-review-status {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background-color: #ecfdf5;
  color: #047857;
  font-size: 0.72rem;
  font-weight: 800;
}

.exp-review-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #fff;
}

.exp-review-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.exp-review-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text);
}

.exp-review-form__field input,
.exp-review-form__field select,
.exp-review-form__field textarea {
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #fff;
  color: var(--color-text);
  font: inherit;
  font-weight: 500;
}

.exp-review-form__field input,
.exp-review-form__field select {
  height: 42px;
  padding: 0 12px;
}

.exp-review-form__field textarea {
  min-height: 100px;
  padding: 11px 12px;
  resize: vertical;
}

.exp-review-form__field input:focus,
.exp-review-form__field select:focus,
.exp-review-form__field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.exp-review-form__notice {
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background-color: #ecfdf5;
  color: #047857;
  font-size: 0.82rem;
  font-weight: 600;
}

.review-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #dbe3ea;
  border-radius: 10px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 650;
}

.review-alert i {
  font-size: 18px;
  color: #475569;
}

.review-alert--success {
  border-color: #d6e4dd;
  background: #f7faf8;
  color: #1f4d38;
}

.review-alert--success i {
  color: #18764b;
}

.review-alert--error {
  border-color: #f2c9c5;
  background: #fff7f6;
  color: #9f2b23;
}

.review-alert--error i {
  color: #b9271f;
}

.exp-review-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.exp-review-card {
  border: 1px solid #e1e7ef;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.exp-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.exp-review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.exp-review-card__avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.exp-review-card__author strong,
.exp-review-card__author span {
  display: block;
}

.exp-review-card__author strong {
  color: #111827;
  font-size: 0.92rem;
}

.exp-review-card__author span {
  color: #64748b;
  font-size: 0.78rem;
  margin-top: 2px;
}

.exp-review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.92rem;
  white-space: nowrap;
}

.exp-review-card p {
  margin: 0;
  color: #334155;
  line-height: 1.58;
  font-size: 0.92rem;
}

.exp-review-form__row--compact {
  grid-template-columns: 1fr;
}

/* =========================================
   Booking Sidebar (clean Viator style)
   ========================================= */
.exp-sidebar {
  margin-bottom: 32px;
}

.exp-booking {
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.exp-booking__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.exp-booking__from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.exp-booking__amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.exp-booking__per {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.exp-booking__original {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.exp-booking__was {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.exp-booking__save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #065f46;
  background-color: #ecfdf5;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.exp-booking__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.exp-booking__rating i {
  color: #f59e0b;
  font-size: 15px;
}

.exp-booking__rating span:first-of-type {
  font-weight: 700;
  color: var(--color-text);
}

.exp-booking__rating-count {
  color: var(--color-text-muted);
}

.exp-booking__promo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #dc2626;
  background-color: #fef2f2;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.exp-booking__promo i {
  font-size: 15px;
}

/* Booking Form */
.exp-booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-booking-field {
  position: relative;
}

.exp-booking-field__select-wrap {
  position: relative;
}

.exp-booking-field__select-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
  color: var(--color-text-muted);
}

.exp-booking-field__select {
  width: 100%;
  height: 48px;
  padding: 0 32px 0 38px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.exp-booking-field__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

/* Travelers */
.exp-travelers {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.exp-travelers:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.exp-travelers__btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  flex-shrink: 0;
  transition: background-color var(--transition);
  cursor: pointer;
}

.exp-travelers__btn:hover {
  background-color: var(--color-surface);
}

.exp-travelers__input {
  width: 48px;
  text-align: center;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 48px;
  font-size: 1rem;
  font-weight: 700;
  -moz-appearance: textfield;
  background: transparent;
}

.exp-travelers__input::-webkit-outer-spin-button,
.exp-travelers__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.exp-travelers__label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-right: 12px;
  white-space: nowrap;
}

/* Total Row */
.exp-booking-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 4px;
  border-top: 1px solid var(--color-border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.exp-booking-total__amount {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-text);
}

/* CTA */
.exp-booking__cta {
  padding: 14px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  margin-top: 4px;
}

/* Trust Items */
.exp-booking__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.exp-booking__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.exp-booking__trust-item i {
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* =========================================
   Calendar / Date Picker
   ========================================= */
.date-picker {
  position: relative;
}

.date-picker__display {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  padding: 0 11px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: #fff;
  appearance: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition);
  user-select: none;
}

.date-picker__display:focus {
  outline: none;
}

.date-picker__display:hover {
  border-color: #c8ccd6;
  background-color: var(--color-surface);
}

.date-picker:focus-within .date-picker__display {
  border-color: var(--color-primary);
}

.date-picker__icon {
  font-size: 17px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.date-picker__text {
  flex: 1;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-picker__text.is-placeholder {
  color: #aaa;
  font-weight: 400;
}

.date-picker__arrow {
  font-size: 14px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.date-picker:focus-within .date-picker__arrow {
  transform: rotate(180deg);
}

.date-picker.is-open .date-picker__arrow {
  transform: rotate(180deg);
}

.date-picker__input {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.date-picker__input::-webkit-calendar-picker-indicator {
  display: none;
}

.date-picker__calendar {
  position: fixed;
  z-index: 99999;
  width: 276px;
  max-width: calc(100vw - 24px);
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

@media (max-width: 480px) {
  .date-picker__calendar {
    width: calc(100vw - 24px);
    left: 12px !important;
    right: 12px;
  }
}

.date-picker__calendar[hidden] {
  display: none;
}

.date-picker__calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.date-picker__month {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-text);
}

.date-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-muted);
  font-size: 15px;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.date-picker__nav:hover {
  background-color: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.date-picker__weekdays,
.date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.date-picker__weekdays {
  margin-bottom: 5px;
}

.date-picker__weekday {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background-color: #fff;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--color-text);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.date-picker__day:hover:not(:disabled) {
  border-color: var(--color-primary);
  background-color: rgba(124, 77, 255, 0.06);
  color: var(--color-primary);
}

.date-picker__day.is-today {
  color: var(--color-primary);
  border-color: rgba(124, 77, 255, 0.34);
}

.date-picker__day.is-selected {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.date-picker__day.is-closed {
  color: #b9271f;
  background-color: #fff7f7;
  border-color: #fecaca;
  text-decoration: line-through;
}

.date-picker__day.is-closed:disabled {
  color: #c2410c;
  background-color: #fff7f7;
  border-color: #fecaca;
}

.date-picker__day:disabled {
  cursor: not-allowed;
  color: #b8bcc6;
  background-color: var(--color-surface);
  border-color: #edf0f5;
}

.date-picker__day--empty {
  height: 28px;
}

.booking-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.booking-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

/* =========================================
   Sticky CTA (mobile) - Experience Page
   ========================================= */
.exp-sticky-cta {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1.5px solid var(--color-border);
  padding: 12px 16px;
  z-index: 1200;
  pointer-events: auto;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.exp-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exp-sticky-cta__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.exp-sticky-cta__price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
}

.exp-sticky-cta__meta {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.exp-sticky-cta .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.88rem;
}

.exp-sticky-cta.is-hidden {
  transform: translateY(100%);
}

.review-bar__track {
  flex: 1;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background-color: #f59e0b;
  border-radius: var(--radius-full);
}

/* =========================================
   Experience Page Responsive
   ========================================= */
@media (min-width: 768px) {
  .exp-layout {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 0 40px;
    align-items: start;
  }

  .exp-title {
    font-size: 1.85rem;
  }

  .exp-gallery__main {
    min-height: 360px;
  }

  .exp-gallery__thumb {
    width: 100px;
    height: 72px;
  }

  .exp-section-nav {
    gap: 0;
    position: sticky;
    top: var(--header-height);
  }

  .exp-included {
    grid-template-columns: 1fr 1fr;
  }

  .exp-reviews-summary {
    flex-direction: row;
    align-items: center;
  }

  .exp-review-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .exp-sticky-cta {
    display: none;
  }

  .exp-sidebar {
    position: relative;
  }

  .exp-booking.is-fixed {
    position: fixed;
    top: var(--detail-sticky-top, calc(var(--header-height) + 20px));
    left: var(--booking-fixed-left);
    width: var(--booking-fixed-width);
    z-index: 80;
    max-height: calc(100vh - var(--detail-sticky-top, 92px) - 20px);
    overflow-y: auto;
  }

  .exp-booking.is-stopped {
    position: absolute;
    top: var(--booking-stop-top, 0);
    left: 0;
    width: 100%;
    z-index: 1;
  }
}

@media (min-width: 992px) {
  .exp-layout {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .exp-title {
    font-size: 2.1rem;
  }

  .exp-gallery__main {
    min-height: 420px;
    aspect-ratio: 16 / 9;
  }

  .exp-gallery__thumb {
    width: 120px;
    height: 84px;
  }
}

@media (max-width: 767px) {
  .exp-detail {
    padding-bottom: 100px;
  }

  .exp-section-nav {
    margin-left: -4px;
    margin-right: -4px;
  }

  .exp-gallery__main {
    aspect-ratio: 16 / 9;
    min-height: 200px;
    border-radius: var(--radius-md);
  }

  .exp-gallery__thumb {
    width: 56px;
    height: 42px;
  }

  .exp-booking {
    padding: 18px;
  }

  .exp-review-form__row {
    grid-template-columns: 1fr;
  }

  .exp-review-form-head {
    flex-direction: column;
    gap: 10px;
  }

  .exp-review-status {
    align-self: flex-start;
  }

  .exp-header {
    margin-bottom: 16px;
  }

  .exp-sticky-cta .btn {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

@media (max-width: 420px) {
  .exp-gallery__main {
    min-height: 160px;
  }

  .exp-gallery__thumb {
    width: 48px;
    height: 36px;
  }
}

/* =========================================
   Quad Detail Refinement
   ========================================= */
.exp-detail {
  background: #f4f6f9;
  padding: 18px 0 54px;
}

.exp-detail .container {
  max-width: 1180px;
}

.exp-header {
  margin-bottom: 18px;
}

.exp-title {
  max-width: 820px;
  color: #111827;
  font-size: 1.62rem;
  letter-spacing: 0;
}

.exp-meta,
.exp-quick-info {
  max-width: 860px;
}

.exp-pill {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.03);
}

.exp-pill i,
.exp-meta__location i {
  color: #6d4aff;
}

.exp-gallery {
  margin-bottom: 24px;
}

.exp-gallery__main {
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.10);
}

.exp-gallery__thumb {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.07);
}

.exp-gallery__thumb.is-active {
  border-color: #6d4aff;
}

.exp-layout {
  gap: 22px;
}

.exp-content {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.exp-section-nav {
  top: var(--header-height);
  margin: 0;
  padding: 0 12px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.exp-section-nav__link {
  padding: 13px 12px;
  font-size: 0.82rem;
}

.exp-section-nav__link.is-active {
  color: #111827;
  border-bottom-color: #6d4aff;
}

.exp-section {
  padding: 22px;
}

.exp-section + .exp-section {
  padding-top: 22px;
  border-top-color: #eef0f4;
}

.exp-section__title {
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #111827;
  letter-spacing: 0;
}

.exp-section__subtitle {
  margin-top: 18px;
}

.exp-section__body p {
  color: #4b5563;
  font-size: 0.91rem;
  line-height: 1.62;
}

.exp-highlights,
.exp-info-list {
  gap: 8px;
}

.exp-highlights li,
.exp-info-list li {
  padding: 10px 12px;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  background: #fbfcfe;
  color: #374151;
}

.exp-highlights li i,
.exp-info-list li i {
  color: #047857;
}

.exp-included {
  gap: 14px;
}

.exp-included__col {
  padding: 14px;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfe;
}

.exp-itinerary__num {
  background: #111827;
}

.exp-itinerary__time {
  color: #6d4aff;
}

.exp-itinerary__body p,
.exp-meeting__item p {
  color: #4b5563;
}

.exp-meeting {
  gap: 12px;
}

.exp-meeting__item {
  padding: 12px;
  border: 1px solid #edf0f4;
  border-radius: 12px;
  background: #fbfcfe;
}

.exp-meeting__item i {
  background: #f1edff;
  color: #6d4aff;
}

.exp-reviews-summary {
  gap: 18px;
  padding: 18px;
  border: 1px solid #edf0f4;
  background: #fbfcfe;
  margin-bottom: 16px;
}

.exp-reviews-empty {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 14px;
  text-align: left;
  padding: 16px;
  border-color: #d7dce5;
  margin-bottom: 16px;
}

.exp-reviews-empty__icon {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  background: #f1edff;
  color: #6d4aff;
  font-size: 21px;
}

.exp-reviews-empty h3,
.exp-reviews-empty p {
  margin: 0;
}

.exp-reviews-empty .btn {
  grid-column: 3;
  grid-row: 1 / 3;
}

.exp-review-form-wrap {
  padding: 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.exp-review-form {
  padding: 0;
  border: 0;
}

.exp-review-status {
  background: #ecfdf5;
  color: #047857;
}

.exp-review-submit {
  align-self: flex-start;
  border-color: #bbf7d0;
  color: #047857;
}

.exp-review-submit:hover {
  border-color: #047857;
  background: #ecfdf5;
  color: #065f46;
}

.exp-sidebar {
  min-width: 0;
}

.exp-booking {
  border: 1px solid #dfe3ea;
  border-top: 4px solid #6d4aff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.10);
}

.exp-booking__head {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eef0f4;
}

.exp-booking__head strong {
  color: #111827;
  font-size: 0.98rem;
  line-height: 1.25;
}

.exp-booking__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 800;
}

.exp-booking__eyebrow i {
  font-size: 17px;
}

.exp-booking__price {
  flex-wrap: wrap;
  gap: 2px 8px;
  margin-bottom: 5px;
}

.exp-booking__from {
  flex: 0 0 100%;
  color: #4b5563;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.exp-booking__amount {
  color: #111827;
  font-size: 2rem;
}

.exp-booking__per {
  color: #6b7280;
  font-size: 0.8rem;
}

.exp-booking__original {
  margin-bottom: 10px;
}

.exp-booking__save {
  background: #ecfdf5;
  color: #047857;
}

.exp-booking__rating {
  margin-bottom: 10px;
}

.exp-booking__promo {
  margin-bottom: 12px;
  padding: 9px 11px;
  border: 1px solid #fee2e2;
  border-left: 4px solid #d93025;
  border-radius: 10px;
  background: #fff7f7;
  color: #b9271f;
}

.exp-booking-form {
  gap: 9px;
}

.exp-booking-label {
  display: block;
  margin-bottom: 6px;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 800;
}

.date-picker__display,
.exp-booking-field__select,
.exp-travelers {
  height: 44px;
  border-color: #dfe3ea;
  border-radius: 10px;
}

.date-picker__display {
  padding: 0 12px;
}

.exp-booking-field__select {
  height: 44px;
}

.exp-travelers {
  overflow: visible;
}

.exp-travelers__btn,
.exp-travelers__input {
  height: 42px;
}

.exp-travelers__btn {
  color: #111827;
}

.exp-booking-total {
  margin-top: 4px;
  padding-top: 12px;
}

.exp-booking__cta {
  min-height: 48px;
  margin-top: 2px;
  border-radius: 10px;
  background: #111827;
  box-shadow: none;
}

.exp-booking__cta:hover {
  background: #0b1220;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.18);
}

.exp-booking__trust {
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
}

.exp-booking__trust-item {
  color: #4b5563;
  line-height: 1.35;
}

.exp-booking__trust-item i {
  color: #047857;
}

.related-activities {
  background: #f4f6f9;
  padding-bottom: 56px;
}

.related-activities .section-header {
  margin-bottom: 16px;
}

.related-activities .activity-card__rating {
  display: none;
}

.related-activities .activity-card__link {
  color: #111827;
}

.related-activities .activity-card__link:hover {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

@media (min-width: 768px) {
  .exp-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
  }

  .exp-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 18px);
  }

  .exp-booking.is-fixed,
  .exp-booking.is-stopped {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .exp-highlights,
  .exp-info-list,
  .exp-meeting {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exp-gallery__main {
    min-height: 330px;
  }

  .exp-title {
    font-size: 1.9rem;
  }
}

@media (min-width: 992px) {
  .exp-layout {
    grid-template-columns: minmax(0, 1fr) 352px;
    gap: 26px;
  }

  .exp-gallery__main {
    min-height: 390px;
  }

  .exp-title {
    font-size: 2.08rem;
  }
}

@media (max-width: 767px) {
  .top-bar {
    padding: 7px 0;
  }

  .top-bar__text {
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .exp-detail {
    padding-bottom: 96px;
  }

  .exp-detail,
  .exp-header,
  .exp-content,
  .exp-section,
  .exp-booking {
    max-width: 100%;
  }

  .exp-title,
  .exp-section__title,
  .exp-section__body p,
  .exp-highlights li,
  .exp-info-list li,
  .exp-meeting__item,
  .exp-booking__head strong {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .exp-title {
    font-size: 1.42rem;
    line-height: 1.18;
  }

  .breadcrumb,
  .exp-meta,
  .exp-quick-info {
    max-width: 100%;
    min-width: 0;
  }

  .exp-pill {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }

  .exp-gallery,
  .exp-gallery__main,
  .exp-gallery__thumbs {
    max-width: 100%;
  }

  .exp-content {
    border-radius: 12px;
  }

  .exp-section {
    padding: 18px;
  }

  .exp-section-nav {
    margin: 0;
    padding: 0 8px;
  }

  .exp-reviews-empty {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .exp-reviews-empty .btn {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
  }

  .exp-sidebar {
    margin-bottom: 18px;
  }

  .exp-booking {
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  }

  .exp-sticky-cta__left {
    min-width: 68px;
  }

  .exp-sticky-cta .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
}

/* =========================================
   Tour Detail Professional Overrides
   ========================================= */
.exp-detail,
.related-activities {
  background: #fff;
}

.exp-content {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.exp-section-nav {
  display: block;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid #dfe5ec;
  box-shadow: none;
}

.exp-section-nav__scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.exp-section-nav__scroll::-webkit-scrollbar {
  display: none;
}

.exp-section-nav__link {
  color: #4b5563;
}

.exp-section {
  padding: 28px 0;
}

.exp-section + .exp-section {
  border-top: 1px solid #e6ebf1;
}

.exp-section__title {
  font-size: 1.14rem;
}

.exp-highlights li,
.exp-info-list li,
.exp-included__col,
.exp-meeting__item {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.exp-highlights li,
.exp-info-list li {
  padding: 6px 0;
}

.exp-included__col {
  padding: 0;
}

.exp-included__heading--yes,
.exp-included__heading--no {
  color: #111827;
}

.exp-included__heading--yes i {
  color: #0f6f8f;
}

.exp-included__heading--no i {
  color: #b9271f;
}

.exp-meeting__item {
  padding: 0;
}

.exp-map-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.exp-map-head p {
  max-width: 680px;
  margin: 0;
  color: #4b5563;
  font-size: 0.91rem;
  line-height: 1.62;
}

.exp-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: #0f6f8f;
  font-size: 0.8rem;
  font-weight: 800;
}

.exp-route-spots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.exp-route-spot {
  display: grid;
  gap: 7px;
}

.exp-route-spot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.exp-route-spot strong {
  color: #111827;
  font-size: 0.82rem;
  line-height: 1.25;
}

.exp-map-frame {
  overflow: hidden;
  border-radius: 10px;
  background: #eef4f0;
  min-height: 260px;
}

.exp-map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.exp-reviews-summary {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  border-radius: 12px;
  background: #edf7fb;
}

.exp-reviews-summary__score {
  text-align: left;
}

.exp-reviews-summary__stars {
  justify-content: flex-start;
}

.exp-reviews-summary__criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
}

.exp-review-criterion {
  display: grid;
  grid-template-columns: 120px minmax(80px, 1fr) 46px;
  gap: 10px;
  align-items: center;
  color: #334155;
  font-size: 0.8rem;
}

.exp-review-criterion > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.exp-review-criterion i {
  color: #64748b;
  font-size: 16px;
}

.exp-review-criterion__track {
  height: 5px;
  border-radius: 99px;
  background: #aebbc6;
  overflow: hidden;
}

.exp-review-criterion__track span {
  display: block;
  height: 100%;
  background: #111827;
}

.exp-review-criterion strong {
  color: #475569;
  font-size: 0.75rem;
  text-align: right;
}

.exp-review-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 18px 0;
}

.exp-review-search,
.exp-review-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid #d9e0e8;
  border-radius: 999px;
  background: #fff;
  padding: 0 13px;
  color: #64748b;
}

.exp-review-search input,
.exp-review-sort select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111827;
  font-size: 0.82rem;
}

.exp-review-sort select {
  width: auto;
  cursor: pointer;
}

.exp-review-form-wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.exp-review-form-head {
  display: block;
  margin-bottom: 12px;
}

.exp-review-form-head h3 {
  font-size: 1rem;
}

.exp-review-form-head p {
  max-width: 640px;
}

.exp-review-form {
  display: grid;
  gap: 12px;
  max-width: 660px;
}

.exp-review-form__field input,
.exp-review-form__field select,
.exp-review-form__field textarea {
  border-color: #d9e0e8;
  border-radius: 10px;
}

.exp-review-submit {
  color: #111827;
  border-color: #cfd7e2;
}

.exp-review-submit:hover {
  color: #111827;
  border-color: #111827;
  background: #f8fafc;
}

.exp-booking {
  border: 1px solid #cfd7e2;
  border-top: 1px solid #cfd7e2;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.exp-booking__eyebrow {
  color: #475569;
  font-size: 0.72rem;
}

.exp-booking__eyebrow i,
.exp-booking__trust-item i {
  color: #0f6f8f;
}

.exp-booking__save {
  padding: 0;
  background: transparent;
  color: #0f6f8f;
  border-radius: 0;
}

.exp-booking__promo {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #b9271f;
}

.exp-booking__promo i {
  color: #b9271f;
}

@media (max-width: 767px) {
  .exp-content {
    overflow: visible;
    border-radius: 0;
  }

  .exp-section-nav {
    position: sticky;
    top: 0;
    z-index: 950;
    margin: 0 -16px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: none;
    border-bottom: 1px solid #e5e7eb;
  }

  .exp-section-nav__scroll {
    padding-bottom: 4px;
  }

  .exp-section {
    padding: 22px 0;
  }

  .exp-route-spots {
    grid-template-columns: repeat(3, 180px);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .exp-route-spot {
    scroll-snap-align: start;
  }

  .exp-map-head {
    display: grid;
    gap: 10px;
  }

  .exp-map-link {
    justify-self: start;
  }

.exp-map-frame iframe {
  height: 240px;
}

  .exp-reviews-summary {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .exp-reviews-summary__criteria {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exp-review-criterion {
    grid-template-columns: 108px minmax(80px, 1fr) 48px;
  }

  .exp-review-toolbar {
    grid-template-columns: 1fr;
  }

  .exp-review-sort select {
    width: 100%;
  }
}

/* =========================================
   Checkout Page
   ========================================= */
.checkout {
  padding: 20px 0 72px;
}

/* Steps indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 0 16px;
}

.checkout-steps__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-steps__number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background-color: #fff;
  flex-shrink: 0;
  transition: all var(--transition);
}

.checkout-steps__item.is-active .checkout-steps__number {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.checkout-steps__content {
  display: none;
}

.checkout-steps__label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  display: block;
}

.checkout-steps__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  display: block;
}

.checkout-steps__item.is-active .checkout-steps__title {
  color: var(--color-primary);
}

.checkout-steps__line {
  flex: 1;
  height: 2px;
  background-color: var(--color-border);
  margin: 0 12px;
  max-width: 80px;
}

/* Layout */
.checkout-layout {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

/* Main form */
.checkout-main {
  order: 2;
}

/* Sidebar */
.checkout-sidebar {
  order: 1;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Fieldsets */
.checkout-fieldset {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  background-color: #fff;
}

.checkout-fieldset__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 14px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--color-border);
}

.checkout-fieldset__legend i {
  color: var(--color-primary);
  font-size: 18px;
}

.checkout-fieldset__optional {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.checkout-fieldset__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Form rows */
.checkout-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

/* Fields */
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.checkout-field__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.checkout-field__required {
  color: #dc2626;
}

.checkout-field__input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-field__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.checkout-field__input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.checkout-field__input.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkout-field.has-error .checkout-field__input {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkout-field__textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--color-text);
  background-color: #fff;
  resize: vertical;
  min-height: 68px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.checkout-field__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.checkout-field__textarea::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.hotel-traveler-fieldset__note {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hotel-traveler-list {
  display: grid;
  gap: 12px;
}

.hotel-traveler-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  background: #f8fafc;
}

.hotel-traveler-card h3 {
  margin: 0 0 12px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.hotel-traveler-card__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Coupon */
.checkout-coupon__row {
  display: flex;
  gap: 10px;
}

.checkout-coupon__input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-coupon__msg {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.checkout-coupon__msg.is-hidden {
  display: none;
}

.checkout-coupon__msg.is-success {
  background-color: #ecfdf5;
  color: #065f46;
}

.checkout-coupon__msg.is-error {
  background-color: #fef2f2;
  color: #dc2626;
}

.checkout-coupon__applied {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  background-color: #ecfdf5;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: #065f46;
}

.checkout-coupon__applied i {
  color: #059669;
  font-size: 18px;
}

.checkout-coupon__applied.is-hidden {
  display: none;
}

.checkout-coupon__remove {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background-color: transparent;
  color: #065f46;
  font-size: 14px;
  transition: background-color var(--transition);
}

.checkout-coupon__remove:hover {
  background-color: rgba(5, 150, 105, 0.12);
}

/* Payment method */
.checkout-payment__option {
  display: block;
  cursor: pointer;
}

.checkout-payment__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment__content {
  display: block;
  padding: 13px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background-color var(--transition);
}

.checkout-payment__option input:checked + .checkout-payment__content {
  border-color: var(--checkout-warm-border);
  background-color: var(--checkout-warm);
}

.checkout-payment__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-payment__header i {
  font-size: 22px;
  color: var(--checkout-warm-text);
  flex-shrink: 0;
}

.checkout-payment__header strong {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}

.checkout-payment__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

.checkout-payment__details-btn {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid var(--checkout-warm-border);
  border-radius: var(--radius-full);
  color: var(--checkout-warm-text);
  background-color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  transition: border-color var(--transition), background-color var(--transition);
}

.checkout-payment__details-btn:hover {
  border-color: #fb923c;
  background-color: #ffedd5;
}

/* Deposit options */
.checkout-deposit {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.checkout-deposit__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.checkout-deposit__option {
  display: block;
  cursor: pointer;
  margin-bottom: 8px;
}

.checkout-deposit__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-deposit__content {
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background-color var(--transition);
}

.checkout-deposit__option input:checked + .checkout-deposit__content {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.checkout-deposit__content strong {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.checkout-deposit__price {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Terms */
.checkout-terms {
  padding: 13px 16px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
}

.checkout-terms__label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkout-terms__label input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.checkout-terms__label a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}

.checkout-terms.has-error {
  border: 1.5px solid #dc2626;
}

/* Submit */
.checkout-form__submit {
  padding: 13px;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
}

.checkout-form__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.checkout-form__secure i {
  color: var(--color-primary);
  font-size: 16px;
}

/* ---- Summary Sidebar ---- */
.checkout-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
}

.checkout-summary {
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}

.checkout-summary__header {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 16px;
}

.checkout-summary__img {
  width: 90px;
  height: 68px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--color-surface);
}

.checkout-summary__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-summary__info {
  flex: 1;
  min-width: 0;
}

.checkout-summary__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 6px;
}

.checkout-summary__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.checkout-summary__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.checkout-summary__meta i {
  color: var(--color-primary);
  font-size: 13px;
}

/* Details */
.checkout-summary__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 16px;
}

.checkout-summary__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.checkout-summary__detail-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.checkout-summary__detail-value {
  font-weight: 700;
  color: var(--color-text);
}

/* Pricing */
.checkout-summary__pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 16px;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.checkout-summary__row--discount {
  color: #059669;
  font-weight: 600;
}

.checkout-summary__row--discount.is-hidden {
  display: none;
}

.checkout-summary__discount {
  color: #059669;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-text);
  padding-top: 8px;
  border-top: 1.5px solid var(--color-border);
}

/* Payment plan in sidebar */
.checkout-summary__plan {
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 16px;
}

.checkout-summary__plan.is-hidden {
  display: none;
}

.checkout-summary__plan-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 4px 0;
  color: var(--color-text);
  font-weight: 600;
}

.checkout-summary__plan-row--muted {
  color: var(--color-text-muted);
  font-weight: 500;
}

.checkout-summary__due {
  font-weight: 900;
}

/* Bank details */
.checkout-summary__bank {
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 16px;
}

.checkout-summary__bank.is-hidden {
  display: none;
}

.checkout-summary__bank-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.checkout-summary__bank-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 8px;
}

.checkout-summary__bank-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}

.checkout-summary__bank-row span:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.checkout-summary__bank-row span:last-child {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

.checkout-summary__bank-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Guarantee */
.checkout-summary__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.checkout-summary__guarantee i {
  color: var(--color-primary);
  font-size: 14px;
}

/* ---- Compact coupon in sidebar ---- */
.checkout-summary__coupon {
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 14px;
}

.checkout-summary__coupon-row {
  display: flex;
  gap: 6px;
}

.checkout-summary__coupon-input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  background-color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checkout-summary__coupon-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.checkout-summary__coupon-input::placeholder {
  color: #b0b0b0;
  font-weight: 400;
}

.btn--xs {
  height: 36px;
  padding: 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* ---- Sidebar info blocks (cancellation, why book) ---- */
.checkout-summary__info-block {
  display: flex;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 14px;
}

.checkout-summary__info-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--checkout-green);
  color: var(--checkout-green-text);
  font-size: 14px;
}

.checkout-summary__info-block + .checkout-summary__info-block .checkout-summary__info-icon {
  background-color: var(--checkout-warm);
  color: var(--checkout-warm-text);
}

.checkout-summary__info-text {
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.checkout-summary__info-text strong {
  display: block;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 2px;
}

.checkout-summary__info-text p {
  margin: 0;
}

.checkout-summary__benefits {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.checkout-summary__benefits li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  padding: 2px 0;
}

.checkout-summary__benefits li i {
  color: var(--checkout-green-text);
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Info alert in payment section ---- */
.checkout-alert {
  display: flex;
  gap: 10px;
  padding: 10px 13px;
  border-radius: var(--radius-md);
  border: 1.5px solid #bfdbfe;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 14px;
}

.checkout-alert--info {
  background-color: #eff6ff;
  color: #1d4ed8;
}

.checkout-alert--error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.checkout-alert i {
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.checkout-alert--error i {
  color: #dc2626;
}

.checkout-alert strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.checkout-alert p {
  margin: 0;
  color: inherit;
  opacity: 0.85;
}

/* ---- Bank details as instruction ---- */
.checkout-bank-info {
  margin-top: 6px;
}

.checkout-bank-info__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.checkout-bank-info__box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 8px;
}

.checkout-bank-info__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}

.checkout-bank-info__row span:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.checkout-bank-info__row span:last-child {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

.checkout-bank-info__note {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Bank transfer modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.checkout-modal.is-open {
  display: flex;
}

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

.checkout-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.58);
}

.checkout-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22);
}

.checkout-modal__dialog:focus {
  outline: none;
}

.checkout-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.checkout-modal__eyebrow {
  margin-bottom: 3px;
  color: var(--checkout-warm-text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkout-modal__header h2 {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.25;
}

.checkout-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background-color: #fff;
}

.checkout-modal__close:hover {
  color: var(--color-text);
  background-color: var(--color-surface);
}

.checkout-modal__intro {
  margin: 14px 0;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.checkout-modal__bank-box {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--checkout-warm-border);
  border-radius: 12px;
  background-color: #fffaf5;
}

.checkout-modal__bank-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-bottom: 1px solid var(--checkout-warm-border);
  font-size: 0.82rem;
}

.checkout-modal__bank-row:last-child {
  border-bottom: 0;
}

.checkout-modal__bank-row span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.checkout-modal__bank-row strong {
  color: var(--color-text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.checkout-modal__note {
  margin: 12px 0 16px;
  padding: 10px 12px;
  border: 1px solid var(--checkout-green-border);
  border-radius: 10px;
  background-color: var(--checkout-green);
  color: var(--checkout-green-text);
  font-size: 0.8rem;
  line-height: 1.45;
}

.checkout-modal__action {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.84rem;
}

/* Checkout mobile sticky CTA */
.checkout-sticky {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1.5px solid var(--color-border);
  padding: 12px 16px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.checkout-sticky.is-hidden {
  transform: translateY(100%);
}

.checkout-sticky__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-sticky__price {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.checkout-sticky__total {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
}

.checkout-sticky__label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.checkout-sticky .btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.85rem;
}

/* Desktop checkout layout */
@media (min-width: 768px) {
  .checkout {
    padding-bottom: 48px;
  }

  .checkout-steps {
    gap: 0;
  }

  .checkout-steps__content {
    display: block;
  }

  .checkout-steps__line {
    min-width: 60px;
  }

  .checkout-layout {
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    justify-content: center;
  }

  .checkout-main {
    flex: 0 1 690px;
    order: 1;
    min-width: 0;
    max-width: 690px;
  }

  .checkout-sidebar {
    width: 340px;
    flex-shrink: 0;
    order: 2;
  }

  .checkout-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .checkout-sticky {
    display: none;
  }
}

@media (min-width: 992px) {
  .checkout-sidebar {
    width: 350px;
  }

  .checkout-summary__img {
    width: 100px;
    height: 76px;
  }
}

@media (max-width: 767px) {
  .checkout {
    padding-bottom: 100px;
  }

  .checkout-summary__pricing,
  .checkout-summary__plan,
  .checkout-summary__bank {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .checkout-fieldset {
    padding: 18px;
  }

  .checkout-summary {
    padding: 18px;
  }

  .hotel-traveler-card__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Legal Pages (Terms / Cancellation) ---- */
.legal-page {
  padding: 32px 0 64px;
}

.legal-page__content {
  max-width: 780px;
  margin: 0 auto;
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.legal-page__content h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}

.legal-page__updated {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.legal-page__content h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 28px 0 10px;
}

.legal-page__content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 12px;
}

.legal-page__contact {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 16px 0 28px;
}

.legal-page__contact p {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-page__contact i {
  color: var(--color-primary);
  font-size: 18px;
}

.legal-page__contact a {
  color: var(--color-primary);
  font-weight: 600;
}

.legal-page__contact a:hover {
  text-decoration: underline;
}

.legal-page .btn {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .legal-page__content {
    padding: 24px 20px;
  }
  .legal-page__content h1 {
    font-size: 1.4rem;
  }
}

/* ---- Static Page (Help / FAQs) ---- */
.static-page {
  padding: 32px 0 80px;
}

.static-page__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.static-page__header h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.static-page__intro {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Help page */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.help-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.help-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 1.4rem;
}

.help-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.help-card p {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.static-page__section {
  max-width: 640px;
  margin: 0 auto 48px;
}

.static-page__section h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.help-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.help-steps__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.help-steps__num {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.help-steps__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.help-steps__item p {
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

/* FAQs page */
.faqs-list {
  max-width: 720px;
  margin: 0 auto 48px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }

.faq-item__q:hover {
  background: #f9fafb;
}

.faq-item__chevron {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(90deg);
}

.faq-item__a {
  padding: 0 18px 16px 44px;
}

.faq-item__a p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.static-page__cta {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fafbfc;
}

.static-page__cta p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
  .static-page__header h1 {
    font-size: 1.4rem;
  }
}

/* Help Center ticket page */
.help-center {
  background: #f6f8fb;
  color: var(--color-text);
}

.help-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #111827;
}

.help-hero__slides,
.help-hero__slide,
.help-hero__shade {
  position: absolute;
  inset: 0;
}

.help-hero__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: helpHeroFade 15s infinite;
}

.help-hero__slide--two {
  animation-delay: 5s;
}

.help-hero__slide--three {
  animation-delay: 10s;
}

.help-hero__shade {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.58) 48%, rgba(17, 24, 39, 0.22) 100%);
  z-index: 1;
}

.help-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  min-height: 330px;
  padding-top: 22px;
  padding-bottom: 34px;
}

.help-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.help-hero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 700;
}

.help-hero__content {
  max-width: 660px;
}

.help-hero__permalink {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(124, 77, 255, 0.92);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
}

.help-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.help-hero p {
  max-width: 540px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.55;
}

.help-intro {
  max-width: 900px;
  padding: 24px 0 18px;
}

.help-intro p {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.72;
}

.help-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 70px;
}

.help-main,
.help-ticket,
.help-side-block {
  min-width: 0;
}

.help-ticket {
  padding: 28px;
  border: 1px solid #dfe5ec;
  background: #fff;
  box-shadow: none;
}

.help-section-head {
  margin-bottom: 22px;
}

.help-section-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.help-section-head h2 {
  margin: 0;
  color: #111827;
  font-size: 1.45rem;
  line-height: 1.15;
}

.help-section-head p {
  max-width: 620px;
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.55;
}

.help-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid #dfe5ec;
  background: #f8fafc;
  color: #334155;
  box-shadow: none;
}

.help-alert i {
  margin-top: 2px;
  font-size: 20px;
}

.help-alert strong,
.help-alert span {
  display: block;
}

.help-alert strong {
  color: #111827;
  font-size: 0.9rem;
}

.help-alert span {
  margin-top: 2px;
  color: #475569;
  font-size: 0.84rem;
}

.help-alert--success {
  border-color: #cbded5;
  background: #f6faf8;
}

.help-alert--success i {
  color: #0f7a4f;
}

.help-alert--error {
  border-color: #efc8c3;
  background: #fff7f6;
}

.help-alert--error i {
  color: #b9271f;
}

.help-ticket-form {
  display: grid;
  gap: 16px;
}

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

.help-field {
  display: grid;
  gap: 7px;
  color: #111827;
  font-size: 0.82rem;
  font-weight: 800;
}

.help-field input,
.help-field select,
.help-field textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: 0;
  background: #fff;
  color: #111827;
  font: inherit;
  font-weight: 500;
  box-shadow: none;
}

.help-field input,
.help-field select {
  height: 44px;
  padding: 0 12px;
}

.help-field textarea {
  min-height: 128px;
  padding: 12px;
  resize: vertical;
}

.help-field input:focus,
.help-field select:focus,
.help-field textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: none;
}

.help-recaptcha {
  margin: 2px 0 0;
}

.help-ticket-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.help-submit {
  min-height: 44px;
  border-radius: 0;
  box-shadow: none;
}

.help-submit:hover,
.help-submit:focus-visible {
  box-shadow: none;
}

.help-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
}

.help-sidebar {
  position: relative;
}

.help-sidebar__inner {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 16px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.help-side-block {
  border: 1px solid #dfe5ec;
  background: #fff;
  padding: 18px;
  box-shadow: none;
}

.help-side-block h2 {
  margin: 0 0 13px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.2;
}

.help-contact-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.45;
}

.help-contact-list i {
  color: var(--color-primary-dark);
  font-size: 18px;
  margin-top: 1px;
}

.help-contact-list a {
  color: #111827;
  font-weight: 800;
}

.help-map {
  overflow: hidden;
  border: 1px solid #dfe5ec;
  background: #f8fafc;
}

.help-map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
}

.help-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #111827;
  font-size: 0.86rem;
  font-weight: 900;
}

.help-side-scroll {
  display: grid;
  gap: 10px;
  max-height: none;
  overflow: visible;
  padding-right: 4px;
}

.help-action-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 8px;
  border: 1px solid #dfe5ec;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: none;
}

.help-action-card:hover {
  border-color: #111827;
  text-decoration: none;
}

.help-action-card img {
  width: 82px;
  height: 66px;
  object-fit: cover;
}

.help-action-card strong,
.help-action-card small {
  display: block;
}

.help-action-card strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.help-action-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.35;
}

@keyframes helpHeroFade {
  0%, 100% { opacity: 0; }
  5%, 31% { opacity: 1; }
  36% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .help-hero__slide {
    animation: none;
  }
  .help-hero__slide--one {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .help-layout {
    grid-template-columns: 1fr;
  }
  .help-sidebar__inner {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .help-hero,
  .help-hero__inner {
    min-height: 300px;
  }
  .help-hero__shade {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.76) 0%, rgba(17, 24, 39, 0.52) 100%);
  }
  .help-hero h1 {
    font-size: 2rem;
  }
  .help-intro {
    padding: 20px 0 14px;
  }
  .help-layout {
    gap: 18px;
    padding-bottom: 54px;
  }
  .help-ticket {
    padding: 20px;
  }
  .help-form-grid {
    grid-template-columns: 1fr;
  }
  .help-ticket-form__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .help-submit,
  .help-whatsapp-link {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ professional page */
.faq-center {
  background: #f6f8fb;
  color: var(--color-text);
}

.faq-hero .help-hero__content {
  max-width: 720px;
}

.faq-hero h1 {
  max-width: 13ch;
}

.faq-intro {
  max-width: 930px;
  padding: 24px 0 16px;
}

.faq-intro p {
  margin: 0;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.72;
}

.faq-topic-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.faq-topic-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  border: 1px solid #dfe5ec;
  background: #fff;
  padding: 14px;
  color: #111827;
  text-decoration: none;
  box-shadow: none;
}

.faq-topic-card:hover {
  border-color: #111827;
  text-decoration: none;
}

.faq-topic-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dfe5ec;
  color: var(--color-primary-dark);
  font-size: 20px;
}

.faq-topic-card strong,
.faq-topic-card small {
  display: block;
}

.faq-topic-card strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.faq-topic-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  padding-bottom: 70px;
}

.faq-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.faq-block {
  border: 1px solid #dfe5ec;
  background: #fff;
  padding: 24px;
  box-shadow: none;
}

.faq-block__head {
  margin-bottom: 14px;
}

.faq-block__head span {
  display: block;
  margin-bottom: 5px;
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-block__head h2 {
  margin: 0;
  color: #111827;
  font-size: 1.22rem;
  line-height: 1.2;
}

.faq-list-pro {
  display: grid;
  gap: 8px;
}

.faq-item-pro {
  border: 1px solid #dfe5ec;
  background: #fff;
  box-shadow: none;
}

.faq-item-pro[open] {
  border-color: #c7d0dd;
}

.faq-item-pro summary {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px 15px;
  color: #111827;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item-pro summary::-webkit-details-marker {
  display: none;
}

.faq-item-pro summary::marker {
  display: none;
  content: '';
}

.faq-item-pro summary i {
  margin-top: 2px;
  color: #64748b;
  font-size: 17px;
  transition: transform 0.18s ease;
}

.faq-item-pro[open] summary i {
  transform: rotate(90deg);
  color: var(--color-primary-dark);
}

.faq-item-pro div {
  padding: 0 15px 15px 45px;
}

.faq-item-pro p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.68;
}

.faq-sidebar {
  position: relative;
}

.faq-sidebar__inner {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 16px;
  overflow: visible;
}

.faq-side-block {
  border: 1px solid #dfe5ec;
  background: #fff;
  padding: 18px;
  box-shadow: none;
}

.faq-side-block h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.2;
}

.faq-side-block p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}

.faq-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none;
}

.faq-side-btn:hover {
  color: #fff;
  text-decoration: none;
  background: #0b1220;
}

.faq-product-links {
  display: grid;
  gap: 10px;
}

.faq-product-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 8px;
  border: 1px solid #dfe5ec;
  background: #fff;
  color: #111827;
  text-decoration: none;
  box-shadow: none;
}

.faq-product-card:hover {
  border-color: #111827;
  text-decoration: none;
}

.faq-product-card img {
  width: 82px;
  height: 66px;
  object-fit: cover;
}

.faq-product-card strong,
.faq-product-card small {
  display: block;
}

.faq-product-card strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.faq-product-card small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.35;
}

.faq-contact-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #334155;
  font-size: 0.88rem;
}

.faq-contact-list i {
  color: var(--color-primary-dark);
  font-size: 18px;
}

.faq-contact-list a {
  color: #111827;
  font-weight: 850;
}

@media (max-width: 980px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar__inner {
    position: static;
  }
}

@media (max-width: 720px) {
  .faq-topic-strip {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    gap: 18px;
    padding-bottom: 54px;
  }
  .faq-block {
    padding: 18px;
  }
  .faq-item-pro summary {
    font-size: 0.9rem;
  }
  .faq-item-pro div {
    padding-left: 15px;
  }
}

/* Travel Blog listing and articles */
.travel-blog-page {
  background: #f6f8fb;
  color: var(--color-text);
}

.blog-pro-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111827;
}

.blog-pro-hero--article {
  min-height: 420px;
}

.blog-pro-hero__image,
.blog-pro-hero__shade {
  position: absolute;
  inset: 0;
}

.blog-pro-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-pro-hero__shade {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.58) 48%, rgba(17, 24, 39, 0.18) 100%);
}

.blog-pro-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  min-height: inherit;
  padding-top: 22px;
  padding-bottom: 38px;
}

.blog-pro-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.blog-pro-hero__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 800;
}

.blog-pro-hero__content {
  max-width: 760px;
}

.blog-pro-hero__content > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(124, 77, 255, 0.92);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 900;
}

.blog-pro-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-family: 'Creato Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-pro-hero p {
  max-width: 590px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.blog-pro-hero__meta,
.blog-pro-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-pro-hero__meta {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.blog-pro-hero__meta span,
.blog-pro-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-pro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  padding: 30px 0 72px;
}

.blog-pro-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.blog-pro-featured,
.blog-pro-list,
.blog-pro-article {
  border: 1px solid #dfe5ec;
  background: #fff;
  box-shadow: none;
}

.blog-pro-featured {
  padding: 18px;
}

.blog-pro-featured__card {
  display: grid;
  grid-template-columns: minmax(260px, 45%) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.blog-pro-featured__media {
  min-height: 280px;
  overflow: hidden;
}

.blog-pro-featured__media img,
.blog-pro-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-pro-featured__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 8px 6px;
}

.blog-pro-kicker,
.blog-pro-section-head span {
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-pro-featured h2,
.blog-pro-card h3 {
  margin: 0;
  color: #111827;
  font-family: 'Creato Display', sans-serif;
  letter-spacing: 0;
}

.blog-pro-featured h2 {
  max-width: 16ch;
  font-size: 1.75rem;
  line-height: 1.08;
}

.blog-pro-featured h2 a,
.blog-pro-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-pro-featured p,
.blog-pro-card p {
  margin: 0;
  color: #475569;
  line-height: 1.58;
}

.blog-pro-list {
  padding: 22px;
}

.blog-pro-section-head {
  margin-bottom: 16px;
}

.blog-pro-section-head h2 {
  margin: 4px 0 0;
  color: #111827;
  font-size: 1.28rem;
}

.blog-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-pro-card {
  display: grid;
  border: 1px solid #dfe5ec;
  background: #fff;
  box-shadow: none;
}

.blog-pro-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-pro-card__body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.blog-pro-card h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

.blog-pro-card p {
  font-size: 0.86rem;
}

.blog-pro-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #111827;
  font-size: 0.84rem;
  font-weight: 900;
}

.blog-pro-sidebar {
  position: relative;
}

.blog-pro-sidebar__inner {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 16px;
  overflow: visible;
}

.blog-pro-side-block {
  border: 1px solid #dfe5ec;
  background: #fff;
  padding: 18px;
  box-shadow: none;
}

.blog-pro-side-block h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 1rem;
}

.blog-pro-side-block p {
  margin: 0 0 14px;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
}

.blog-pro-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: none;
}

.blog-pro-side-btn:hover {
  color: #fff;
  background: #0b1220;
  text-decoration: none;
}

.blog-pro-product-links,
.blog-pro-latest {
  display: grid;
  gap: 10px;
}

.blog-pro-product-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 8px;
  border: 1px solid #dfe5ec;
  background: #fff;
  color: #111827;
  text-decoration: none;
}

.blog-pro-product-card:hover {
  border-color: #111827;
  text-decoration: none;
}

.blog-pro-product-card img {
  width: 82px;
  height: 66px;
  object-fit: cover;
}

.blog-pro-product-card strong,
.blog-pro-product-card small,
.blog-pro-latest span,
.blog-pro-latest small {
  display: block;
}

.blog-pro-product-card strong,
.blog-pro-latest span {
  color: #111827;
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 900;
}

.blog-pro-product-card small,
.blog-pro-latest small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.35;
}

.blog-pro-latest a {
  padding: 11px 0;
  border-bottom: 1px solid #e5eaf0;
  text-decoration: none;
}

.blog-pro-latest a:last-child {
  border-bottom: 0;
}

.blog-pro-article {
  padding: 30px;
}

.blog-pro-article__content {
  color: #334155;
  font-size: 1rem;
  line-height: 1.82;
}

.blog-pro-article__content p {
  margin: 0 0 18px;
}

.blog-pro-article__content h2,
.blog-pro-article__content h3 {
  color: #111827;
  font-family: 'Creato Display', sans-serif;
  letter-spacing: 0;
  line-height: 1.18;
}

.blog-pro-article__content h2 {
  margin: 34px 0 12px;
  font-size: 1.36rem;
}

.blog-pro-article__content h3 {
  margin: 26px 0 10px;
  font-size: 1.1rem;
}

.blog-pro-article__content ul,
.blog-pro-article__content ol {
  margin: 0 0 18px 22px;
}

.blog-pro-article__content li {
  margin-bottom: 7px;
}

.blog-pro-article__content a {
  color: var(--color-primary-dark);
  font-weight: 900;
}

.blog-pro-article__content .blog-article__backlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 2px 0 18px;
  padding: 10px 12px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  text-decoration: none;
}

.blog-pro-article__content .blog-article__cta-box {
  margin: 30px 0;
  padding: 22px;
  border: 1px solid #dfe5ec;
  background: #f8fafc;
  text-align: left;
  box-shadow: none;
}

.blog-pro-article__content .blog-article__cta-box h3 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .blog-pro-layout {
    grid-template-columns: 1fr;
  }
  .blog-pro-sidebar__inner {
    position: static;
  }
}

@media (max-width: 720px) {
  .blog-pro-hero,
  .blog-pro-hero--article {
    min-height: 320px;
  }
  .blog-pro-hero__shade {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.78) 0%, rgba(17, 24, 39, 0.56) 100%);
  }
  .blog-pro-layout {
    padding: 20px 0 54px;
    gap: 18px;
  }
  .blog-pro-featured__card {
    grid-template-columns: 1fr;
  }
  .blog-pro-featured__media {
    min-height: 220px;
  }
  .blog-pro-grid {
    grid-template-columns: 1fr;
  }
  .blog-pro-list,
  .blog-pro-article {
    padding: 18px;
  }
}

/* ---- Confirmation Page ---- */
.confirmation-page {
  padding: 40px 0 80px;
}

.confirmation-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.confirmation-card__top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 18px;
}

.confirmation-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: #ecfdf5;
  color: #047857;
  font-size: 24px;
  flex-shrink: 0;
}

.confirmation-card__eyebrow {
  color: #047857;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.confirmation-card h1 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.25;
}

.confirmation-card__ref {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.confirmation-card__msg {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.confirmation-card__details {
  text-align: left;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 16px;
}

.confirmation-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 5px 0;
  color: var(--color-text);
}

.confirmation-card__row span:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
}

.confirmation-card__row span:last-child {
  font-weight: 700;
  text-align: right;
}

.confirmation-card__row--status span:last-child {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background-color: #fff7ed;
  color: #9a3412;
  font-size: 0.76rem;
}

.confirmation-card__bank {
  text-align: left;
  background-color: #fffaf5;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--color-text);
}

.confirmation-card__bank strong {
  display: block;
  margin-bottom: 4px;
}

.confirmation-card__bank p {
  margin-bottom: 6px;
  line-height: 1.4;
}

.confirmation-card__bank-info {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin: 12px 0;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  background-color: #fff;
}

.confirmation-card__bank-info div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 11px;
  border-bottom: 1px solid #fed7aa;
}

.confirmation-card__bank-info div:last-child {
  border-bottom: 0;
}

.confirmation-card__bank-info span {
  color: var(--color-text-muted);
  font-weight: 600;
}

.confirmation-card__bank-info strong {
  color: var(--color-text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.confirmation-card__note {
  font-style: italic;
  font-size: 0.8rem;
  color: #9a3412;
}

.confirmation-card__next {
  padding: 14px 16px;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  background-color: #ecfdf5;
  color: #047857;
  margin-bottom: 18px;
}

.confirmation-card__next h2 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.confirmation-card__next ol {
  list-style: decimal;
  padding-left: 18px;
}

.confirmation-card__next li {
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 4px;
}

.confirmation-card .btn {
  margin-top: 8px;
}

.confirmation-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.confirmation-card__actions .btn {
  margin-top: 0;
}

@media (max-width: 767px) {
  .confirmation-card {
    padding: 32px 20px;
  }
  .confirmation-card h1 {
    font-size: 1.3rem;
  }
  .confirmation-card__actions .btn {
    width: 100%;
  }
}

/* =========================================
   Hotel Detail Page
   ========================================= */

.hotel-top-slider {
  margin: 0 0 22px;
}

.hotel-top-slider__viewport {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 1180 / 520;
  border-radius: 10px;
  background: var(--color-dark);
}

.hotel-top-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hotel-top-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hotel-top-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hotel-top-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
}

.hotel-top-slider__nav:hover {
  background: #fff;
  color: var(--color-dark);
}

.hotel-top-slider__nav--prev {
  left: 16px;
}

.hotel-top-slider__nav--next {
  right: 16px;
}

.hotel-top-slider__dots {
  position: absolute;
  left: 28px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 7px;
}

.hotel-top-slider__dots button {
  width: 22px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hotel-top-slider__dots button.is-active {
  background: #fff;
}

.hotel-video-ad {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  width: 284px;
  transform: translateY(-50%);
  border: 1px solid rgba(17, 24, 39, 0.24);
  border-radius: 10px;
  overflow: hidden;
  background: #111827;
}

.hotel-video-ad.is-hidden {
  display: none;
}

.hotel-video-ad__open {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: #fff;
  background: #111827;
  cursor: pointer;
  text-align: left;
}

.hotel-video-ad__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111827;
}

.hotel-video-ad__open span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.78);
  font-size: .72rem;
  font-weight: 800;
}

.hotel-video-ad__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  cursor: pointer;
}

.hotel-video-ad__caption {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  color: #fff;
}

.hotel-video-ad__caption span {
  color: #cbd5e1;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hotel-video-ad__caption strong {
  font-size: .88rem;
  line-height: 1.2;
}

.hotel-video-ad-pill {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 90;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(17, 24, 39, 0.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 9px;
  color: #fff;
  background: #111827;
  transform: translateY(-50%);
  cursor: pointer;
  animation: hotelVideoPulse 1.8s ease-in-out infinite;
}

.hotel-video-ad-pill.is-hidden {
  display: none;
}

.hotel-video-ad-pill i {
  font-size: 1.1rem;
}

.hotel-video-ad-pill span {
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@keyframes hotelVideoPulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.06); }
}

.hotel-video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.82);
}

.hotel-video-modal.is-open {
  display: flex;
}

.hotel-video-modal__dialog {
  width: min(980px, 96vw);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.hotel-video-modal__media {
  display: block;
  width: 100%;
  max-height: 82vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}

.hotel-video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  cursor: pointer;
}

.hotel-head {
  margin-bottom: 24px;
}

.hotel-head__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.hotel-head__top > div:first-child {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}

.hotel-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hotel-title {
  max-width: 100%;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.hotel-subtitle {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hotel-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hotel-meta i {
  font-size: 1rem;
  color: var(--color-primary);
}

.hotel-price-tag {
  text-align: right;
  flex-shrink: 0;
}

.hotel-price-tag__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.hotel-price-tag__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hotel-highlights {
  grid-column: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hotel-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 160px;
}

.hotel-highlight i {
  font-size: 1.1rem;
  color: #16a34a;
  flex-shrink: 0;
}

.hotel-highlight strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.hotel-highlight span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.hotel-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  column-gap: 32px;
  row-gap: 10px;
  align-items: start;
}

.hotel-gallery {
  grid-column: 1;
  min-width: 0;
}

.hotel-gallery__main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
  aspect-ratio: 16 / 11;
  background: #f0f0f0;
  cursor: pointer;
}

.hotel-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text);
  transition: var(--transition);
  z-index: 2;
}

.hotel-gallery__nav:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hotel-gallery__nav--prev { left: 12px; }
.hotel-gallery__nav--next { right: 12px; }

.hotel-gallery__counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.hotel-gallery__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.hotel-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.hotel-gallery__thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: var(--transition);
}

.hotel-gallery__thumb.is-active {
  border-color: var(--color-primary);
}

.hotel-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-layout {
  /* content flows full-width — no sidebar inside */
}

.hotel-content {
  grid-column: 1;
  max-width: 820px;
}

.hotel-section {
  margin-bottom: 28px;
}

.hotel-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.hotel-section p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

.hotel-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.hotel-section-head h2 {
  margin: 0 0 5px;
  padding: 0;
  border: 0;
}

.hotel-section-head p {
  max-width: 640px;
  margin: 0;
  color: var(--color-text-muted);
}

.hotel-link-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.hotel-link-btn i {
  color: var(--color-primary);
  font-size: 1.05rem;
}

.hotel-link-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.hotel-rules {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.hotel-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
}

.hotel-rules li i { color: #dc2626; font-size: 1rem; }

.hotel-host-note {
  padding: 12px 14px;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-host-note i { color: var(--color-primary); font-size: 1.1rem; }

.hotel-access-list {
  list-style: none;
  padding: 0;
}

.hotel-access-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
}

.hotel-access-list li i { color: #16a34a; font-size: 1rem; }

.hotel-bedrooms {
  display: grid;
  gap: 16px;
}

.hotel-bedroom {
  display: flex;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.hotel-bedroom__img {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.hotel-bedroom__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-bedroom__info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hotel-bedroom__bed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.hotel-bedroom__info p {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}

.hotel-amenities-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hotel-amenity-mini {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 650;
  box-shadow: var(--shadow-sm);
}

.hotel-amenity-mini i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 1.05rem;
}

.hotel-amenities-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.58);
}

.hotel-amenities-modal.is-open {
  display: flex;
}

.hotel-amenities-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22);
}

.hotel-amenities-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hotel-amenities-modal__close:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hotel-amenities-modal__head {
  padding-right: 42px;
  margin-bottom: 18px;
}

.hotel-amenities-modal__head h2 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hotel-amenities-modal__head p {
  max-width: 640px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hotel-amenities-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.hotel-amenities-modal__group {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: #fff;
}

.hotel-amenities-modal__group h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.hotel-amenities-modal__group h3 i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-primary-light);
  font-size: 1rem;
}

.hotel-amenities-modal__group ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 2px;
}

.hotel-amenities-modal__group li {
  font-size: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 4px 0;
  color: #3f3f46;
}

.hotel-amenities-modal__group li i {
  margin-top: 2px;
  color: #16a34a;
  font-size: 0.9rem;
}

.hotel-proximity__layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hotel-proximity__map-card,
.hotel-proximity-group {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hotel-proximity__map-card {
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.hotel-proximity__map {
  height: 182px;
  background: var(--color-surface);
}

.hotel-proximity__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.hotel-proximity__map-copy {
  padding: 13px;
}

.hotel-proximity__map-copy h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  font-size: 0.94rem;
  line-height: 1.25;
}

.hotel-proximity__map-copy h3 i {
  color: #dc2626;
  font-size: 1.05rem;
}

.hotel-proximity__map-copy p {
  margin: 0 0 10px;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hotel-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: var(--radius-full);
  background: #dc2626;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.hotel-map-link:hover {
  background: #b91c1c;
  color: #fff;
}

.hotel-proximity__groups {
  display: grid;
  gap: 12px;
}

.hotel-proximity-group {
  padding: 13px;
}

.hotel-proximity-group__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
}

.hotel-proximity-group__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 1.15rem;
}

.hotel-proximity-group__head h3 {
  font-size: 0.96rem;
  line-height: 1.25;
  margin-bottom: 3px;
}

.hotel-proximity-group__head p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.hotel-proximity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 8px;
}

.hotel-proximity-place {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 9px;
  border: 1px solid #edf0f3;
  border-radius: 10px;
  background: #fbfcfd;
  color: var(--color-text);
  transition: var(--transition);
}

.hotel-proximity-place:hover {
  border-color: rgba(220, 38, 38, 0.38);
  background: #fff;
  color: #dc2626;
  box-shadow: var(--shadow-sm);
}

.hotel-proximity-place__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 1rem;
}

.hotel-proximity-place__body {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hotel-proximity-place__body strong {
  overflow-wrap: anywhere;
  font-size: 0.8rem;
  line-height: 1.25;
}

.hotel-proximity-place__body small {
  color: var(--color-text-muted);
  font-size: 0.71rem;
  line-height: 1.25;
}

.hotel-proximity-place__route {
  margin-left: auto;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: #dc2626;
  background: #fef2f2;
}

.hotel-proximity-place__img {
  width: 90px;
  height: 64px;
  flex: 0 0 90px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
}

.hotel-proximity-place__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.hotel-proximity-place:hover .hotel-proximity-place__img img {
  transform: scale(1.05);
}

.proximity-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.proximity-lightbox.is-open {
  display: flex;
}

.proximity-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.proximity-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}

.proximity-lightbox__close:hover {
  background: rgba(255,255,255,0.3);
}

.hotel-booking-reviews__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.hotel-booking-reviews__source {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-booking-reviews__head h2 {
  margin-bottom: 6px;
}

.hotel-booking-reviews__head p {
  max-width: 620px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hotel-booking-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-dark);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.hotel-booking-reviews__link:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.hotel-booking-reviews__side {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}

.hotel-booking-mini-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 200px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.hotel-booking-mini-rating div {
  min-width: 0;
  flex: 1;
}

.hotel-booking-mini-rating strong,
.hotel-booking-mini-rating span {
  display: block;
  line-height: 1.2;
}

.hotel-booking-mini-rating strong {
  color: var(--color-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.hotel-booking-mini-rating span {
  margin-top: 2px;
  color: var(--color-text-muted);
  font-size: 0.76rem;
}

.hotel-booking-mini-rating b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 5px;
  color: #fff;
  background: #0648a8;
  font-size: 1rem;
  font-weight: 800;
}

.hotel-booking-quality {
  flex: 1 1 280px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.hotel-booking-quality__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hotel-booking-quality__head strong {
  color: var(--color-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.hotel-booking-quality__icons {
  display: inline-flex;
  gap: 3px;
}

.hotel-booking-quality__icons i {
  width: 15px;
  height: 15px;
  border: 1px solid #c99500;
  border-radius: 3px;
  background: #f6c343;
  position: relative;
}

.hotel-booking-quality__icons i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: #fff;
}

.hotel-booking-quality p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hotel-booking-reviews__panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.hotel-booking-reviews__score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--color-dark);
}

.hotel-booking-reviews__score strong {
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 800;
}

.hotel-booking-reviews__score span {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hotel-booking-reviews__score small {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 0.78rem;
}

.hotel-booking-reviews__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  align-content: center;
}

.hotel-booking-review-metric {
  display: grid;
  grid-template-columns: 96px 1fr 34px;
  gap: 8px;
  align-items: center;
  font-size: 0.79rem;
}

.hotel-booking-review-metric span {
  color: var(--color-text-muted);
}

.hotel-booking-review-metric strong {
  color: var(--color-dark);
  font-size: 0.85rem;
  text-align: right;
}

.hotel-booking-review-metric__track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-border);
}

.hotel-booking-review-metric__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
}

.hotel-booking-review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hotel-booking-review-card {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.hotel-booking-review-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.hotel-booking-review-card__guest {
  display: flex;
  gap: 9px;
  min-width: 0;
}

.hotel-booking-review-card__guest > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.hotel-booking-review-card__guest strong,
.hotel-booking-review-card__guest small {
  display: block;
}

.hotel-booking-review-card__guest strong {
  color: var(--color-dark);
  font-size: 0.88rem;
}

.hotel-booking-review-card__guest small {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.hotel-booking-review-card__top b {
  min-width: 42px;
  padding: 4px 7px;
  border-radius: 6px;
  color: #fff;
  background: var(--color-primary);
  font-size: 0.82rem;
  line-height: 1;
  text-align: center;
}

.hotel-booking-review-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.86rem;
  line-height: 1.58;
}

.hotel-reviews-summary {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.hotel-reviews-summary__score {
  text-align: center;
  min-width: 100px;
}

.hotel-reviews-summary__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  display: block;
  line-height: 1;
}

.hotel-reviews-summary__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 4px 0;
  color: #f59e0b;
  font-size: 0.85rem;
}

.hotel-reviews-summary__score > span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.hotel-reviews-summary__bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-review-bar {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
}

.hotel-review-bar span:first-child { color: var(--color-text-muted); }
.hotel-review-bar span:last-child { text-align: right; color: var(--color-text-muted); }

.hotel-review-bar__track {
  height: 8px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.hotel-review-bar__fill {
  height: 100%;
  background: #f59e0b;
  border-radius: var(--radius-full);
}

.hotel-reviews-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.hotel-reviews-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

.hotel-reviews-cat strong {
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.hotel-reviews-list {
  display: grid;
  gap: 14px;
}

.hotel-review-card {
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.hotel-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.hotel-review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hotel-review-card__author strong {
  display: block;
  font-size: 0.85rem;
}

.hotel-review-card__date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.hotel-review-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.hotel-review-card p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.hotel-sidebar {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: 100%;
  align-self: stretch;
  position: relative;
  padding-bottom: 2px;
}

.hotel-booking-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.hotel-booking-card.is-fixed {
  position: fixed;
  top: var(--hotel-sticky-top, calc(var(--header-height) + 18px));
  left: var(--hotel-fixed-left);
  width: var(--hotel-fixed-width);
  z-index: 80;
  max-height: none;
  overflow: visible;
}

.hotel-booking-card.is-stopped {
  position: absolute;
  top: var(--hotel-stop-top, 0);
  left: 0;
  width: 100%;
  z-index: 1;
}

.hotel-booking-card__price {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hotel-booking-card__amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
}

.hotel-booking-card__per {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hotel-booking-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-booking-form__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.hotel-booking-form .date-picker__display {
  height: 34px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.hotel-booking-form .date-picker__icon {
  font-size: 14px;
}

.hotel-booking-form .date-picker__text {
  font-size: 0.78rem;
}

.hotel-booking-form .date-picker__arrow {
  font-size: 12px;
}

.hotel-booking-form__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-text);
}

.hotel-booking-form__input {
  width: 100%;
  height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.hotel-booking-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.1);
}

.hotel-booking-form__select {
  appearance: auto;
  cursor: pointer;
}

.hotel-booking-form__textarea {
  resize: vertical;
  min-height: 46px;
}

.hotel-booking-form__optional {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.hotel-booking-form__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 0.9rem;
}

.hotel-booking-form__total-amount {
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.hotel-booking-form__cta {
  margin-top: 2px;
  padding: 10px 16px;
}

.hotel-booking-form__error {
  padding: 8px 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #b91c1c;
  font-size: 0.82rem;
}

.hotel-external-booking {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.hotel-external-booking__title {
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hotel-external-booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.hotel-external-booking__link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.hotel-external-booking__link i {
  font-size: 16px;
}

.hotel-external-booking__link:hover {
  border-color: var(--color-text);
  color: #fff;
  background: var(--color-text);
  text-decoration: none;
}

.hotel-external-booking__link--airbnb {
  border-color: rgba(217, 48, 37, 0.35);
  color: var(--color-primary-dark);
}

.hotel-external-booking__link--airbnb:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
}

.hotel-booking-card__info {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-booking-card__info p {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-booking-card__info i {
  color: var(--color-primary);
  font-size: 0.9rem;
}

.confirmation-card__icon--clock i {
  font-size: 2rem;
  color: #f59e0b;
}

.confirmation-card__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #9a3412;
  line-height: 1.4;
}

.confirmation-card__notice i {
  font-size: 1.2rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 1px;
}

.confirmation-card__notice p { margin: 0; }

/* Share / Save actions */
.hotel-actions {
  grid-column: 1;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.hotel-actions__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: var(--transition);
}

.hotel-actions__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hotel-actions__btn--save.is-saved {
  border-color: #e11d48;
  color: #e11d48;
}

.hotel-actions__btn--save.is-saved i {
  color: #e11d48;
}

/* Captcha placeholder */
.hotel-captcha {
  margin-bottom: 2px;
}

.hotel-captcha__placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: #166534;
}

.hotel-captcha__placeholder i {
  font-size: 1.1rem;
  color: #22c55e;
}

/* Lightbox */
.hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.hotel-lightbox.is-open {
  display: flex;
}

.hotel-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.hotel-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hotel-lightbox__close:hover {
  background: rgba(255,255,255,0.3);
}

.hotel-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hotel-lightbox__nav:hover {
  background: rgba(255,255,255,0.3);
}

.hotel-lightbox__nav--prev { left: 20px; }
.hotel-lightbox__nav--next { right: 20px; }

.hotel-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  background: rgba(0,0,0,0.4);
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

@media (max-width: 991px) {
  .hotel-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hotel-gallery {
    order: 1;
    grid-column: 1;
    margin-bottom: 0;
  }
  .hotel-sidebar {
    order: 2;
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    position: static;
    padding-bottom: 0;
  }
  .hotel-actions {
    order: 3;
  }
  .hotel-highlights {
    order: 4;
  }
  .hotel-content {
    order: 5;
    max-width: none;
  }
  .hotel-booking-card {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    border: 1px solid var(--color-border);
  }
  .hotel-proximity__layout {
    grid-template-columns: 1fr;
  }
  .hotel-proximity__map-card {
    position: static;
  }
  .hotel-amenities-modal__grid {
    grid-template-columns: 1fr;
  }
  .hotel-video-ad {
    top: auto;
    right: 12px;
    bottom: 88px;
    width: 210px;
    transform: none;
  }
  .hotel-video-ad-pill {
    top: auto;
    right: 14px;
    bottom: 92px;
    transform: none;
  }
  @keyframes hotelVideoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
  }
}

@media (max-width: 767px) {
  .hotel-top-slider {
    margin-bottom: 18px;
  }
  .hotel-top-slider__viewport {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
  }
  .hotel-top-slider__nav {
    width: 34px;
    height: 34px;
  }
  .hotel-top-slider__nav--prev {
    left: 12px;
  }
  .hotel-top-slider__nav--next {
    right: 12px;
  }
  .hotel-top-slider__dots {
    left: 18px;
    bottom: 11px;
  }
  .hotel-video-ad {
    top: auto;
    right: 12px;
    bottom: 88px;
    width: 172px;
    transform: none;
    border-radius: 8px;
  }
  .hotel-video-ad__close {
    width: 24px;
    height: 24px;
    top: 6px;
    right: 6px;
  }
  .hotel-video-ad__caption {
    padding: 8px;
  }
  .hotel-video-ad__open span {
    left: 8px;
    bottom: 8px;
    padding: 6px 8px;
    font-size: .64rem;
  }
  .hotel-video-ad__caption span {
    font-size: .58rem;
  }
  .hotel-video-ad__caption strong {
    font-size: .76rem;
  }
  .hotel-video-ad-pill {
    width: 62px;
    height: 62px;
    right: 12px;
    bottom: 94px;
  }
  .hotel-video-modal {
    padding: 12px;
  }
  .hotel-video-modal__close {
    top: 12px;
    right: 12px;
  }
  .hotel-title { font-size: 1.25rem; }
  .hotel-head__top { flex-direction: column; }
  .hotel-price-tag { text-align: left; }
  .hotel-highlights { flex-direction: column; }
  .hotel-highlight { min-width: auto; }
  .hotel-gallery__main { aspect-ratio: 4 / 3; }
  .hotel-gallery__thumb { width: 64px; height: 48px; }
  .hotel-bedroom { flex-direction: column; }
  .hotel-bedroom__img { width: 100%; height: 160px; }
  .hotel-reviews-summary { flex-direction: column; align-items: center; }
  .hotel-reviews-summary__bars { width: 100%; }
  .hotel-reviews-categories { grid-template-columns: repeat(2, 1fr); }
  .hotel-review-bar {
    grid-template-columns: 50px 1fr 30px;
    font-size: 0.75rem;
  }
  .hotel-review-bar__track {
    height: 10px;
  }
  .hotel-section-head {
    flex-direction: column;
    align-items: stretch;
  }
  .hotel-link-btn {
    width: 100%;
  }
  .hotel-amenities-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hotel-booking-reviews__head,
  .hotel-booking-reviews__panel,
  .hotel-booking-review-cards {
    grid-template-columns: 1fr;
  }
  .hotel-booking-reviews__head {
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
  }
  .hotel-booking-reviews__side {
    flex-direction: column;
    width: 100%;
  }
  .hotel-booking-reviews__link {
    width: 100%;
    justify-content: center;
  }
  .hotel-booking-reviews__score {
    min-height: auto;
  }
  .hotel-booking-reviews__metrics {
    grid-template-columns: 1fr;
  }
  .hotel-booking-review-metric {
    grid-template-columns: 92px 1fr 32px;
  }
  .hotel-proximity-list {
    grid-template-columns: 1fr;
  }
  .hotel-proximity-place__img {
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
  }
  .hotel-amenities-modal {
    padding: 14px;
  }
  .hotel-amenities-modal__panel {
    max-height: calc(100vh - 28px);
    padding: 18px;
    border-radius: var(--radius-md);
  }
  .hotel-booking-form__dates { grid-template-columns: 1fr; }
}

.hotel-book-now-bar {
  display: none;
}

@media (max-width: 767px) {
  .hotel-book-now-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 10px 16px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    justify-content: center;
  }
  .hotel-book-now-bar__btn {
    width: 100%;
    padding: 13px 22px;
    border: none;
    border-radius: var(--radius-full);
    background: #dc2626;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .hotel-book-now-bar__btn:active {
    opacity: 0.85;
  }
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hotel-amenities-preview { grid-template-columns: 1fr; }
  .hotel-reviews-categories { grid-template-columns: 1fr; }
  .hotel-reviews-summary { flex-direction: column; align-items: center; }
  .hotel-reviews-summary__bars { width: 100%; }
}


/* ═══════════════════════════════════════════
   FOOTER — visitAgadirCity
   ═══════════════════════════════════════════ */

.footer {
  margin-top: auto;
  font-family: var(--font-body, 'Inter', sans-serif);
  background: #1e1230;
  color: #b8a9d4;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ── TRIP LINKS STRIP ─────────────────────── */
.footer__trips-strip {
  background: #160d24;
  border-bottom: 1px solid #2d1f45;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.footer__trips-strip::-webkit-scrollbar { display: none; }

.footer__trips-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  white-space: nowrap;
}

.footer__trips-label {
  color: #7c4dff;
  font-size: 14px;
  flex-shrink: 0;
}

.footer__trip-chip {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(124,77,255,0.1);
  color: #b8a9d4;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.footer__trip-chip:hover {
  background: rgba(124,77,255,0.2);
  color: #fff;
  border-color: rgba(124,77,255,0.3);
}

.footer__trip-chip--all {
  background: var(--color-primary, #7c4dff);
  color: #fff;
  font-weight: 600;
}

.footer__trip-chip--all:hover {
  background: #5c2fd4;
}

/* ── MAIN FOOTER ──────────────────────────── */
.footer__main {
  padding: 40px 0 32px;
}

.footer__main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAV COLUMNS ──────────────────────────── */
.footer__nav-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__nav-title {
  font-family: var(--font-heading, 'Georgia', serif);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 16px;
  color: #d0c4e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-list li {
  margin-bottom: 10px;
}

.footer__nav-list a {
  color: #8b78a6;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer__nav-list a:hover {
  color: #fff;
}

.footer__nav-list--contact li {
  color: #8b78a6;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__nav-list--contact i {
  color: var(--color-primary, #7c4dff);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.footer__nav-list--contact a {
  display: inline;
}

/* ── DIVIDER ──────────────────────────────── */
.footer__divider {
  border: none;
  border-top: 1px solid #2d1f45;
  margin: 24px 0;
}

/* ── BOTTOM ROW: logo + copyright + payment ─ */
.footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.footer__logo-img {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  font-family: 'Retro Vintage', var(--font-heading);
  font-size: 22px;
  color: #d0c4e8;
}

.footer__bottom-copy {
  text-align: center;
  flex: 1;
}

.footer__bottom-copy p {
  margin: 0;
  color: #6a5787;
  font-size: 13px;
}

.footer__copy-sub {
  margin-top: 4px !important;
  font-size: 12px !important;
  color: #5a4575 !important;
}

.footer__copy-sub i {
  color: var(--color-primary, #7c4dff);
  font-size: 11px;
}

.footer__copy-sub a {
  color: #b8a9d4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer__copy-sub a:hover {
  color: #fff;
}

.footer__payment-img {
  height: 26px;
  width: auto;
  opacity: 0.5;
}

/* ── FINAL ROW: social + newsletter ────────── */
.footer__final-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(124,77,255,0.15);
  color: var(--color-primary, #7c4dff);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.footer__social-btn:hover {
  background: var(--color-primary, #7c4dff);
  color: #fff;
}

.footer__nl-form {
  display: flex;
  gap: 0;
  max-width: 300px;
}

.footer__nl-input {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid #2d1f45;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,0.05);
  color: #d0c4e8;
  font-size: 13px;
  outline: none;
}

.footer__nl-input::placeholder { color: #6a5787; }

.footer__nl-input:focus {
  border-color: var(--color-primary, #7c4dff);
}

.footer__nl-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 0 8px 8px 0;
  background: var(--color-primary, #7c4dff);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.footer__nl-btn:hover {
  background: #5c2fd4;
}

/* ── FOOTER RESPONSIVE ────────────────────── */
@media (max-width: 960px) {
  .footer__nav-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__final-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .footer__nav-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__trips-inner {
    padding: 10px 16px;
  }
  .footer__nl-form {
    max-width: 100%;
    width: 100%;
  }
}

/* Footer professional rebuild */
.footer {
  margin-top: auto;
  padding: 32px 0 22px;
  background: #f2eaff;
  color: #1f1630;
  font-family: inherit;
}

.footer .container {
  max-width: 1180px;
}

.footer__panel {
  padding: 42px 52px 28px;
  border: 1px solid #eadffd;
  border-radius: 24px;
  background: #fbf7ff;
  box-shadow: 0 18px 46px rgba(66, 46, 101, 0.08);
}

.footer__brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  overflow: hidden;
}

.footer__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer__brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer__brand-name {
  color: #191326;
  font-family: 'Retro Vintage', 'Nechlas Logo', 'Creato Display', sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer__brand-sub {
  margin-top: 5px;
  color: #6f647a;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer__tagline {
  max-width: 420px;
  margin: 0;
  color: #5f536f;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.65;
}

.footer__top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 36px;
  margin-bottom: 32px;
}

.footer__connect,
.footer__blog {
  min-width: 0;
}

.footer__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #241832;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer__hashtag {
  display: inline-flex;
  margin-right: 14px;
  color: var(--color-primary, #7c4dff);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}

.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #4b315f;
  background: rgba(124, 77, 255, 0.08);
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.footer__social-btn:hover {
  color: #fff;
  background: var(--color-primary, #7c4dff);
  transform: translateY(-1px);
}

.footer__blog-link {
  color: #102c21;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(124, 77, 255, 0.28);
  text-underline-offset: 4px;
}

.footer__blog-link:hover {
  color: var(--color-primary, #7c4dff);
}

.footer__destinations {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(124, 77, 255, 0.14);
  border-bottom: 1px solid rgba(124, 77, 255, 0.14);
}

.footer__destinations h2,
.footer__col h2,
.footer__licences h2,
.footer__contact-cta h2 {
  margin: 0 0 10px;
  color: #241832;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.footer__destination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  color: #3f314f;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.7;
}

.footer__destination-links a {
  color: inherit;
  text-decoration: none;
}

.footer__destination-links a:hover {
  color: var(--color-primary, #7c4dff);
}

.footer__destination-links a:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px;
  border-radius: 50%;
  background: var(--color-primary, #7c4dff);
  opacity: 0.62;
}

.footer__columns {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.15fr 1.05fr 1.25fr;
  gap: 34px;
  padding: 34px 0 28px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-style: normal;
}

.footer__col h2 {
  margin-bottom: 12px;
}

.footer__col a,
.footer__col span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  color: #2f253d;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer__col span {
  color: #6f647a;
}

.footer__col a:hover {
  color: var(--color-primary, #7c4dff);
}

.footer__office a:last-child {
  margin-top: 2px;
  color: var(--color-primary, #7c4dff);
  font-weight: 900;
}

.footer__bottom {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 0.9fr);
  align-items: end;
  gap: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(124, 77, 255, 0.14);
}

.footer__licence-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__licence-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #2f1f46;
  box-shadow: none;
}

.footer__licence-icons i {
  font-size: 1rem;
}

.footer__contact-cta a {
  color: #2f253d;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(124, 77, 255, 0.3);
  text-underline-offset: 4px;
}

.footer__contact-cta a:hover {
  color: var(--color-primary, #7c4dff);
}

.footer__trust {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.footer__secure-label {
  color: #8b8197;
  font-size: 0.7rem;
  font-weight: 800;
}

.footer__payment-img {
  width: auto;
  height: 20px;
  opacity: 0.72;
}

.footer__tripadvisor-img {
  width: 112px;
  max-height: 74px;
  object-fit: contain;
  opacity: 0.66;
}

.footer__legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(124, 77, 255, 0.14);
}

.footer__legal-row p {
  margin: 0;
  color: #756b82;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer__credit {
  color: #756b82;
}

.footer__credit a {
  color: var(--color-primary-dark, #5e35b1);
  font-weight: 900;
  text-decoration: none;
}

.footer__credit a:hover {
  color: var(--color-primary, #7c4dff);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer__legal-links a {
  color: #5f536f;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.footer__legal-links a:hover {
  color: var(--color-primary, #7c4dff);
}

@media (max-width: 1024px) {
  .footer__panel {
    padding: 36px 34px 26px;
  }

  .footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer__trust {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 20px 0 14px;
  }

  .footer .container {
    padding: 0 12px;
  }

  .footer__panel {
    padding: 26px 18px 22px;
    border-radius: 18px;
  }

  .footer__brand-row,
  .footer__top-grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .footer__brand-name {
    font-size: 1.38rem;
    white-space: normal;
  }

  .footer__brand-sub {
    font-size: 0.62rem;
  }

  .footer__tagline {
    font-size: 0.82rem;
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
    padding: 26px 0 22px;
  }

  .footer__trust {
    justify-items: start;
  }

  .footer__legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal-links {
    justify-content: flex-start;
  }
}

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

  .footer__destination-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    font-size: 0.8rem;
  }

  .footer__destination-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer__destination-links a:not(:last-child)::after {
    display: none;
  }

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

/* =========================================
   Back to top
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 9990;
  box-shadow: 0 4px 16px rgba(124,77,255,0.3);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #5c2fd4;
  transform: translateY(-2px);
}

/* =========================================
   About Us — Home section
   ========================================= */
/* =========================================
   Hotel CTA - Home section
   ========================================= */
.hotel-cta {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f6ff 100%);
  overflow: hidden;
}

.hotel-cta__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hotel-cta__text {
  min-width: 0;
}

.hotel-cta__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-cta__heading {
  max-width: 520px;
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.hotel-cta__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hotel-cta__stars {
  color: #f59e0b;
  letter-spacing: 0;
}

.hotel-cta__score {
  color: var(--color-text);
}

.hotel-cta__paragraph {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.hotel-cta__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.hotel-cta__feature {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-surface);
}

.hotel-cta__feature-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.hotel-cta__feature-label {
  min-width: 0;
  color: var(--color-text);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.hotel-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(124, 77, 255, 0.24);
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hotel-cta__btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(124, 77, 255, 0.28);
}

.hotel-cta__btn i {
  font-size: 18px;
}

.hotel-cta__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  height: 430px;
  overflow: hidden;
}

.hotel-cta__marquee {
  overflow: hidden;
  border-radius: 18px;
}

.hotel-cta__marquee-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: hotelCtaScroll 30s linear infinite;
}

.hotel-cta__marquee--right .hotel-cta__marquee-track {
  animation-direction: reverse;
}

.hotel-cta__marquee--slow .hotel-cta__marquee-track {
  animation-duration: 38s;
}

.hotel-cta__pic {
  width: 100%;
  height: 132px;
  flex: 0 0 132px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

@keyframes hotelCtaScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hotel-cta__marquee-track {
    animation: none;
  }
}

@media (max-width: 960px) {
  .hotel-cta__inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hotel-cta__gallery {
    height: 300px;
  }

  .hotel-cta__pic {
    height: 124px;
    flex-basis: 124px;
  }
}

@media (max-width: 620px) {
  .hotel-cta {
    padding: 44px 0;
  }

  .hotel-cta__heading {
    font-size: 1.8rem;
  }

  .hotel-cta__inner {
    width: min(100% - 24px, 1180px);
    padding: 20px;
    border-radius: 18px;
  }

  .hotel-cta__features {
    grid-template-columns: 1fr;
  }

  .hotel-cta__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 250px;
  }

  .hotel-cta__marquee--slow {
    display: none;
  }
}

/* =========================================
   Category Grid - Home section
   ========================================= */
.cat-grid {
  padding: 64px 0;
  background: #fff;
}

.cat-grid .section-header {
  margin-bottom: 28px;
}

.cat-grid__wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.cat-grid__item {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.cat-grid__item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 77, 255, 0.28);
  box-shadow: var(--shadow-md);
}

.cat-grid__img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cat-grid__item:hover .cat-grid__img {
  transform: scale(1.04);
}

.cat-grid__overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.72) 100%);
}

.cat-grid__name {
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

.cat-grid__slug {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 960px) {
  .cat-grid__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cat-grid {
    padding: 48px 0;
  }

  .cat-grid__wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cat-grid__item,
  .cat-grid__img {
    min-height: 220px;
  }
}

/* =========================================
   About Us + Quick Booking - Home
   ========================================= */
.about-us-home {
  --about-violet: var(--color-primary, #7c4dff);
  --about-violet-dark: var(--color-primary-dark, #5e35b1);
  --about-violet-soft: var(--color-primary-light, #ede7f6);
  --about-green: #047857;
  padding: 64px 0 70px;
  background: #f6f2ff;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(124, 77, 255, 0.1) 1.2px, transparent 1.6px),
    linear-gradient(180deg, #fbfaff 0%, #f6f2ff 48%, #ffffff 100%);
  background-size: 36px 36px, 100% 100%;
}

.about-us-home__layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-us-home__story {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.about-us-home__media {
  margin: 0;
  overflow: visible;
}

.about-us-home__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 42px rgba(76, 29, 149, 0.14);
}

.about-us-home__media figcaption {
  margin-top: 10px;
  padding: 0 2px;
  color: #5b6474;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.about-us-home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 0;
}

.about-us-home__heading {
  max-width: 720px;
  margin: 0;
  color: #111827;
  font-family: inherit;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-us-home__text {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
}

.about-us-home__proof {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
}

.about-us-home__proof li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.about-us-home__proof li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--about-violet);
  font-size: 18px;
}

.about-us-home__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 6px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.about-us-home__link:hover {
  gap: 12px;
  color: var(--about-violet-dark);
}

.about-us-home__link i {
  color: var(--about-violet);
  font-size: 16px;
  transition: transform var(--transition);
}

.about-us-home__link:hover i {
  transform: translateX(3px);
}

.quick-book {
  position: static;
  min-width: 0;
  padding: 28px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  box-shadow: none;
}

.quick-book__head {
  max-width: 820px;
  margin-bottom: 18px;
}

.quick-book__head h3 {
  margin: 0 0 6px;
  color: #111827;
  font-family: inherit;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
}

.quick-book__head p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.quick-book__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(124, 77, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(237, 231, 246, 0.62), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 18px 18px, rgba(124, 77, 255, 0.09) 1.2px, transparent 1.6px);
  background-size: 100% 100%, 30px 30px;
  box-shadow: none;
}

.quick-book__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.quick-book__field--full {
  grid-column: 1 / -1;
}

.quick-book__field label {
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.quick-book__field input,
.quick-book__field select,
.quick-book__field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.35;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.quick-book__field input,
.quick-book__field select {
  height: 44px;
  padding: 0 12px;
}

.quick-book__field textarea {
  min-height: 96px;
  padding: 11px 12px;
  resize: vertical;
}

.quick-book__field input::placeholder,
.quick-book__field textarea::placeholder {
  color: #8a94a6;
}

.quick-book__field input:focus,
.quick-book__field select:focus,
.quick-book__field textarea:focus {
  outline: none;
  border-color: var(--about-violet);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.12);
}

.quick-book__form.was-submitted .quick-book__field input:invalid,
.quick-book__form.was-submitted .quick-book__field select:invalid,
.quick-book__form.was-submitted .quick-book__field textarea:invalid {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.quick-book__recaptcha {
  grid-column: 1 / -1;
  min-height: 78px;
  padding: 2px 0 0;
}

.quick-book__recaptcha-error {
  margin: 8px 0 0;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.quick-book__recaptcha-error[hidden] {
  display: none;
}

.form-recaptcha {
  margin: 16px 0 18px;
  min-height: 78px;
}

.form-recaptcha__error {
  margin: 8px 0 0;
  color: #b42318;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-recaptcha__error[hidden] {
  display: none;
}

.quick-book__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: end;
  min-width: 250px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--about-violet);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.quick-book__submit i {
  font-size: 18px;
}

.quick-book__submit:hover {
  background: var(--about-violet-dark);
  box-shadow: 0 12px 24px rgba(124, 77, 255, 0.24);
  transform: translateY(-1px);
}

.quick-book__submit:active {
  transform: translateY(0);
}

.quick-book__success {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(167, 243, 208, 0.7);
  border-radius: 8px;
  background: #ecfdf5;
  color: #065f46;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.quick-book__success[hidden] {
  display: none;
}

.quick-book__success i {
  margin-top: 1px;
  color: var(--about-green);
  font-size: 18px;
  flex: 0 0 auto;
}

.about-us-home [data-reveal] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.about-us-home [data-reveal="fade-left"] {
  transform: translateX(-34px);
}

.about-us-home [data-reveal="fade-in"] {
  transform: translateY(22px);
}

.about-us-home [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .about-us-home__story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-us-home {
    padding: 42px 0 50px;
  }

  .about-us-home__story {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-us-home__content {
    padding: 4px 2px 6px;
  }

  .about-us-home__heading {
    font-size: 23px;
  }

  .quick-book {
    padding: 12px 0 0;
  }

  .quick-book__form {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 10px;
  }

  .quick-book__submit {
    justify-self: stretch;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-us-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   Blog — Home scroller
   ========================================= */
.blog-home {
  padding: 64px 0;
  overflow: hidden;
}

.blog-home__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 20px;
}

.blog-home__header-left {
  flex: 1;
}

.blog-home__title {
  font-family: inherit;
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text, #1a1a1a);
  margin: 0 0 6px;
  letter-spacing: 0;
}

.blog-home__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

.blog-home__arrows {
  display: flex;
  gap: 8px;
}

.blog-home__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-home__arrow:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(124,77,255,0.05);
}

.blog-home__scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px 20px;
  scrollbar-width: none;
}

.blog-home__scroller::-webkit-scrollbar {
  display: none;
}

.blog-home__card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.blog-home__card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: #ddd;
}

.blog-home__card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-home__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-home__card:hover .blog-home__card-img {
  transform: scale(1.05);
}

.blog-home__card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-home__card-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text, #1a1a1a);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: 0;
}

.blog-home__card-excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
}

.blog-home__card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary, #7c4dff);
}

.blog-home__card-arrow i {
  font-size: 14px;
  transition: transform 0.2s;
}

.blog-home__card:hover .blog-home__card-arrow i {
  transform: translateX(3px);
}

/* =========================================
   Pre-footer newsletter
   ========================================= */
.pre-footer-newsletter {
  padding: 36px 0 30px;
  background: #f5f1ff;
}

.pre-footer-newsletter__panel {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 46px;
  border: 1px solid #d9d5e3;
  border-radius: 8px;
  background: #fff;
}

.pre-footer-newsletter__media {
  position: relative;
  width: 240px;
  margin: 0;
  padding: 10px;
  border: 3px solid #3f332f;
  border-radius: 130px 130px 4px 4px;
  background: #fff;
}

.pre-footer-newsletter__media::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(63, 51, 47, 0.55);
  border-radius: 118px 118px 2px 2px;
  pointer-events: none;
}

.pre-footer-newsletter__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 116px 116px 2px 2px;
  object-fit: cover;
  object-position: center;
}

.pre-footer-newsletter__content h2 {
  max-width: 720px;
  margin: 0 0 12px;
  color: #17131d;
  font-family: inherit;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.pre-footer-newsletter__lead {
  max-width: 760px;
  margin: 0 0 16px;
  color: #17131d;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.pre-footer-newsletter__form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 210px;
  gap: 16px;
  align-items: stretch;
  max-width: 690px;
  margin-bottom: 14px;
  min-width: 0;
}

.pre-footer-newsletter__form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d7d5dc;
  border-radius: 0;
  padding: 0 18px;
  background: #fff;
  color: #111827;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
}

.pre-footer-newsletter__form input:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.pre-footer-newsletter__form input::placeholder {
  color: #6b7280;
}

.pre-footer-newsletter__form button {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  background: #111827;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.pre-footer-newsletter__form button:hover {
  background: #000;
  transform: translateY(-1px);
}

.pre-footer-newsletter__note {
  max-width: 780px;
  margin: 0;
  color: #302a36;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.pre-footer-newsletter__note a {
  color: #111827;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .pre-footer-newsletter__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 24px;
  }

  .pre-footer-newsletter__media {
    width: min(240px, 100%);
  }
}

@media (max-width: 620px) {
  .pre-footer-newsletter {
    padding: 28px 0 24px;
  }

  .pre-footer-newsletter__panel {
    width: 100%;
    min-width: 0;
    padding: 22px 16px;
    overflow: hidden;
  }

  .pre-footer-newsletter__content {
    min-width: 0;
  }

  .pre-footer-newsletter__content h2 {
    font-size: 21px;
  }

  .pre-footer-newsletter__lead {
    font-size: 16px;
  }

  .pre-footer-newsletter__form {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .pre-footer-newsletter__form input {
    min-width: 0;
  }

  .pre-footer-newsletter__form button {
    width: 100%;
  }
}

/* =========================================
   Blog — Article page
   ========================================= */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.blog-article__hero {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
}

.blog-article__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-article__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary, #7c4dff);
  margin-bottom: 12px;
  display: block;
}

.blog-article__title {
  font-family: var(--font-heading, 'Georgia', serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
  line-height: 1.2;
  margin: 0 0 16px;
}

.blog-article__meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.blog-article__text {
  font-size: 16px;
  color: #444;
  line-height: 1.85;
}

.blog-article__text p {
  margin: 0 0 18px;
}

.blog-article__text h2 {
  font-family: var(--font-heading, 'Georgia', serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
  margin: 36px 0 14px;
}

.blog-article__text h3 {
  font-family: var(--font-heading, 'Georgia', serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text, #1a1a1a);
  margin: 28px 0 10px;
}

.blog-article__text ul,
.blog-article__text ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.blog-article__text li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.blog-article__text a {
  color: var(--color-primary, #7c4dff);
  text-decoration: underline;
}

.blog-article__cta-box {
  background: #f8f6ff;
  border: 1px solid #e8e0ff;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 40px;
  text-align: center;
}

.blog-article__cta-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-article__cta-box p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .blog-article__title {
    font-size: 2rem;
  }
}

/* =========================================
   Wishlist page
   ========================================= */
.wishlist-page {
  padding: 34px 0 72px;
  background: linear-gradient(180deg, #fbf8ff 0%, #fff 42%);
}

.wishlist-page .container {
  max-width: 1180px;
}

.wishlist-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 18px 0 28px;
  padding: 24px;
  border: 1px solid #eadffd;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(94, 53, 177, 0.08);
}

.wishlist-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 1.8rem;
}

.wishlist-hero__copy {
  min-width: 0;
}

.wishlist-hero__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wishlist-hero h1 {
  margin: 0;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.wishlist-hero p {
  max-width: 58ch;
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.wishlist-hero__cta {
  min-height: 42px;
  white-space: nowrap;
}

.wishlist-page__empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 54px 24px;
  border: 1px dashed rgba(124, 77, 255, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.wishlist-page__empty i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 2rem;
}

.wishlist-page__empty h2 {
  color: var(--color-text);
  font-size: 1.35rem;
  font-weight: 900;
  margin: 0 0 8px;
}

.wishlist-page__empty p {
  max-width: 38ch;
  margin: 0 auto 24px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wishlist-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.wishlist-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 77, 255, 0.24);
  box-shadow: 0 18px 38px rgba(94, 53, 177, 0.10);
}

.wishlist-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--color-surface);
}

.wishlist-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wishlist-card__body {
  padding: 16px;
}

.wishlist-card__cat {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wishlist-card__title {
  margin: 0 0 10px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.wishlist-card__title a:hover {
  color: var(--color-primary-dark);
}

.wishlist-card__price {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 900;
}

.wishlist-card__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.wishlist-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 900;
  border: 1px solid transparent;
}

.wishlist-card__btn--view {
  background: var(--color-primary);
  color: #fff;
}

.wishlist-card__btn--view:hover {
  background: var(--color-primary-dark);
}

.wishlist-card__btn--remove {
  border-color: #fee2e2;
  background: #fff7f7;
  color: #b91c1c;
}

.wishlist-card__btn--remove:hover {
  border-color: #fecaca;
  background: #fef2f2;
}

@media (max-width: 900px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .wishlist-page {
    padding: 24px 0 52px;
  }

  .wishlist-page * {
    min-width: 0;
  }

  .wishlist-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
    padding: 20px;
    border-radius: 18px;
    overflow: hidden;
  }

  .wishlist-hero__icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.45rem;
  }

  .wishlist-hero h1 {
    font-size: 1.55rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .wishlist-hero p,
  .wishlist-page__empty h2,
  .wishlist-page__empty p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .wishlist-hero__cta {
    width: 100%;
  }

  .wishlist-page__empty {
    overflow: hidden;
  }

  .wishlist-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wishlist-card__actions {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   WHATSAPP WIDGET
   ═══════════════════════════════════════════ */

.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── FAB BUTTON ───────────────────────────── */
.wa-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  position: relative;
  z-index: 3;
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}

/* Pulse ring animation */
.wa-widget__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}

.wa-widget__btn::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.2);
  animation: wa-pulse 2s ease-out 0.5s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Badge */
.wa-widget__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  animation: wa-badge-bounce 1.5s ease infinite;
}

@keyframes wa-badge-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ── TOOLTIP ──────────────────────────────── */
.wa-widget__tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.wa-widget__tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.wa-widget--show-tooltip .wa-widget__tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-widget__tooltip p {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.wa-widget__tooltip p strong {
  display: block;
  margin-bottom: 2px;
}

.wa-widget__tooltip p:last-child {
  color: #888;
  font-size: 12px;
}

/* ── POPUP ────────────────────────────────── */
.wa-widget__popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.wa-widget--open .wa-widget__popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Popup head */
.wa-widget__popup-head {
  background: #075e54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-widget__popup-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.wa-widget__popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-widget__popup-info {
  flex: 1;
}

.wa-widget__popup-info strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.wa-widget__popup-info span {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
}

.wa-widget__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.wa-widget__close:hover {
  background: rgba(255,255,255,0.2);
}

/* Popup body */
.wa-widget__popup-body {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5bfb3' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 20px 16px;
  min-height: 120px;
}

.wa-widget__msg {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-widget__msg p {
  margin: 0;
  font-size: 14px;
  color: #303030;
  line-height: 1.5;
}

.wa-widget__msg p:first-child {
  font-size: 18px;
  margin-bottom: 4px;
}

.wa-widget__time {
  display: block;
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  text-align: right;
}

/* Popup footer */
.wa-widget__popup-footer {
  background: #f0f0f0;
  padding: 12px 16px;
}

.wa-widget__start-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 24px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.wa-widget__start-chat:hover {
  background: #20ba5a;
}

.wa-widget__start-chat i {
  font-size: 18px;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 480px) {
  .wa-widget {
    bottom: 16px;
    right: 16px;
  }
  .wa-widget__btn {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
  .wa-widget__popup {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* Phone containment repairs */
@media (max-width: 639px) {
  .hero__video,
  .hero__overlay,
  .hero__content {
    height: 250px;
  }

  .header__inner,
  .hero__search,
  .home-trust-strip .container,
  .about-us-home .container,
  .popular .container,
  .wishlist-page .container,
  .footer .container {
    max-width: 390px;
    margin-left: 0;
    margin-right: auto;
  }

  .top-bar__text {
    max-width: 300px;
    margin: 0 auto;
    padding: 0;
    font-size: 0.68rem;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__search {
    width: 100%;
    max-width: 100vw;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .hero__search .search-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .search-panel__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 358px;
    min-width: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .search-panel__tab {
    min-height: 38px;
    min-width: 0;
    white-space: normal;
    overflow: hidden;
  }

  .search-panel__body,
  .search-form.is-active {
    width: 100%;
    max-width: 358px;
    min-width: 0;
    margin-left: 0;
    margin-right: auto;
  }

  .search-form__input,
  .search-form__select,
  .date-picker,
  .date-picker__display {
    min-width: 0;
  }

  .hotel-date-pair {
    grid-template-columns: 1fr;
  }

  .footer__panel {
    overflow: hidden;
  }

  .footer p,
  .footer a,
  .footer span,
  .footer strong {
    overflow-wrap: anywhere;
  }

  .card-scroller__btn {
    display: none;
  }

  .cards-grid,
  .card-scroller .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .activity-card,
  .card-scroller .activity-card {
    width: 100%;
    min-width: 0;
    flex: none;
    scroll-snap-align: none;
  }

  .section-header__desc {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }

  .explore-banner__content {
    min-width: 0;
  }

  .explore-banner__text {
    max-width: 100%;
  }

  .explore-list {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 639px) {
  .explore-banners .container,
  .explore-banners__grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .explore-banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 110px;
    padding: 14px 106px 14px 14px;
  }

  .explore-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
  }

  .explore-banner__img {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 2;
    display: block;
    width: 82px;
    height: 62px;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(-50%);
  }

  .explore-banner__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Professional WhatsApp contact widget */
.wa-widget {
  right: 22px;
  bottom: 22px;
  font-family: inherit;
}

.wa-widget__btn {
  width: 58px;
  height: 58px;
  border: 4px solid #fff;
  background: linear-gradient(145deg, #16a34a 0%, #128c7e 100%);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.32);
}

.wa-widget__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.38);
}

.wa-widget__btn::before {
  inset: -7px;
  border-color: rgba(18, 140, 126, 0.20);
}

.wa-widget__btn::after {
  display: none;
}

.wa-widget__badge {
  top: -4px;
  right: -4px;
  background: #d93025;
  box-shadow: 0 4px 10px rgba(217, 48, 37, 0.28);
}

.wa-widget__tooltip {
  width: 252px;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
}

.wa-widget__tooltip p {
  color: var(--color-text);
  font-size: 0.8rem;
}

.wa-widget__tooltip p:last-child {
  color: var(--color-text-muted);
  font-size: 0.74rem;
}

.wa-widget__popup {
  width: 350px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.20);
}

.wa-widget__popup-head {
  background: linear-gradient(135deg, #0f766e 0%, #128c7e 100%);
  padding: 16px;
}

.wa-widget__popup-avatar {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.wa-widget__popup-info strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.wa-widget__popup-info span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.wa-widget__popup-info span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
}

.wa-widget__popup-body {
  min-height: 136px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef7f5 100%);
  background-image: none;
}

.wa-widget__msg {
  max-width: 100%;
  border: 1px solid rgba(18, 140, 126, 0.10);
  border-radius: 14px;
  padding: 13px 14px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.wa-widget__msg p {
  color: var(--color-text);
  font-size: 0.82rem;
  line-height: 1.5;
}

.wa-widget__msg p:first-child {
  font-size: 0.86rem;
  font-weight: 900;
}

.wa-widget__time {
  color: var(--color-text-muted);
}

.wa-widget__popup-footer {
  padding: 14px 16px 16px;
  background: #fff;
}

.wa-widget__start-chat {
  min-height: 44px;
  border-radius: 10px;
  background: #128c7e;
  font-weight: 900;
}

.wa-widget__start-chat:hover {
  background: #0f766e;
}

@media (max-width: 640px) {
  .wa-widget__tooltip,
  .wa-widget--show-tooltip .wa-widget__tooltip {
    display: none !important;
  }
}

/* Trip detail gallery and content upgrades */
.exp-gallery--mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 12px;
  align-items: stretch;
}

.exp-gallery--mosaic .exp-gallery__main {
  min-height: 430px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: none;
}

.exp-gallery--mosaic .exp-gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(74px, 1fr);
  gap: 10px;
  margin: 0;
  max-height: 430px;
  overflow-y: auto;
  padding: 0 2px 0 0;
  scrollbar-width: thin;
}

.exp-gallery--mosaic .exp-gallery__thumb {
  width: 100%;
  height: 100%;
  min-height: 74px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  box-shadow: none;
  opacity: 0.72;
}

.exp-gallery--mosaic .exp-gallery__thumb.is-active {
  border-color: #111827;
  opacity: 1;
}

.exp-overview-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.exp-overview-detail {
  border-top: 2px solid #111827;
  padding-top: 12px;
}

.exp-overview-detail h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.exp-overview-detail p {
  margin: 0;
  color: #4b5563;
  font-size: 0.86rem;
  line-height: 1.55;
}

.exp-faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #e5e7eb;
}

.exp-faq {
  border-bottom: 1px solid #e5e7eb;
}

.exp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  color: #111827;
  font-size: 0.94rem;
  font-weight: 900;
}

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

.exp-faq summary i {
  color: #6b7280;
  transition: transform 0.2s ease;
}

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

.exp-faq p {
  margin: -4px 0 16px;
  max-width: 720px;
  color: #4b5563;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .exp-gallery--mosaic {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .exp-gallery--mosaic .exp-gallery__main {
    min-height: 300px;
    width: 100%;
  }

  .exp-gallery--mosaic .exp-gallery__thumbs {
    display: flex;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
  }

  .exp-gallery--mosaic .exp-gallery__thumb {
    flex: 0 0 96px;
    height: 70px;
  }

  .exp-overview-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .exp-detail {
    overflow-x: hidden;
  }

  .exp-detail .container,
  .exp-layout,
  .exp-content,
  .exp-section,
  .exp-sidebar,
  .exp-booking {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .exp-content {
    overflow: hidden;
  }

  .exp-section__body,
  .exp-section__body p,
  .exp-overview-details,
  .exp-overview-detail,
  .exp-overview-detail p,
  .exp-faq,
  .exp-faq p,
  .exp-itinerary__body,
  .exp-itinerary__body p,
  .exp-meeting__item,
  .exp-meeting__item p {
    width: 100%;
    max-width: 100% !important;
    min-width: 0;
  }

  .exp-section__body p,
  .exp-overview-detail p,
  .exp-faq p,
  .exp-itinerary__body p,
  .exp-meeting__item p {
    overflow-wrap: anywhere;
  }
}

.exp-booking.is-guided {
  border-color: #111827;
  outline: 2px solid rgba(124, 77, 255, 0.22);
  outline-offset: 3px;
  transition: border-color 0.2s ease, outline-color 0.2s ease;
}
