/* ══════════════════════════════════════════════
   DEMO LIFESTYLE — Home Page
   ══════════════════════════════════════════════ */

/* ── HERO (Cinematic Motion) ── */
.hero-clip {
  position: relative; width: 100%; height: 520px; overflow: hidden;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}
.hero {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden; background: var(--charcoal);
  will-change: transform, opacity;
}
.hero__slides { position: relative; width: 100%; height: 100%; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  cursor: pointer;
}
.hero__slide.active { opacity: 1; z-index: 1; }

/* ── Video background ── */
.hero__video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero__bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

/* ── Cinematic overlay — dual gradient ── */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(160deg,
      rgba(7,36,71,0.85) 0%,
      rgba(7,36,71,0.55) 40%,
      rgba(7,36,71,0.25) 70%,
      rgba(7,36,71,0.45) 100%),
    linear-gradient(to top,
      rgba(0,0,0,0.5) 0%,
      transparent 50%);
}

/* ── Hero content ── */
.hero__content {
  position: absolute; bottom: 150px; z-index: 2; width: 100%;
  padding: 0 max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
}

/* ── Floating "Limited Time" tag ── */
.hero__limited-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; margin-bottom: 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--white); font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  animation: heroTextReveal 0.6s ease-out both, heroFloat 3s ease-in-out 1s infinite;
}

/* ── Large elegant typography ── */
.hero__title {
  font-size: 52px; font-weight: 800; color: var(--white);
  letter-spacing: -0.025em; margin-bottom: 14px;
  max-width: 600px; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 40px rgba(39,101,255,0.15);
  animation: heroTextReveal 0.8s ease-out both;
}
.hero__subtitle {
  font-size: 17px; color: rgba(255,255,255,0.85);
  margin-bottom: 28px; max-width: 440px; line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  animation: heroTextReveal 0.8s ease-out 0.15s both;
}

/* ── Animated CTA button with micro pulse ── */
.hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--accent); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  animation: heroTextReveal 0.8s ease-out 0.3s both, heroPulse 3s ease-in-out 1.5s infinite;
  box-shadow: 0 4px 20px rgba(39,101,255,0.35), 0 0 0 0 rgba(39,101,255,0.4);
}
.hero__cta:hover {
  background: var(--accent-dark); transform: scale(1.04);
  animation-play-state: paused;
}
.hero__cta svg { transition: transform 0.2s ease; }
.hero__cta:hover svg { transform: translateX(3px); }

/* ── Keyframes ── */
@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(39,101,255,0.35), 0 0 0 0 rgba(39,101,255,0.4);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 4px 24px rgba(39,101,255,0.45), 0 0 0 8px rgba(39,101,255,0);
  }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Dots ── */
.hero__dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s;
}
.hero__dot.active { background: var(--white); width: 28px; border-radius: 5px; }

/* ── SEARCH BAR (on hero) ── */
.hero-search {
  position: absolute; bottom: 56px;
  left: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  width: min(720px, 60%); z-index: 10;
  display: flex; align-items: center; gap: 0;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); overflow: hidden;
}
.hero-search__icon {
  flex-shrink: 0; margin-left: 20px; color: var(--grey);
}
.hero-search input {
  flex: 1; padding: 18px 16px; border: none; font-size: 15px;
  font-family: var(--font-body); color: var(--charcoal);
  background: transparent; outline: none;
}
.hero-search input::placeholder { color: #9ca3af; }
.hero-search button {
  flex-shrink: 0; width: 40px; height: 40px; margin: 4px 8px 4px 0;
  border: none; border-radius: 0; background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
}
.hero-search button:hover { background: transparent; }
.hero-search button svg { stroke: var(--grey); width: 18px; height: 18px; transition: stroke 0.25s ease; }
.hero-search button:hover svg { stroke: var(--charcoal); }

/* ── GREETING BANNER ── */
.greeting-banner {
  display: flex; align-items: center; justify-content: flex-end;
  padding: var(--space-xl) 0 0;
}
.greeting-banner__text { text-align: right; }
.greeting-banner__hello {
  font-size: 26px; font-weight: 800; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.greeting-banner__sub {
  font-size: 14px; color: var(--grey); margin-top: 4px;
}
.greeting-banner__sub strong { color: var(--charcoal); }
.greeting-banner__tier {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: var(--radius); color: var(--white); text-align: center;
  min-width: 100px;
}
.greeting-banner__tier-label {
  font-size: 16px; font-weight: 800; letter-spacing: 0.02em;
}
.greeting-banner__tier-type {
  font-family: var(--font-ui); font-size: 9px; font-weight: 600;
  letter-spacing: 0.1em; opacity: 0.7; margin-top: 2px;
}

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 16px; padding: 0;
  max-width: var(--container-max); margin: 0 auto;
}
.category-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 10px 10px; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-soft);
  cursor: pointer; transition: all var(--ease-bounce); text-align: center;
}
.category-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.category-tile__icon { width: 72px; height: 72px; margin-bottom: 10px; color: var(--tile-color, var(--accent)); }
.category-tile__icon svg { width: 100%; height: 100%; }
.category-tile__icon img { width: 100%; height: 100%; object-fit: contain; }
.category-tile[data-id="your-card"] .category-tile__icon img { transform: scale(1.6); }
.category-tile[data-id="flights"] .category-tile__icon img { transform: scale(1.4); }
.category-tile[data-id="entertainment"] .category-tile__icon img { transform: scale(1.7); }
.category-tile__label {
  font-size: 12px; font-weight: 600; color: var(--charcoal);
  line-height: 1.3;
}

/* ── HOME SECTIONS ── */
.home-section {
  max-width: var(--container-max); margin: 0 auto;
  padding: var(--space-xl) 0;
}
.home-section__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 var(--container-pad); margin-bottom: var(--space-lg);
}
.home-section__title { font-size: 24px; font-weight: 800; color: var(--charcoal); }
.home-section__subtitle { font-size: 14px; color: var(--grey); margin-top: 4px; }

/* ── CARD BENEFITS GRID ── */
.benefits-scroll-wrapper { position: relative; }
.benefits-grid {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-behavior: smooth; padding-bottom: 4px;
  -ms-overflow-style: none; scrollbar-width: none;
  flex-wrap: wrap; justify-content: center;
}
.benefits-grid::-webkit-scrollbar { display: none; }
.benefit-icon-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: all var(--ease-bounce); text-align: center;
  width: 100px; flex-shrink: 0;
}
.benefit-icon-card:hover { transform: translateY(-4px); }
.benefit-icon-card__icon {
  width: 88px; height: 88px; margin-bottom: 10px;
  border-radius: 50%; background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); overflow: hidden;
  transition: box-shadow var(--ease);
}
.benefit-icon-card:hover .benefit-icon-card__icon { box-shadow: 0 4px 16px rgba(0,0,0,0.14); }
.benefit-icon-card__icon svg { width: 36px; height: 36px; }
.benefit-icon-card__icon img { width: 64px; height: 64px; object-fit: contain; }
.benefit-icon-card__label {
  font-size: 11px; font-weight: 600; color: var(--charcoal); line-height: 1.3;
}
.benefits-scroll-arrow {
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--grey-border);
  background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease; z-index: 2;
}
.benefits-scroll-arrow:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); background: var(--off-white); }
.benefits-scroll-arrow.hidden { display: none; }

/* ══════════════════════════════════════════════
   UNRAVEL HOTEL DEALS — Beach hero carousel
   ══════════════════════════════════════════════ */
.unravel-section {
  position: relative;
  margin-bottom: var(--space-xl);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

/* Background image layer */
.unravel-section__bg {
  position: absolute; top: 0; left: 0; right: 0;
  height: 220px;
  background:
    url('../../assets/unravel-bg.png')
    center top / cover no-repeat;
  z-index: 0;
}
.unravel-section__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.70) 60%,
    var(--light) 100%);
}

/* Content sits above background */
.unravel-section__content {
  position: relative; z-index: 1;
  padding: 32px 0 24px;
}

/* Header */
.unravel-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad);
  margin-bottom: 20px;
}
.unravel-header__title {
  font-size: 24px; font-weight: 800; color: var(--charcoal);
  line-height: 1.2;
}
.unravel-header__subtitle {
  font-size: 14px; color: var(--grey); margin-top: 4px;
}

/* Track — horizontal scroll */
.unravel-track-wrap {
  --unravel-pad: max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  padding: 0 var(--unravel-pad);
}
.unravel-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 0 20px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.unravel-track::-webkit-scrollbar { display: none; }

/* Cards — tall portrait style */
.unravel-card {
  position: relative;
  flex-shrink: 0; scroll-snap-align: start;
  width: 280px; height: 380px;
  border-radius: 16px;
  overflow: hidden; cursor: pointer;
  background: var(--charcoal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unravel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.unravel-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.unravel-card:hover .unravel-card__img {
  transform: scale(1.05);
}

/* Share button */
.unravel-card .card-share-btn {
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: none; border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease;
}
.unravel-card .card-share-btn:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Info overlay at bottom */
.unravel-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  z-index: 2;
}
.unravel-card__title {
  font-size: 15px; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 4px;
}
.unravel-card__location {
  font-size: 12px; color: rgba(255,255,255,0.75);
}

/* Dot indicators */
.unravel-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 4px 0 0;
}
.unravel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(7,36,71,0.20); cursor: pointer;
  transition: all 0.3s ease;
}
.unravel-dot.active {
  background: var(--charcoal); width: 22px;
  border-radius: 4px;
}

/* ── Mobile adjustments ── */
@media (max-width: 900px) {
  .unravel-section__bg { height: 180px; }
  .unravel-track-wrap { --unravel-pad: 0; padding: 0; }
  .unravel-track {
    gap: 14px;
    padding-left: var(--container-pad);
    scroll-padding-left: var(--container-pad);
  }
  .unravel-card { width: 260px; height: 360px; }
  .unravel-header { max-width: none; padding: 0 var(--container-pad); }
}

@media (min-width: 901px) {
  .unravel-section { border-radius: 32px 32px 0 0; }
}

@media (max-width: 600px) {
  .unravel-card { width: 240px; height: 340px; }
  .unravel-header__title { font-size: 20px; }
}

/* ── PREMIUM REWARDS — Light blue brand banner (mobile-first) ── */
#premium-rewards {
  position: relative;
  background:
    /* Soft bokeh glow — top-left */
    radial-gradient(ellipse 300px 300px at 10% 20%, rgba(39, 101, 255, 0.10) 0%, transparent 70%),
    /* Bokeh glow — top-right */
    radial-gradient(ellipse 250px 250px at 85% 10%, rgba(7, 36, 71, 0.08) 0%, transparent 70%),
    /* Bokeh glow — center-right */
    radial-gradient(ellipse 200px 280px at 90% 60%, rgba(39, 101, 255, 0.07) 0%, transparent 70%),
    /* Cool shimmer — bottom-left */
    radial-gradient(ellipse 280px 200px at 15% 80%, rgba(39, 101, 255, 0.06) 0%, transparent 70%),
    /* Base gradient — light blue brand tones */
    linear-gradient(135deg, #f0f4fb 0%, #e8eef8 35%, #dfe8f5 60%, #eaf0fa 100%);
  padding: var(--space-xl) 0;
  margin-bottom: 0;
  overflow: visible;
  border-radius: 24px 24px 0 0;
}

/* Shimmer sparkle dots layer */
#premium-rewards::before {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Tiny sparkle dots scattered */
    radial-gradient(circle 2px at 15% 25%, rgba(39, 101, 255, 0.30) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 80% 15%, rgba(39, 101, 255, 0.25) 0%, transparent 100%),
    radial-gradient(circle 2px at 70% 40%, rgba(7, 36, 71, 0.20) 0%, transparent 100%),
    radial-gradient(circle 1px at 25% 55%, rgba(39, 101, 255, 0.28) 0%, transparent 100%),
    radial-gradient(circle 2.5px at 55% 20%, rgba(39, 101, 255, 0.22) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 40% 75%, rgba(7, 36, 71, 0.18) 0%, transparent 100%),
    radial-gradient(circle 2px at 90% 70%, rgba(39, 101, 255, 0.20) 0%, transparent 100%),
    radial-gradient(circle 1px at 60% 85%, rgba(39, 101, 255, 0.25) 0%, transparent 100%),
    /* Larger soft orbs */
    radial-gradient(circle 40px at 20% 30%, rgba(39, 101, 255, 0.05) 0%, transparent 100%),
    radial-gradient(circle 50px at 75% 25%, rgba(7, 36, 71, 0.04) 0%, transparent 100%),
    radial-gradient(circle 35px at 60% 70%, rgba(39, 101, 255, 0.04) 0%, transparent 100%);
  border-radius: 24px 24px 0 0;
  z-index: 0;
}

/* Fade-out at bottom — blends section into page background */
#premium-rewards::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--light));
  z-index: 2;
  pointer-events: none;
}
#premium-rewards > * { position: relative; z-index: 1; }
#premium-rewards .carousel-header__title { color: var(--charcoal); }
#premium-rewards .carousel-header__subtitle { color: var(--charcoal); font-style: normal; }

/* Carousel arrows — blue glass */
#premium-rewards .carousel-arrow {
  background: rgba(255,255,255,0.75);
  border-color: rgba(39, 101, 255, 0.15);
  color: var(--charcoal);
  box-shadow: 0 2px 10px rgba(7, 36, 71, 0.08);
}
#premium-rewards .carousel-arrow:hover {
  background: rgba(255,255,255,0.92);
  color: var(--accent);
}

/* ── Wrapper to hold section + decorations ── */
.pr-bg-wrap { position: relative; }

/* ── Decorative gift icons & sparkle stars ── */
.pr-deco {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  border-radius: 24px 24px 0 0;
  z-index: 0;
}

/* Gift boxes — colourful, visible, floating */
.pr-gift {
  position: absolute;
  filter: drop-shadow(0 4px 10px rgba(7, 36, 71, 0.15));
}
.pr-gift--1 {
  width: 62px; top: 2%; right: 5%;
  transform: rotate(-8deg);
  animation: prFloat1 4s ease-in-out infinite;
}
.pr-gift--3 {
  width: 54px; bottom: 16%; right: 3%;
  transform: rotate(10deg);
  animation: prFloat3 4.5s ease-in-out 1s infinite;
}
.pr-gift--5 {
  width: 36px; top: 42%; right: 1%;
  transform: rotate(4deg);
  animation: prFloat1 4.8s ease-in-out 1.5s infinite;
}

/* Floating keyframes — gentle bobbing */
@keyframes prFloat1 {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes prFloat2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-12px); }
}
@keyframes prFloat3 {
  0%, 100% { transform: rotate(10deg) translateY(0) scale(1); }
  50%      { transform: rotate(8deg) translateY(-8px) scale(1.04); }
}

/* Sparkle stars — blue brand, vivid, pop-twinkle */
.pr-star {
  position: absolute;
  color: #2765FF;
  text-shadow: 0 0 6px rgba(39, 101, 255, 0.5), 0 0 14px rgba(39, 101, 255, 0.25);
  animation: prPop 2s ease-in-out infinite;
}
.pr-star--2 { top: 14%;  right: 16%; font-size: 22px; animation-delay: 0.4s; color: #5B8CFF; }
.pr-star--4 { bottom: 28%; right: 10%; font-size: 24px; animation-delay: 0.2s; color: #5B8CFF; }
.pr-star--6 { top: 48%;  right: 22%; font-size: 18px; animation-delay: 0.8s; color: #072447; }
.pr-star--7 { top: 20%;  left: 48%;  font-size: 12px; animation-delay: 1.8s; }
.pr-star--8 { bottom: 35%; left: 40%; font-size: 14px; animation-delay: 2.2s; color: #5B8CFF; }

/* Star twinkle — bright pop in/out */
@keyframes prPop {
  0%   { opacity: 0.15; transform: scale(0.5) rotate(0deg); }
  25%  { opacity: 1;    transform: scale(1.2) rotate(20deg); }
  50%  { opacity: 0.9;  transform: scale(1)   rotate(0deg); }
  75%  { opacity: 0.3;  transform: scale(0.7) rotate(-15deg); }
  100% { opacity: 0.15; transform: scale(0.5) rotate(0deg); }
}

/* Desktop — bigger, more visible */
@media (min-width: 901px) {
  #premium-rewards {
    padding: 48px 0 56px;
    border-radius: 32px 32px 0 0;
  }
  #premium-rewards::before { border-radius: 32px 32px 0 0; }
  #premium-rewards::after { height: 90px; }
  .pr-deco { border-radius: 32px 32px 0 0; }
  .pr-gift--1 { width: 80px; top: 3%;  right: 6%; }
  .pr-gift--3 { width: 68px; bottom: 14%; right: 5%; }
  .pr-gift--5 { width: 44px; top: 38%; right: 2%; }
  .pr-star--2 { font-size: 28px; }
  .pr-star--4 { font-size: 30px; }
  .pr-star--6 { font-size: 22px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pr-gift, .pr-star { animation: none !important; }
  .pr-star { opacity: 0.6; transform: none; }
}

/* ── LAST CHANCE BANNER ── */
.lc-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin: 0 calc(-1 * var(--container-pad)) var(--space-xl);
}

/* Background image — Dubai skyline with bokeh */
.lc-banner__bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1200&q=80')
    center 40% / cover no-repeat;
  z-index: 0;
}

/* Dark gradient overlay — subtle to keep skyline visible */
.lc-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(7,36,71,0.82) 0%,
      rgba(7,36,71,0.70) 40%,
      rgba(7,36,71,0.60) 70%,
      rgba(7,36,71,0.75) 100%);
}

/* Header row — title + tag */
.lc-banner__header {
  position: relative; z-index: 2;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 28px 20px;
}

/* Text */
.lc-banner__text { flex-shrink: 0; }
.lc-banner__title {
  font-size: 28px; font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.lc-banner__subtitle {
  font-size: 15px; color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* Deals count tag — pill style */
.lc-banner__tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Swipeable deal track ── */
.lc-track {
  position: relative; z-index: 2;
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 28px 30px;
  scroll-padding-left: 28px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.lc-track::-webkit-scrollbar { display: none; }

/* Individual deal card — glass morphism */
.lc-slide {
  position: relative;
  flex-shrink: 0; scroll-snap-align: start;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.lc-slide:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
}

/* Card image */
.lc-slide__img {
  position: relative;
  width: 100%; height: 140px;
  overflow: hidden;
}
.lc-slide__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.lc-slide:hover .lc-slide__img img { transform: scale(1.06); }

/* Discount badge */
.lc-slide__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 8px;
  white-space: nowrap; z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.3;
}

/* Card info */
.lc-slide__info {
  padding: 14px 16px 16px;
}
.lc-slide__title {
  font-size: 14px; font-weight: 700; color: #fff;
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.lc-slide__merchant {
  font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500;
  margin-top: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Mobile adjustments ── */
@media (max-width: 900px) {
  .lc-banner__header { padding: 24px 24px 16px; }
  .lc-track { padding: 0 24px 30px; gap: 14px; scroll-padding-left: 24px; }
  .lc-banner__title { font-size: 26px; }
  .lc-slide { width: 200px; }
  .lc-slide__img { height: 125px; }
}

@media (max-width: 600px) {
  .lc-banner { margin: 0 calc(-1 * var(--container-pad)) var(--space-xl); }
  .lc-banner__header { padding: 22px 20px 14px; }
  .lc-track { padding: 0 20px 30px; gap: 12px; scroll-padding-left: 20px; }
  .lc-banner__title { font-size: 24px; }
  .lc-banner__subtitle { font-size: 13px; }
  .lc-slide { width: 180px; }
  .lc-slide__img { height: 115px; }
  .lc-slide__info { padding: 12px 14px 14px; }
  .lc-slide__title { font-size: 11px; }
}

/* ── UPCOMING EVENTS BACKGROUND ── */
.events-bg-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  padding-top: var(--space-xl);
}
.events-bg-wrap__img {
  position: absolute; top: 0; left: 0; right: 0;
  height: 280px;
  background: url('../../assets/upcomin-events-bg.jpeg') center top / cover no-repeat;
  z-index: 0;
}
.events-bg-wrap__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.4) 60%,
    rgba(255,255,255,0.8) 75%,
    var(--light) 95%);
}
.events-bg-wrap .carousel-section {
  position: relative; z-index: 1;
  margin-bottom: var(--space-xl);
}

/* ── EXCLUSIVE REWARDS & SUBSCRIPTIONS ── */
.rewards-section {
  padding: 0 0 var(--space-xl);
}
.rewards-section__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  padding: 0 4px;
}
.rewards-section__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 2px;
}
.rewards-section__subtitle {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* Horizontal scroll track — breaks out of container padding for edge-to-edge scroll */
.rewards-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-left: calc(-1 * var(--container-pad));
  margin-right: calc(-1 * var(--container-pad));
  padding: 4px 0 8px 0;
}
.rewards-track::before,
.rewards-track::after {
  content: '';
  flex-shrink: 0;
  width: calc(var(--container-pad) - 14px);
}
.rewards-track::before {
  scroll-snap-align: start;
}
.rewards-track::-webkit-scrollbar { display: none; }

/* Individual reward card */
.reward-card {
  flex-shrink: 0;
  width: 365px;
  min-height: 190px;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reward-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.reward-card:active {
  transform: scale(0.98);
}

/* Subtle glow overlay */
.reward-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Text content — left side */
.reward-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  min-width: 0;
}
.reward-card__brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.reward-card__tagline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 4px;
}
.reward-card__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 14px;
  line-height: 1.3;
}
.reward-card__cta {
  align-self: flex-start;
  background: rgba(255,255,255,0.95);
  color: #1E293B;
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background 0.15s ease;
}
.reward-card__cta:hover {
  background: #fff;
}

/* Image — right-side background */
.reward-card__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
}
.reward-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reward-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--rc-grad-start, #1B4D3E) 0%, transparent 70%);
}

/* Banner variant — full-bleed image card */
.reward-card--banner {
  padding: 0;
  background: none;
}
.reward-card__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.reward-card__content--overlay {
  position: relative;
  z-index: 1;
  padding: 20px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .reward-card {
    width: 365px;
    min-height: 180px;
    padding: 16px;
  }
  .reward-card--banner {
    padding: 0;
  }
  .reward-card__tagline {
    font-size: 1.15rem;
  }
  .reward-card__visual {
    width: 50%;
  }
}

/* ── RESTAURANTS BACKGROUND ── */
.rest-bg-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  padding-top: var(--space-xl);
}
.rest-bg-wrap__img {
  position: absolute; top: 0; left: 0; right: 0;
  height: 280px;
  background: url('../../assets/retaurants-nearby-bg.jpeg') center top / cover no-repeat;
  z-index: 0;
}
.rest-bg-wrap__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 40%,
    rgba(255,255,255,0.4) 60%,
    rgba(255,255,255,0.8) 75%,
    var(--light) 95%);
}
.rest-bg-wrap .carousel-section {
  position: relative; z-index: 1;
}
.rest-bg-wrap .carousel-header__title,
.rest-bg-wrap .carousel-header__subtitle { color: var(--charcoal); }
.rest-bg-wrap .btn--ghost {
  color: var(--charcoal); border-color: var(--charcoal);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 40px max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad))) 20px;
  margin-top: var(--space-xl);
}
.site-footer__inner {
  display: grid; grid-template-columns: 1.2fr 2fr 1fr; gap: 48px;
  padding-bottom: 48px;
}
.site-footer__logo { height: 52px; width: auto; margin-bottom: 16px; display: block; mix-blend-mode: screen; }
.site-footer__tagline { font-size: 13px; line-height: 1.6; max-width: 240px; }
.site-footer__links { display: flex; gap: 48px; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__heading {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  margin-bottom: 4px;
}
.site-footer__col a {
  font-size: 13px; color: rgba(255,255,255,0.6); cursor: pointer;
  transition: color var(--ease);
}
.site-footer__col a:hover { color: var(--white); }
.site-footer__app-text { font-size: 13px; margin-bottom: 12px; }
.site-footer__badges { display: flex; gap: 10px; }
.site-footer__store-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--white); cursor: pointer;
  transition: all var(--ease);
}
.site-footer__store-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }
.site-footer__store-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .hero-clip { height: 460px; }
  .hero__title { font-size: 36px; margin-bottom: 12px; line-height: 1.15; max-width: 400px; }
  .hero__subtitle { font-size: 15px; margin-bottom: 20px; line-height: 1.5; }
  .hero__content { bottom: 130px; padding: 0 20px; }
  .hero__cta { padding: 12px 24px; font-size: 14px; }
  .hero-search { bottom: 48px; left: 20px; width: calc(100% - 40px); max-width: 480px; }
  .hero-search input { padding: 14px 12px; font-size: 16px; }
  .hero-search button { width: 36px; height: 36px; }
  .greeting-banner { flex-direction: column; align-items: flex-end; gap: 12px; }
  .benefits-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    overflow-x: visible; gap: 20px 12px;
  }
  .benefit-icon-card { width: auto; }
  .benefits-scroll-arrow { display: none !important; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__links { gap: 32px; }
}

@media (max-width: 600px) {
  .hero-clip { height: 420px; }
  .hero { will-change: auto; }
  .hero__title { font-size: 28px; max-width: 280px; }
  .hero__subtitle { font-size: 14px; max-width: 260px; margin-bottom: 16px; }
  .hero__content { bottom: 120px; }
  .hero__cta { padding: 10px 20px; font-size: 13px; }
  .hero__limited-tag { font-size: 10px; padding: 5px 12px; }
}

/* ── Reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .hero__title, .hero__subtitle, .hero__cta, .hero__limited-tag { animation: none !important; }
  .hero__slide { transition-duration: 0.3s; }
  .hero__video { display: none; }
  .story-viewer { transition-duration: 0.01s !important; }
  .story-bubble { transition-duration: 0.01s !important; }
}


/* ══════════════════════════════════════════════
   STORIES ROW — Instagram-style circular thumbnails
   ══════════════════════════════════════════════ */

.stories-row {
  padding: var(--space-lg) 0 var(--space-xs);
  max-width: var(--container-max);
  margin: 0 auto;
}

.stories-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--container-pad);
  padding: 6px var(--container-pad);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.stories-track::-webkit-scrollbar { display: none; }

.story-bubble {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; cursor: pointer; flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.story-bubble:hover { transform: scale(1.05); }
.story-bubble:active { transform: scale(0.92); }

.story-bubble__ring {
  width: 85px; height: 85px;
  border-radius: 50%; padding: 2.5px;
  background: linear-gradient(135deg, var(--accent), #5B8CFF, var(--accent-dark));
  transition: all 0.3s ease;
  position: relative;
}

/* "For You" special multi-gradient ring */
.story-bubble--foryou .story-bubble__ring {
  background: linear-gradient(135deg, #2765FF, #7C3AED, #EC4899);
  padding: 2.5px;
}

.story-bubble--viewed .story-bubble__ring {
  background: #D1D5DB !important;
}

.story-bubble__img {
  width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--white);
  display: block;
}

/* ── Story badges ── */
.story-badge {
  position: absolute;
  top: -4px; right: -4px;
  font-size: 9px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 6px;
  border-radius: 8px;
  color: var(--white);
  line-height: 1.3;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border: 1.5px solid var(--white);
}
.story-badge--new { background: linear-gradient(135deg, #2765FF, #0EA5E9); }
.story-badge--hot { background: linear-gradient(135deg, #F97316, #EF4444); }
.story-badge--discount { background: var(--accent); }
.story-badge--premium { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.story-badge--infinite { background: linear-gradient(135deg, #1E293B, #475569); font-size: 7px; }

.story-bubble__label {
  font-size: 12px; font-weight: 500;
  color: var(--charcoal); text-align: center;
  max-width: 88px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  line-height: 1.2; margin-top: 1px;
}


/* ══════════════════════════════════════════════
   STORY VIEWER — Full-screen immersive overlay
   ══════════════════════════════════════════════ */

.story-viewer {
  position: fixed; inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.story-viewer.active { opacity: 1; visibility: visible; pointer-events: auto; }

.story-viewer__container {
  position: relative;
  width: 100%; max-width: 420px;
  height: 100%; max-height: 750px;
  border-radius: 16px; overflow: hidden;
  background: #000;
}

/* ── Top gradient overlay for header visibility ── */
.story-viewer__gradient-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 50%,
    transparent 100%);
  z-index: 3; pointer-events: none;
}

/* ── Progress bar ── */
.story-viewer__progress {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex; gap: 4px;
  padding: 12px 12px 0;
}

.story-viewer__progress-seg {
  flex: 1; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  overflow: hidden; cursor: pointer;
  position: relative;
}

.story-viewer__progress-fill {
  position: absolute; top: 0; left: 0;
  height: 100%; border-radius: 2px;
  background: var(--white);
  width: 0%;
}

/* ── Header ── */
.story-viewer__header {
  position: absolute; top: 24px; left: 0; right: 0;
  z-index: 10;
  display: flex; align-items: center;
  padding: 0 16px; gap: 10px;
}

.story-viewer__avatar {
  width: 36px; height: 36px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.7);
}

.story-viewer__name {
  font-size: 14px; font-weight: 700;
  color: var(--white); flex: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ── Close button — soft circle with blur ── */
.story-viewer__close {
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  color: var(--white); cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.story-viewer__close:hover {
  background: rgba(0,0,0,0.5);
  transform: scale(1.08);
}
.story-viewer__close:active { transform: scale(0.95); }
.story-viewer__close svg { stroke: var(--white); width: 18px; height: 18px; }

/* ── Media — subtle blur for background focus ── */
.story-viewer__media {
  position: absolute; inset: 0; z-index: 1;
  transition: opacity 0.25s ease;
}
.story-viewer__media.story-fade-out { opacity: 0; }
.story-viewer__media img,
.story-viewer__media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85);
}

/* ── Bottom gradient overlay — stronger for text readability ── */
.story-viewer__gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.7) 25%,
    rgba(0,0,0,0.35) 50%,
    transparent 100%);
  z-index: 2; pointer-events: none;
}

/* ── Bottom content — positioned higher with more bottom spacing ── */
.story-viewer__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 24px 22px 48px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.story-viewer__content.story-fade-out {
  opacity: 0; transform: translateY(8px);
}

.story-viewer__title {
  font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.story-viewer__desc {
  font-size: 15px; color: rgba(255,255,255,0.88);
  line-height: 1.55; margin-bottom: 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  max-width: 340px;
}

/* ── CTA button — story style, bigger & bolder ── */
.story-viewer__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  min-width: 200px;
  background: var(--white); color: #111;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 800;
  letter-spacing: 0.2px;
  border: none; border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.story-viewer__cta:hover {
  background: #f0f0f0;
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.story-viewer__cta:active {
  transform: scale(0.97);
}

/* ── Tap zones ── */
.story-viewer__tap-left,
.story-viewer__tap-right {
  position: absolute;
  top: 80px; bottom: 180px;
  z-index: 8; cursor: pointer;
  background: transparent; border: none;
  -webkit-tap-highlight-color: transparent;
}
.story-viewer__tap-left  { left: 0; width: 35%; }
.story-viewer__tap-right { right: 0; width: 65%; }


/* ── Stories responsive ── */
@media (max-width: 900px) {
  .stories-track {
    justify-content: flex-start;
    gap: 14px;
    padding-right: 40px; /* partial reveal of next item */
  }
  .story-bubble__ring { width: 78px; height: 78px; }
  .story-bubble__label { font-size: 10px; max-width: 80px; }
  .story-badge { font-size: 7px; padding: 2px 5px; }

  .story-viewer__container {
    max-width: 100%; max-height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .stories-track { gap: 9px; padding-right: 0; }
  .story-bubble { gap: 6px; }
  .story-bubble__ring { width: 85px; height: 85px; }
  .story-bubble__label { font-size: 12px; max-width: 85px; }
  .story-badge { font-size: 9px; padding: 2px 6px; top: -4px; right: -4px; }
  .story-viewer__title { font-size: 20px; }
  .story-viewer__desc { font-size: 14px; margin-bottom: 18px; }
  .story-viewer__cta { padding: 14px 32px; font-size: 15px; min-width: 180px; }
  .story-viewer__content { padding: 20px 18px 40px; }
}
