/* Lux Vacation Deals — sales + credits branding (loaded after base template CSS) */
.lux-sales-section {
  --lux-gold: #f59e0b;
  --lux-amber: #fbbf24;
  --lux-ink: #0f172a;
  --lux-mist: #f1f5f9;
  --lux-iris: #6366f1;
  --lux-rose: #f43f5e;
  --lux-teal: #0d9488;
  position: relative;
}

/* —— Ticker / trust marquee —— */
.lux-marquee-wrap {
  background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 50%, #0c4a6e 100%);
  color: #fff;
  padding: 0.65rem 0;
  overflow: hidden;
  position: relative;
}
.lux-marquee-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f172a, transparent 8%, transparent 92%, #0c4a6e);
  pointer-events: none;
}
.lux-marquee {
  display: flex;
  width: max-content;
  animation: lux-marquee-scroll 32s linear infinite;
}
.lux-marquee:hover {
  animation-play-state: paused;
}
.lux-marquee__group {
  display: flex;
  align-items: center;
  gap: 0.5rem 2.5rem;
  padding: 0 1.5rem;
  white-space: nowrap;
}
.lux-marquee__item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.95;
}
.lux-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lux-amber), #fb923c);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
  flex-shrink: 0;
}
@keyframes lux-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .lux-marquee { animation: none; justify-content: center; flex-wrap: wrap; white-space: normal; max-width: 100%; }
  .lux-marquee__group { flex-wrap: wrap; justify-content: center; }
}

/* —— Offer banners carousel —— */
.lux-offers-block {
  padding: 2.75rem 0 1rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 40%, #f8fafc 100%);
}
.lux-offers-block .lux-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.75rem;
}
.lux-offers-block .lux-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-iris);
  margin-bottom: 0.5rem;
}
.lux-offers-block .lux-section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  color: var(--lux-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.lux-offers-block .lux-section-head p {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.55;
}

/* —— Offer banners: responsive grid (3 → 2 → 1 cols; multiple rows) —— */
.lux-offers-block--photo-grid {
  padding: 3rem 0 0;
  background: linear-gradient(180deg, #f5f5f7 0%, #ececef 45%, #ebebed 100%);
}
.lux-offers-block--photo-grid .container {
  padding-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.lux-offer-grid-screen-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lux-offer-grid-intro {
  text-align: center;
  font-size: clamp(0.88rem, 1.9vw, 1rem);
  font-weight: 400;
  color: #64748b;
  max-width: 52rem;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
.lux-offer-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  row-gap: clamp(1.35rem, 2.5vw, 2.15rem);
  max-width: min(1520px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  align-items: stretch;
}
.lux-offer-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 22px 48px -20px rgba(15, 23, 42, 0.28),
    0 10px 22px -12px rgba(15, 23, 42, 0.14),
    0 2px 6px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.lux-offer-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 56px -22px rgba(15, 23, 42, 0.35),
    0 16px 28px -14px rgba(99, 102, 241, 0.18);
}
.lux-offer-card:focus-visible {
  outline: 3px solid #6366f1;
  outline-offset: 4px;
}
/* Homepage deal banner frame — tenant setting (1:1, 2:3, 4:3); images use object-fit: contain */
.lux-offers-block--photo-grid.lux-offers-block--ar-1-1 .lux-offer-card__media {
  aspect-ratio: 1 / 1;
}
.lux-offers-block--photo-grid.lux-offers-block--ar-2-3 .lux-offer-card__media {
  aspect-ratio: 2 / 3;
}
.lux-offers-block--photo-grid.lux-offers-block--ar-4-3 .lux-offer-card__media {
  aspect-ratio: 4 / 3;
}
.lux-offer-card__media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #eef2f7 0%, #e8ecf2 45%, #e2e8f0 100%);
}
.lux-offer-card__media img {
  position: absolute;
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  object-position: center;
  display: block;
}
.lux-offer-card__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;
}
.lux-offers-block__gradient-bar {
  height: 14px;
  width: 100%;
  margin: 0;
  background: linear-gradient(90deg, #7c3aed 0%, #6366f1 38%, #4f46e5 62%, #2563eb 100%);
}
@media (max-width: 1024px) {
  .lux-offer-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    row-gap: clamp(1.25rem, 3vw, 1.85rem);
  }
}
@media (max-width: 640px) {
  .lux-offer-card-grid {
    grid-template-columns: 1fr;
    max-width: min(520px, 100vw - 2rem);
  }
  .lux-offers-block--photo-grid .container {
    padding-bottom: 2rem;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .lux-offer-card-grid {
    gap: clamp(0.95rem, 1.8vw, 1.35rem);
    row-gap: clamp(1.15rem, 2vw, 1.75rem);
  }
}

.lux-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.lux-carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
  padding: 4px;
  background: linear-gradient(125deg, rgba(99, 102, 241, 0.35), rgba(245, 158, 11, 0.35), rgba(13, 148, 136, 0.35));
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
}
.lux-carousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.lux-offer-slide {
  flex-shrink: 0;
  min-height: 280px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  box-sizing: border-box;
}
.lux-offer-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.lux-offer-slide.is-active .lux-offer-slide__bg {
  transform: scale(1.08);
}
.lux-offer-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.45) 55%, rgba(99, 102, 241, 0.25) 100%);
}
.lux-offer-slide__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.75rem 2.25rem;
  max-width: 520px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lux-offer-slide__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #1c1917;
  animation: lux-badge-pulse 2.4s ease-in-out infinite;
}
@keyframes lux-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lux-offer-slide__badge { animation: none; }
}
.lux-offer-slide__content h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.lux-offer-slide__content p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.92);
}
.lux-offer-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  box-shadow: 0 10px 28px rgba(251, 191, 36, 0.45);
  transition: transform 0.2s, filter 0.2s;
}
.lux-offer-slide__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.lux-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}
.lux-carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.lux-carousel__dots button[aria-current="true"] {
  background: linear-gradient(90deg, var(--lux-iris), #8b5cf6);
  transform: scale(1.25);
}

.lux-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  transition: background 0.2s, transform 0.15s;
}
.lux-carousel__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}
.lux-carousel__nav--prev { left: -6px; }
.lux-carousel__nav--next { right: -6px; }
@media (max-width: 640px) {
  .lux-carousel__nav { display: none; }
}

/* —— Vacation credits story —— */
.lux-credits-story {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}
.lux-credits-story .lux-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}
.lux-credits-story .lux-section-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--lux-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}
.lux-credits-story .lux-section-head .lux-lead {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.lux-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
  margin-bottom: 2rem;
}
.lux-pillar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lux-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(99, 102, 241, 0.2);
}
.lux-pillar__icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}
.lux-pillar h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lux-ink);
}
.lux-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
}

.lux-credits-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}
.lux-btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(115deg, #ea580c 0%, #dc2626 45%, #db2777 100%);
  box-shadow: 0 14px 36px rgba(220, 38, 38, 0.38);
  transition: transform 0.2s, filter 0.2s;
}
.lux-btn-primary-lg:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  color: #fff;
}
.lux-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lux-iris);
  text-decoration: none;
  border: 2px solid rgba(99, 102, 241, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.2s, border-color 0.2s;
}
.lux-btn-ghost:hover {
  background: #eef2ff;
  border-color: var(--lux-iris);
  color: #4338ca;
}

.lux-mini-note {
  text-align: center;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* —— Hero enhancement (scoped) —— */
.hero-section.lux-hero-enhanced .hero-title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}
.hero-section.lux-hero-enhanced .hero-subtitle {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.lux-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.15rem auto 0;
  max-width: 42rem;
}
.lux-hero-badges span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
}

/* Nav CTA */
.main-nav .lux-nav-highlight a {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #1c1917 !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
  font-weight: 800 !important;
}
.main-nav .lux-nav-highlight a:hover {
  filter: brightness(1.08);
}

/* —— Homepage value prop, hero disclosure, trust strip (safeway-travels / Lux) —— */
.hero-section .hero-legal {
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  line-height: 1.55;
  max-width: 46rem;
  margin: 1rem auto 0;
  padding: 0 0.75rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}
.lux-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
}
.lux-hero-cta-row .lux-btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  background: rgba(255, 255, 255, 0.14) !important;
}
.lux-hero-cta-row .lux-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22) !important;
}
.lux-trust-disclosure {
  padding: 2.25rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.lux-trust-disclosure .container {
  max-width: 880px;
}
.lux-trust-disclosure h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--lux-ink);
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.lux-trust-disclosure ul {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.65;
}
.lux-trust-disclosure li {
  margin-bottom: 0.45rem;
}

/* —— Conversion hero (price-first, credits CTA) —— */
.hero-section.lux-hero-enhanced .lux-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.65rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.hero-section.lux-hero-enhanced .lux-hero-price-anchor {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
}
.hero-section.lux-hero-enhanced .lux-hero-price-line strong {
  color: #fde68a;
  text-shadow: 0 2px 24px rgba(251, 191, 36, 0.55);
}
.hero-section.lux-hero-enhanced .lux-hero-price-asterisk {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  opacity: 0.85;
}
.hero-section.lux-hero-enhanced .lux-hero-hook {
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.55;
  max-width: 38rem;
}
.lux-hero-benefits {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  max-width: 44rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.96);
}
.lux-hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lux-hero-benefits__tick {
  color: #4ade80;
  font-weight: 900;
}
.lux-hero-countdown {
  margin: 1rem auto 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fde68a;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  min-height: 1.35em;
}
.lux-hero-cta-row {
  margin-top: 1.5rem;
  gap: 1rem 1.75rem;
}
.lux-btn-mega {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fafafa !important;
  background: #0f172a;
  border: 2px solid #0f172a;
  box-shadow:
    0 4px 0 #020617,
    0 18px 44px rgba(15, 23, 42, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.lux-btn-mega:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff !important;
  box-shadow:
    0 5px 0 #020617,
    0 22px 50px rgba(15, 23, 42, 0.6);
}
.lux-btn-mega:focus-visible {
  outline: 3px solid #fde68a;
  outline-offset: 4px;
}
.lux-btn-mega--light {
  background: #fafafa;
  color: #0f172a !important;
  border-color: #fafafa;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.lux-btn-mega--light:hover {
  filter: brightness(1.05);
  color: #020617 !important;
}
.lux-hero-link-secondary {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: none;
  background: transparent;
  padding: 0.35rem 0;
}
.lux-hero-link-secondary:hover {
  color: #fff !important;
}
.lux-hero-micro {
  margin: 1rem auto 0;
  max-width: 34rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

/* —— Social proof strip —— */
.lux-social-proof {
  padding: 2rem 0 2.25rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}
.lux-social-proof__title {
  text-align: center;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  color: var(--lux-ink);
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}
.lux-social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.lux-social-proof__stat {
  padding: 0.85rem 0.5rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.lux-social-proof__stat strong {
  display: block;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 900;
  color: var(--lux-iris);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.lux-social-proof__stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lux-social-proof__stat--stars .lux-social-proof__stars {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #f59e0b;
}
.lux-social-proof__note {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .lux-social-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lux-offer-grid-sub {
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
  max-width: 40rem;
  margin: -1rem auto 1.75rem;
  line-height: 1.55;
}

/* —— Deal cards: price overlay —— */
.lux-offer-card--deal .lux-offer-card__media {
  position: relative;
}
.lux-offer-card--deal .lux-offer-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px 14px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.48) 0%,
    transparent 38%,
    rgba(15, 23, 42, 0.92) 100%
  );
}
.lux-offer-card__badge-hot {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 6px;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #1c1917;
}
.lux-offer-card__badge-pct {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.32rem 0.55rem;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.88);
  color: #fde68a;
  border: 1px solid rgba(253, 230, 138, 0.35);
}
.lux-offer-card__dest {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.lux-offer-card__nights {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.9);
  line-height: 1.35;
}
.lux-offer-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.35rem;
}
.lux-offer-card__was {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.65);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.lux-offer-card__now {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 900;
  color: #fde68a;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.lux-offer-card__scarcity {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fbcfe8;
  margin-top: 0.35rem;
}
.lux-offer-card__cta-chip {
  margin-top: 0.55rem;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* —— Testimonials —— */
.lux-testimonials {
  padding: 3rem 0;
  background: #f8fafc;
}
.lux-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
.lux-testimonial {
  margin: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}
.lux-testimonial p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
}
.lux-testimonial footer {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
}
.lux-testimonial-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .lux-testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

/* —— Secondary search hub —— */
.home-search-hub {
  padding: 2.75rem 0 3rem;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;
}

/* —— Dark closing CTA —— */
.lux-cta-dark {
  padding: 2.25rem 0;
  background: linear-gradient(120deg, #020617 0%, #1e1b4b 55%, #0f172a 100%);
  color: #f8fafc;
}
.lux-cta-dark__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  text-align: center;
}
.lux-cta-dark__line {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 36rem;
  line-height: 1.45;
}

/* —— Sticky bottom bar —— */
body:has(#lux-sticky-bar) {
  padding-bottom: 72px;
}
.lux-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(15, 23, 42, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.lux-sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}
.lux-sticky-cta__timer {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fde68a;
}
.lux-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
  text-decoration: none;
  color: #0f172a !important;
  background: linear-gradient(90deg, #fde68a, #fbbf24);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.lux-sticky-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  color: #020617 !important;
}
@media (prefers-reduced-motion: reduce) {
  .lux-btn-mega,
  .lux-btn-mega--light,
  .lux-sticky-cta__btn {
    transition: none;
  }
}
