/* Ã¢â€â‚¬Ã¢â€â‚¬ DESIGN TOKENS Ã¢â€â‚¬Ã¢â€â‚¬ */
:root {
  --navy: #0E3B75;
  --blue: #0056A6;
  --sky: #E8F2FF;
  --teal: #1ABC9C;
  --teal-dark: #159A80;
  --bg: #F5F7FA;
  --red: #E53E3E;
  --orange: #F97316;
  --green: #16A34A;
  --amber: #FBBF24;
  --text: #1F2937;
  --muted: #6B7280;
  --white: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(0, 86, 166, .08);
  --card-shadow-hover: 0 12px 40px rgba(0, 86, 166, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all .25s cubic-bezier(.4, 0, .2, 1);
  --line: rgba(14, 59, 117, .1);
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
  --sh-sm: 0 2px 12px rgba(14, 59, 117, .07);
  --sh-md: 0 6px 24px rgba(14, 59, 117, .12);
  --sh-lg: 0 16px 48px rgba(14, 59, 117, .17);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .25s;
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬ RESET Ã¢â€ â‚¬Ã¢â€ â‚¬ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.copy-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}

.copy-btn:hover {
  background: var(--navy);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TYPOGRAPHY Ã¢â€â‚¬Ã¢â€â‚¬ */
h1,
h2,
h3,
h4 {
  font-family: 'Syne', sans-serif;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 2rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ UTILITIES Ã¢â€â‚¬Ã¢â€â‚¬ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: .2px;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

/* .btn-navy { background: var(--navy); color: var(--white); } */
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(14, 59, 117, .25);
}

.btn-navy:hover {
  background: var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.badge-teal {
  background: rgba(26, 188, 156, .15);
  color: var(--teal-dark);
}

.badge-blue {
  background: var(--sky);
  color: var(--blue);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NAVBAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  height: 68px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

/* .nav-link:hover { background: rgba(255,255,255,.1); color: var(--white); } */
.nav-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  overflow: hidden;
  flex: 1;
  max-width: 320px;
  transition: background .2s, border-color .2s;
}

.nav-search:focus-within {
  background: rgba(255, 255, 255, .18);
  border-color: var(--teal);
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  padding: 10px 16px;
  font-size: .9rem;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.nav-search-btn {
  background: var(--teal);
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  color: var(--white);
  transition: background .2s;
}

/* .nav-search-btn:hover { background: var(--teal-dark); } */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  width: 100%;
}

.mobile-search {
  display: flex;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  overflow: hidden;
  margin-top: 8px;
}

.mobile-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  padding: 10px 16px;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
}

.mobile-search input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.mobile-search button {
  background: var(--teal);
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  color: var(--white);
}

/* Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬ TOAST Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬Ã¢â€ â‚¬ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1A2332;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  z-index: 9999;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0)
}

.toast-icon {
  font-size: 1rem
}

/* ══ CINEMATIC HERO SLIDER ══ */
.cine-hero {
  background: #050d1a;
  overflow: hidden;
}

/* Stage */
.cine-stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 58vw, 680px);
  overflow: hidden;
}

/* Slides */
.cine-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), visibility .9s;
  z-index: 1;
}

.cine-slide.cine-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Image with Ken Burns effect */
.cine-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cine-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform-origin: center;
  animation: none;
}

.cine-slide.cine-active .cine-img {
  animation: cineKenBurns 8s ease-out forwards;
}

@keyframes cineKenBurns {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* Gradient overlays */
.cine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 13, 26, .88) 0%,
      rgba(5, 13, 26, .55) 55%,
      rgba(5, 13, 26, .15) 100%);
}

.cine-overlay-blue {
  background: linear-gradient(105deg,
      rgba(0, 30, 80, .92) 0%,
      rgba(0, 56, 140, .55) 55%,
      rgba(0, 56, 140, .1) 100%);
}

.cine-overlay-dark {
  background: linear-gradient(105deg,
      rgba(10, 5, 20, .92) 0%,
      rgba(50, 10, 80, .55) 55%,
      rgba(50, 10, 80, .1) 100%);
}

/* Content */
.cine-content {
  position: absolute;
  top: 50%;
  left: clamp(20px, 6vw, 90px);
  transform: translateY(-50%);
  max-width: 560px;
  z-index: 3;
  color: #fff;
}

/* Animated entry for active slide content */
.cine-slide.cine-active .cine-badge {
  animation: cineSlideUp .6s .1s both;
}

.cine-slide.cine-active .cine-title {
  animation: cineSlideUp .6s .2s both;
}

.cine-slide.cine-active .cine-desc {
  animation: cineSlideUp .6s .32s both;
}

.cine-slide.cine-active .cine-actions {
  animation: cineSlideUp .6s .44s both;
}

.cine-slide.cine-active .cine-stats {
  animation: cineSlideUp .6s .56s both;
}

@keyframes cineSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.cine-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(26, 188, 156, .18);
  border: 1px solid rgba(26, 188, 156, .45);
  color: #1ABC9C;
  backdrop-filter: blur(6px);
  margin-bottom: 18px;
}

.cine-badge-blue {
  background: rgba(0, 120, 255, .18);
  border-color: rgba(0, 120, 255, .4);
  color: #5ba4f5;
}

.cine-badge-gold {
  background: rgba(255, 185, 0, .18);
  border-color: rgba(255, 185, 0, .4);
  color: #ffd555;
}

/* Title */
.cine-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.cine-title span {
  background: linear-gradient(135deg, #1ABC9C, #5bf5d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Blue slide title accent */
.cine-slide[data-index="1"] .cine-title span {
  background: linear-gradient(135deg, #5ba4f5, #7ec8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold slide title accent */
.cine-slide[data-index="2"] .cine-title span {
  background: linear-gradient(135deg, #ffd555, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desc */
.cine-desc {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.cine-desc strong {
  color: #fff;
  font-weight: 700;
}

/* CTA Buttons */
.cine-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cine-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, background .22s;
  letter-spacing: .3px;
  white-space: nowrap;
}

.cine-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.cine-btn-primary {
  background: linear-gradient(135deg, #1ABC9C, #0EA882);
  color: #fff;
  box-shadow: 0 6px 24px rgba(26, 188, 156, .4);
}

.cine-btn-primary:hover {
  background: linear-gradient(135deg, #0EA882, #0C8A6A);
}

.cine-btn-blue {
  background: linear-gradient(135deg, #0078ff, #005fd4);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 120, 255, .4);
}

.cine-btn-blue:hover {
  background: linear-gradient(135deg, #005fd4, #004ab0);
}

.cine-btn-gold {
  background: linear-gradient(135deg, #f5a623, #e6910f);
  color: #fff;
  box-shadow: 0 6px 24px rgba(245, 166, 35, .4);
}

.cine-btn-gold:hover {
  background: linear-gradient(135deg, #e6910f, #cc7d00);
}

.cine-btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.cine-btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .5);
}

/* Mini Stats Bar */
.cine-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(12px);
  width: fit-content;
}

.cstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.cstat:first-child {
  padding-left: 0;
}

.cstat:last-child {
  padding-right: 0;
}

.cstat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.cstat-lbl {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.cstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
}

/* Arrows */
.cine-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: background .25s, border-color .25s, transform .25s;
}

.cine-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.08);
}

.cine-prev {
  left: 24px;
}

.cine-next {
  right: 24px;
}

/* Progress bar */
.cine-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  z-index: 10;
}

.cine-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), #5bf5d5);
  border-radius: 3px;
}

/* Dot navigation */
.cine-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cine-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}

.cine-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--teal);
}

/* Counter */
.cine-counter {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Syne', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
}

.cine-counter #cineCurrentNum {
  font-size: 1.2rem;
  color: #fff;
}

.cine-counter-sep {
  margin: 0 2px;
  color: rgba(255, 255, 255, .3);
}

/* Responsive */
@media (max-width: 768px) {
  .mbs-track {
    gap: 8px;
  }

  .mbs-card {
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
  }

  .pbb-track {
    gap: 8px;
  }

  .pbb-card {
    flex: 0 0 calc(25% - 6px);
    height: 48px;
    padding: 6px;
  }

  .cine-stage {
    height: clamp(360px, 85vw, 520px);
  }

  .cine-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .cine-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .cine-desc {
    font-size: .875rem;
  }

  .cine-actions {
    gap: 10px;
  }

  .cine-btn {
    padding: 10px 20px;
    font-size: .82rem;
  }

  .cine-stats {
    padding: 10px 14px;
  }

  .cstat {
    padding: 0 12px;
  }

  .cstat-val {
    font-size: 1.1rem;
  }

  .cine-arrow {
    width: 40px;
    height: 40px;
  }

  .cine-prev {
    left: 12px;
  }

  .cine-next {
    right: 12px;
  }

  .cine-counter {
    display: none;
  }
}

@media (max-width: 480px) {
  .cine-stats {
    display: none;
  }

  .cine-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Ã¢â€â‚¬Ã¢â€â‚¬ BRAND SCROLLER Ã¢â€â‚¬Ã¢â€â‚¬ */
.brand-scroll-wrap {
  background: var(--white);
  border-top: 1px solid rgba(0, 86, 166, .08);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.brand-scroll-track {
  display: flex;
  gap: 0;
  animation: scroll-brands 28s linear infinite;
}

.brand-scroll-track:hover {
  animation-play-state: paused;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--muted);
  transition: color .2s;
  white-space: nowrap;
  cursor: pointer;
}

.brand-item:hover {
  color: var(--blue);
}

.brand-dot {
  color: var(--teal);
  margin-right: 8px;
  font-size: 1.2rem;
}

@keyframes scroll-brands {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DAILY OFFERS Ã¢â€â‚¬Ã¢â€â‚¬ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* ══ OFFER CARDS (NEW) ══════════════════════════════════════ */
@keyframes ocFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offer-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
}

.offer-card.oc-anim {
  opacity: 0;
  animation: ocFadeUp .55s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--oc-delay, 0ms);
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 86, 166, .18);
}

/* Image section */
.oc-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.oc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.offer-card:hover .oc-img {
  transform: scale(1.08);
}

.oc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 30%,
      color-mix(in srgb, var(--oc-color, #0056A6) 70%, #000) 100%);
  pointer-events: none;
}

/* Type badge top-left */
.oc-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.oc-badge-coupon {
  background: rgba(0, 86, 166, .82);
}

.oc-badge-deal {
  background: rgba(14, 168, 130, .88);
}

/* Brand pill bottom of image */
.oc-brand-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 4px 12px 4px 4px;
  font-size: .78rem;
  font-weight: 700;
  color: #0a1628;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  transition: transform .3s ease;
}

.offer-card:hover .oc-brand-pill {
  transform: translateY(-3px);
}

.oc-brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

/* Body */
.oc-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.oc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: #0a1628;
}

.oc-desc {
  font-size: .82rem;
  color: #5a6a85;
  line-height: 1.55;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.oc-expiry {
  font-size: .74rem;
  color: #8a9bba;
}

.oc-expiry strong {
  color: #0EA882;
  font-weight: 700;
}

.oc-btn {
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.oc-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.oc-btn-coupon {
  background: linear-gradient(135deg, #0056A6, #1a7fd4);
  color: #fff;
}

.oc-btn-deal {
  background: linear-gradient(135deg, #0EA882, #1bc79a);
  color: #fff;
}

/* Keep old classes functional for fallback */
.btn-coupon {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .3px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.btn-coupon:hover {
  background: var(--blue);
  transform: scale(1.04);
}

.btn-deal {
  background: linear-gradient(135deg, var(--teal), #0EA882);
  color: var(--white);
}

.btn-deal:hover {
  background: linear-gradient(135deg, var(--teal-dark), #0C8A6A);
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ EXCLUSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */
.exclusive-section {
  background: linear-gradient(135deg, #E8F2FF 0%, #F0FBF8 100%);
}

.exclusive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}


/* ══ EXCLUSIVE CARDS (NEW) ═══════════════════════════════════ */
@keyframes ecSlideIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.excl-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .09);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s cubic-bezier(.22, 1, .36, 1);
  cursor: pointer;
}

.excl-card.ec-anim {
  opacity: 0;
  animation: ecSlideIn .6s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--ec-delay, 0ms);
}

.excl-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0, 86, 166, .2);
}

/* Image section */
.ec-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.ec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
  display: block;
}

.excl-card:hover .ec-img {
  transform: scale(1.07);
}

.ec-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .08) 0%,
      color-mix(in srgb, var(--ec-color, #0056A6) 80%, #000) 100%);
  pointer-events: none;
}

/* Exclusive badge top-right */
.ec-exclusive-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 200, 0, .95);
  color: #0a1628;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

/* Brand row at bottom of image */
.ec-brand-row {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .3s ease;
}

.excl-card:hover .ec-brand-row {
  transform: translateY(-3px);
}

.ec-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.ec-brand-name {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  line-height: 1;
  margin-bottom: 3px;
}

.ec-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  line-height: 1.3;
}

/* Body */
.ec-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ec-desc {
  font-size: .85rem;
  color: #5a6a85;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Code row */
.ec-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f6ff;
  border: 1.5px dashed #0056A6;
  border-radius: 10px;
  padding: 10px 14px;
}

.ec-code-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ec-code-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .8px;
  color: #8a9bba;
  text-transform: uppercase;
}

.ec-code-val {
  font-family: 'DM Mono', monospace, monospace;
  font-weight: 700;
  color: #0056A6;
  font-size: 1rem;
  letter-spacing: 1.5px;
}

.ec-copy-btn {
  background: linear-gradient(135deg, #0056A6, #1a7fd4);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .5px;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}

.ec-copy-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 86, 166, .35);
}


.excl-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}

.excl-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ POPULAR STORES Ã¢â€â‚¬Ã¢â€â‚¬ */
.stores-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
}

.featured-card {
  background: linear-gradient(145deg, var(--navy), #091E3A);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: rgba(26, 188, 156, .12);
  border-radius: 50%;
  pointer-events: none;
}

.featured-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  background: rgba(0, 86, 166, .18);
  border-radius: 50%;
  pointer-events: none;
}

.featured-crown {
  font-size: 3rem;
  margin-bottom: 8px;
}

.featured-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.featured-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.featured-sub {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  margin-bottom: 24px;
}

.featured-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.stat {}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}

.stat-lbl {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-content: start;
}

.store-card {
  background: var(--surface);
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  padding: 22px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  min-width: 148px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.store-icon {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  font-size: .9rem;
  color: var(--white);
  margin: 0 auto;
}

.store-card .store-name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
}

.store-card .store-count {
  font-size: .75rem;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 56px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .nav-logo {
  font-size: 1.7rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(0);
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(6px);
}

.footer-links a::before {
  content: '➝';
  font-size: .75rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  transition: background .2s, color .2s;
  font-size: .8rem;
  font-weight: 700;
}

.social-btn:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .45);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ ANIMATIONS Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fade-up .6s ease forwards;
}

.fade-up-1 {
  animation-delay: .1s;
}

.fade-up-2 {
  animation-delay: .2s;
}

.fade-up-3 {
  animation-delay: .3s;
}

.fade-up-4 {
  animation-delay: .4s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exclusive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stores-layout {
    grid-template-columns: 1fr;
  }

  .featured-card {
    min-height: auto;
  }

  .stores-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .slide-visual {
    display: none;
  }
}

@media (max-width: 768px) {


  .section {
    padding: 48px 0;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .exclusive-grid {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    /* text-align: center;  */
  }

  .footer-brand p {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-row {
    justify-content: center;
  }

  .slide-inner {
    padding: 36px 28px;
    flex-direction: column;
    text-align: center;
    min-height: 260px;
  }

  .slider-arrow {
    display: none;
  }
}

@media (max-width: 400px) {
  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   STORE PAGE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Store Banner Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.store-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.store-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #091E3A 0%, #0E3B75 50%, #1A5C9A 100%);
}

.store-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(26, 188, 156, .12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 86, 166, .18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .03) 0%, transparent 60%);
}

.store-banner-mesh {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, .02) 40px, rgba(255, 255, 255, .02) 41px);
}

.store-banner-content {
  position: relative;
  z-index: 2;
  padding: 44px 0 0
}

.store-identity {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.store-logo-outer {
  width: 104px;
  height: 104px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.store-logo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: inherit;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: -1px;
}

.store-info {
  flex: 1;
  min-width: 260px
}

.store-info .store-name {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.store-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap
}

.star-display {
  display: flex;
  align-items: center;
  gap: 3px
}

.star {
  color: var(--amber);
  font-size: 1.1rem
}

.star.half {
  opacity: .5
}

.rating-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff
}

.rating-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5)
}

.store-desc {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  max-width: 580px;
  margin-bottom: 20px;
}

.store-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.store-stats-strip {
  background: rgba(0, 0, 0, .2);
  border-top: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.store-stats-inner {
  display: flex;
  flex-wrap: wrap
}

.stat-item {
  flex: 1;
  min-width: 130px;
  text-align: center;
  padding: 18px 16px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  position: relative
}

.stat-item:last-child {
  border-right: none
}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1
}

.stat-lbl {
  font-size: .73rem;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 5px;
  display: block
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Store Tabs Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.store-tab-bar {
  background: #fff;
  border-bottom: 2px solid rgba(14, 59, 117, .08);
  position: sticky;
  top: 66px;
  z-index: 100;
}

.store-tab-inner {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.store-tab-inner::-webkit-scrollbar {
  display: none
}

.s-tab {
  padding: 17px 26px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-tab:hover {
  color: var(--blue)
}

.s-tab.active {
  color: var(--blue);
  border-bottom-color: var(--blue)
}

.s-tab-count {
  background: var(--sky);
  color: var(--blue);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: .72rem;
  font-weight: 700;
}

.s-tab.active .s-tab-count {
  background: var(--blue);
  color: #fff
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Layout Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.store-layout {
  display: grid;
  grid-template-columns: 1fr 308px;
  gap: 28px;
  align-items: start
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Coupon Cards Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.coupon-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(14, 59, 117, .06);
  box-shadow: 0 2px 12px rgba(14, 59, 117, .04);
  overflow: hidden;
  transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.c-card:hover {
  box-shadow: 0 8px 28px rgba(14, 59, 117, .1);
  transform: translateY(-4px);
  border-color: rgba(26, 188, 156, .2);
}

.c-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.c-card-body {
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.c-card-icon-col {
  flex-shrink: 0;
}

.c-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), rgba(26, 188, 156, .1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 86, 166, .08);
}

.c-main {
  flex: 1;
  min-width: 200px;
}

.c-type {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.c-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}

.c-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
  transition: max-height .35s ease;
}

.c-desc-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-show-more-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  transition: color .2s;
  font-family: 'DM Sans', sans-serif;
}

.c-show-more-btn:hover {
  color: var(--teal);
}

.c-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.c-expiry {
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-expiry b {
  color: var(--text);
}

.expiring-badge {
  background: #FEF2F2;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
}

.c-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.code-wrap {
  width: 100%;
  background: linear-gradient(135deg, var(--sky), rgba(26, 188, 156, .06));
  border: 2px dashed rgba(0, 86, 166, .25);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  transition: border-color .2s;
}

.c-card:hover .code-wrap {
  border-color: var(--teal);
}

.code-val {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 2px;
  display: block;
}

.code-lbl {
  font-size: .68rem;
  color: var(--muted);
  margin-top: 3px;
}

.copy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), #1A5C9A);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .3px;
}

.copy-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(0, 86, 166, .2);
}

.copy-btn.copied {
  background: var(--green);
}

.success-track {
  width: 100%;
}

.success-bar {
  height: 5px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
}

.success-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), #0EA882);
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.success-label {
  font-size: .73rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Deal Cards (store tab) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.deal-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Sidebar Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(66px + 60px + 24px)
}

.s-widget {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid rgba(14, 59, 117, .08);
  box-shadow: var(--shadow-sm);
  overflow: hidden
}

.s-widget-head {
  padding: 16px 20px;
  border-bottom: 1.5px solid rgba(14, 59, 117, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-widget-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy)
}

.s-widget-body {
  padding: 16px 20px
}

.rel-store-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(14, 59, 117, .05);
  cursor: pointer;
  transition: var(--transition);
}

.rel-store-row:last-child {
  border-bottom: none
}

.rel-store-row:hover {
  transform: translateX(4px)
}

.rel-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  color: #fff;
}

.rel-name {
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 1px
}

.rel-count {
  font-size: .75rem;
  color: var(--muted)
}

.trending-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(14, 59, 117, .05);
  cursor: pointer;
}

.trending-item:last-child {
  border-bottom: none
}

.trending-item-title {
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 3px;
  line-height: 1.35
}

.trending-item-meta {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px
}

.cat-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px
}

.cat-tag {
  padding: 6px 14px;
  border-radius: 50px;
  background: var(--sky);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.cat-tag:hover {
  background: var(--blue);
  color: #fff
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   DEALS PAGE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Deals Hero Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.deals-hero {
  background: #080C14;
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}

.deals-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 60%, rgba(26, 188, 156, .1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(124, 58, 237, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 86, 166, .08) 0%, transparent 60%);
}

.deals-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.deals-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 0
}

.deals-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.5s ease infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 62, 62, .5)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(229, 62, 62, 0)
  }
}

.live-text {
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .8px
}

.deals-hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.deals-hero-title .accent-teal {
  color: var(--teal)
}

.deals-hero-title .accent-orange {
  color: var(--orange)
}

.deals-hero-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Countdown Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.countdown-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap
}

.cd-block {
  text-align: center;
  min-width: 90px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .1);
  position: relative;
}

.cd-block:first-child {
  border-radius: 16px 0 0 16px
}

.cd-block:last-child {
  border-radius: 0 16px 16px 0
}

.cd-block:not(:last-child) {
  border-right: none
}

.cd-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
  text-shadow: 0 0 24px rgba(26, 188, 156, .3);
}

.cd-lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 6px;
  display: block
}

.cd-sep {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  align-self: center;
  padding: 0 2px;
  animation: blink .8s ease infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Deal Category Pills Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.deal-filter-strip {
  background: rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 18px 0;
}

.deal-filter-inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.d-pill {
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

.d-pill:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.d-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 188, 156, .3)
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Deals Sections Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.deals-page-bg {
  background: var(--bg)
}

.deals-section {
  /* padding: 52px 0 */
}

.deals-section+.deals-section {
  padding-top: 0
}

.ds-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap
}

.ds-title-wrap {}

.ds-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px
}

.ds-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--navy)
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Deal Card Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.deals-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.deals-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.deal-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(14, 59, 117, .07);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.deal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.01)
}

.deal-card-img {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-card-emoji {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .2));
  transition: transform .3s
}

.deal-card:hover .deal-card-emoji {
  transform: scale(1.1) rotate(-3deg)
}

/* .deal-pct-badge{
  position:absolute;top:12px;left:12px;z-index:3;
  background:var(--red);color:#fff;
  font-family:'Syne',sans-serif;font-weight:800;font-size:1rem;
  padding:5px 13px;border-radius:50px;
  box-shadow:0 4px 12px rgba(229,62,62,.4);
} */
.deal-pct-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--red);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(229, 62, 62, .4);
}

/* .deal-hot-badge{
  position:absolute;top:12px;right:12px;z-index:3;
  background:var(--orange);color:#fff;
  font-size:.72rem;font-weight:700;padding:4px 10px;border-radius:50px;
  display:flex;align-items:center;gap:4px;
  animation:hot-pulse 2s ease infinite;
} */

.deal-hot-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: hot-pulse 2s ease infinite;
}

@keyframes hot-pulse {

  0%,
  100% {
    box-shadow: 0 4px 12px rgba(249, 115, 22, .4)
  }

  50% {
    box-shadow: 0 4px 20px rgba(249, 115, 22, .7)
  }
}

.deal-new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.deal-card-body {
  padding: 16px 18px
}

.deal-store-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px
}

.deal-store-dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .55rem;
  color: #fff;
  flex-shrink: 0
}

.deal-store-name {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500
}

.deal-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .93rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 10px
}

.deal-orig {
  font-size: .85rem;
  color: #94A3B8;
  text-decoration: line-through
}

.deal-disc {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text)
}

.deal-save {
  font-size: .75rem;
  color: var(--green);
  font-weight: 600;
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 50px
}

.deal-timer-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #FEF2F2;
  border-radius: 8px;
  padding: 7px 11px;
  margin-bottom: 12px;
}

.deal-timer-icon {
  font-size: .85rem
}

.deal-timer-text {
  font-size: .78rem;
  font-weight: 600;
  color: var(--red);
  flex: 1
}

.deal-timer-countdown {
  font-family: 'Syne', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--red)
}

.deal-buy-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .2px;
}

.deal-buy-btn:hover {
  background: var(--blue);
  transform: scale(1.02)
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Featured Deal Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.featured-deal {
  background: linear-gradient(135deg, var(--navy), #1A5C9A);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.fd-left {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px
}

.fd-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px
}

.fd-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2
}

.fd-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.65
}

.fd-price {
  display: flex;
  align-items: baseline;
  gap: 12px
}

.fd-orig {
  font-size: 1rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through
}

.fd-disc {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal)
}

.fd-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border-left: 1px solid rgba(255, 255, 255, .08);
  font-size: 9rem;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.fd-right::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(26, 188, 156, .08);
  top: -80px;
  right: -80px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Best Today Row Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.best-today-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px
}

.best-today-feat {
  background: linear-gradient(160deg, #1A0533, #4A1A7A);
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.best-today-feat::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(26, 188, 156, .08);
  bottom: -60px;
  right: -60px;
}

.btf-emoji {
  font-size: 4rem;
  margin-bottom: auto;
  position: relative;
  z-index: 1
}

.btf-badge {
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.btf-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  z-index: 1
}

.btf-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1
}

.btf-orig {
  font-size: .875rem;
  color: rgba(255, 255, 255, .4);
  text-decoration: line-through
}

.btf-disc {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff
}

.best-today-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.btl-item {
  background: #fff;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(14, 59, 117, .07);
  box-shadow: var(--shadow-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btl-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md)
}

.btl-emoji {
  font-size: 2.2rem;
  flex-shrink: 0
}

.btl-info {
  flex: 1;
  min-width: 0
}

.btl-title {
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: 3px;
  line-height: 1.3
}

.btl-store {
  font-size: .75rem;
  color: var(--muted)
}

.btl-price {
  text-align: right;
  flex-shrink: 0
}

.btl-disc {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text)
}

.btl-orig {
  font-size: .75rem;
  color: #94A3B8;
  text-decoration: line-through
}

.btl-pct {
  font-size: .72rem;
  color: var(--red);
  font-weight: 700;
  background: #FEF2F2;
  padding: 2px 7px;
  border-radius: 50px;
  margin-top: 3px;
  display: block;
  text-align: right
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .deals-grid-4 {
    grid-template-columns: repeat(3, 1fr)
  }

  .best-today-grid {
    grid-template-columns: 1fr
  }

  .best-today-feat {
    min-height: 220px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px
  }

  .btf-emoji {
    font-size: 3rem;
    margin: 0
  }
}

@media(max-width:1040px) {

  .nav-links,
  .nav-search {
    display: none
  }

  .ham {
    display: flex
  }

  .store-layout {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr)
  }

  .deals-grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .deals-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .deal-mini-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .featured-deal {
    grid-template-columns: 1fr
  }

  .fd-right {
    display: none
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }
}

@media(max-width:767px) {
  .store-identity {
    flex-direction: column
  }

  .store-logo-outer {
    width: 80px;
    height: 80px
  }

  .store-logo-inner {
    font-size: 1.5rem
  }

  .store-banner-content {
    padding: 28px 0 0
  }

  .deals-grid-4,
  .deals-grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .deal-mini-grid {
    grid-template-columns: 1fr
  }

  .sidebar {
    grid-template-columns: 1fr
  }

  .c-card-body {
    flex-direction: column
  }

  .c-action {
    min-width: unset;
    width: 100%
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-desc {
    max-width: 100%
  }

  .footer-social {
    justify-content: center
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center
  }
}

@media(max-width:520px) {

  .deals-grid-4,
  .deals-grid-3 {
    grid-template-columns: 1fr
  }

  .countdown-outer {
    gap: 0
  }

  .cd-block {
    min-width: 70px;
    padding: 14px 10px
  }

  .cd-num {
    font-size: 2rem
  }
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  background: #ECFDF5;
  color: #065F46;
  font-size: .73rem;
  font-weight: 700;
}

.verified::before {
  content: '✔';
  font-weight: 800;
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

/* CATEGORY PAGE STYLES */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 66px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

@media (max-width: 1100px) {
  .nav-wrap {
    gap: 24px;
  }
}

/* Logo */
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  letter-spacing: -.5px;
}

.nav-logo .dot {
  color: var(--teal);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  border: none;
  background: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.nav-link:hover,
.nav-link.active {
  /* background: rgba(255,255,255,.12);  */
  color: #fff;
}

.nav-link svg {
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}

.nav-item:hover>.nav-link svg,
.nav-item.open>.nav-link svg {
  transform: rotate(180deg);
}

/* Search */
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 50px;
  overflow: hidden;
  width: 280px;
  transition: all var(--dur) var(--ease);
}

.nav-search:focus-within {
  background: rgba(255, 255, 255, .16);
  border-color: var(--teal);
  width: 320px;
}

.nav-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  padding: 9px 16px;
  font-size: .875rem;
  width: 100%;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.nav-search-btn {
  background: var(--teal);
  border: none;
  padding: 11px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: background var(--dur);
}

/* .nav-search-btn:hover { background: var(--teal-d); } */

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   MEGA MENU (DESKTOP)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -24px;
  width: 860px;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--line);
  padding: 28px 28px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all .22s var(--ease);
  z-index: 600;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid var(--line);
}

.mega-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-col {
  padding-right: 20px;
}

.mega-col:last-child {
  padding-right: 0;
  border-right: none;
}

.mega-col+.mega-col {
  padding-left: 20px;
  border-left: 1.5px solid var(--line);
}

.mega-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mega-col-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  margin-bottom: 2px;
}

.mega-link:hover {
  background: var(--sky);
  color: var(--blue);
  transform: translateX(3px);
}

.mega-link-badge {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   SUB MENU
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 240px;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--line);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .22s var(--ease);
  z-index: 600;
}

.sub-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-item:hover .sub-menu,
.nav-item.open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.sub-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  margin-bottom: 2px;
}

.sub-menu-link:hover {
  background: var(--sky);
  color: var(--blue);
  transform: translateX(3px);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   MOBILE DRAWER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 800;
  opacity: 0;
  transition: opacity .3s;
}

.drawer-overlay.open {
  display: block;
  opacity: 1;
}

.drawer {
  position: fixed;
  top: 0;
  left: -320px;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 900;
  box-shadow: 4px 0 40px rgba(0, 0, 0, .2);
  transition: left .32s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  left: 0;
}

@media (min-width: 1051px) {

  .drawer-overlay,
  .drawer-overlay.open {
    display: none !important;
  }

  .drawer,
  .drawer.open {
    display: none !important;
  }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--navy);
}

.drawer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}

.drawer-logo span {
  color: var(--teal);
}

.drawer-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.drawer-search {
  margin: 14px 16px;
  display: flex;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 50px;
  overflow: hidden;
}

.drawer-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: .875rem;
  color: var(--text);
}

.drawer-search button {
  background: var(--teal);
  border: none;
  padding: 10px 14px;
  color: #fff;
  display: flex;
  align-items: center;
}

.drawer-nav {
  flex: 1;
  padding: 8px 0;
}

.drawer-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 20px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur);
}

.drawer-item:hover {
  background: var(--bg);
}

.drawer-item.active {
  color: var(--blue);
  background: var(--sky);
}

.drawer-arrow {
  color: var(--muted);
  font-size: .8rem;
  transition: transform var(--dur);
  margin-left: auto;
}

.drawer-item.open .drawer-arrow {
  transform: rotate(90deg);
}

.drawer-sub {
  display: none;
  background: var(--bg);
  padding: 4px 0 8px;
}

.drawer-sub.open {
  display: block;
}

.drawer-sub-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 12px 24px 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-sub-link {
  display: block;
  padding: 9px 28px;
  font-size: .875rem;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--dur);
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-sub-link:hover {
  color: var(--blue);
  background: #fff;
  padding-left: 34px;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   CATEGORY HERO
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.cat-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #091E3A 0%, #0E3B75 55%, #1A6DC8 100%);
  padding: 52px 0 0;
}

.cat-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 10% 60%, rgba(26, 188, 156, .12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(0, 86, 166, .18) 0%, transparent 60%);
}

.cat-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 56px 56px;
}

.cat-hero-inner {
  position: relative;
  z-index: 2;
}

.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.cat-breadcrumb span {
  cursor: pointer;
  transition: color var(--dur);
}

.cat-breadcrumb span:hover {
  color: #fff;
}

.cat-breadcrumb .sep {
  opacity: .4;
}

.cat-breadcrumb .current {
  color: var(--teal);
  font-weight: 600;
}

.cat-title-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cat-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
}

.cat-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.cat-subtitle {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 24px;
}

.cat-hero-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
}

.hero-stat-lbl {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 2px;
}

/* Sub-category pills */
.cat-subcat-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 20px;
  scrollbar-width: none;
}

.cat-subcat-row::-webkit-scrollbar {
  display: none;
}

.subcat-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .8);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.subcat-pill:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.subcat-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 188, 156, .35);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   STICKY FILTER BAR
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.filter-bar-wrap {
  position: sticky;
  top: 68px;
  z-index: 200;
  background: #fff;
  border-bottom: 1.5px solid var(--line);
  box-shadow: 0 4px 16px rgba(14, 59, 117, .06);
}

.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Sort dropdown */
.sort-wrap {
  position: relative;
  flex-shrink: 0;
}

.sort-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur);
  white-space: nowrap;
}

.sort-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.sort-btn.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}

.sort-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  border: 1.5px solid var(--line);
  min-width: 180px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .2s var(--ease);
  overflow: hidden;
}

.sort-wrap.open .sort-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sort-option {
  padding: 11px 16px;
  font-size: .875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background var(--dur);
  color: var(--text-2);
}

.sort-option:hover {
  background: var(--sky);
  color: var(--blue);
}

.sort-option.selected {
  color: var(--blue);
  font-weight: 600;
}

.sort-option .check {
  color: var(--teal);
  font-weight: 800;
  margin-left: auto;
}

/* Divider */
.filter-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
  flex-shrink: 0;
}

/* Filter chips */
.f-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.f-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.f-chip.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.f-chip.active.green {
  background: var(--green);
  border-color: var(--green);
}

.f-chip.active.red {
  background: var(--red);
  border-color: var(--red);
}

.f-chip.active.orange {
  background: var(--orange);
  border-color: var(--orange);
}

.f-chip.active.purple {
  background: var(--purple);
  border-color: var(--purple);
}

.f-chip-x {
  font-size: .75rem;
  opacity: .7;
}

.filter-result-count {
  margin-left: auto;
  font-size: .8rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-result-count b {
  color: var(--text);
}

/* Clear all */
.clear-all-btn {
  background: none;
  border: none;
  font-size: .8rem;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all var(--dur);
}

.clear-all-btn:hover {
  background: var(--sky);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   MAIN LAYOUT
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.main-section {
  padding: 36px 0 64px;
}

.page-layout {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 28px;
  align-items: start;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Left Sidebar Filters Ã¢â€â‚¬Ã¢â€â‚¬ */
.sidebar-filters {
  background: var(--surface);
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  position: sticky;
  top: calc(68px + 60px + 16px);
}

.sf-head {
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}

.sf-clear {
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
}

.sf-section {
  padding: 18px 20px;
  border-bottom: 1.5px solid var(--line);
}

.sf-section:last-child {
  border-bottom: none;
}

.sf-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.sf-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  cursor: pointer;
  font-size: .875rem;
  color: var(--text-2);
  transition: color var(--dur);
}

.sf-option:hover {
  color: var(--blue);
}

.sf-option-left {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sf-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid #CBD5E1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur);
  flex-shrink: 0;
}

.sf-checkbox.checked {
  background: var(--blue);
  border-color: var(--blue);
}

.sf-checkbox.checked::after {
  /* content: 'Ã¢Å“â€œ'; */
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
}

.sf-count {
  font-size: .73rem;
  color: var(--muted);
}

.sf-range {
  padding: 4px 0;
}

.range-slider {
  width: 100%;
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
  appearance: none;
  outline: none;
  cursor: pointer;
  accent-color: var(--blue);
  margin: 10px 0 6px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Deals Grid Ã¢â€â‚¬Ã¢â€â‚¬ */
.deals-col {}

.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.grid-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.view-toggle {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.view-btn {
  padding: 7px 12px;
  background: #fff;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: all var(--dur);
  display: flex;
  align-items: center;
}

.view-btn.active {
  background: var(--navy);
  color: #fff;
}

/* Deals Grid */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  transition: all var(--dur);
}

.deals-grid.list-view {
  grid-template-columns: 1fr;
}

/* Deal Card */
.deal-card {
  background: var(--surface);
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  position: relative;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  display: flex;
  flex-direction: column;
  animation: fadeUp .4s var(--ease) both;
}

.deal-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
}

.deal-card-top {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.deals-grid.list-view .deal-card {
  flex-direction: row;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.deals-grid.list-view .card-badges {
  top: 14px;
  left: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  width: fit-content;
}

.badge-pct {
  background: var(--red);
  color: #fff;
  box-shadow: 0 3px 10px rgba(229, 62, 62, .35);
}

.badge-hot {
  background: var(--orange);
  color: #fff;
}

.badge-new {
  background: var(--blue);
  color: #fff;
}

.badge-verified {
  background: #ECFDF5;
  color: #065F46;
}

.badge-limited {
  background: #FEF3C7;
  color: #92400E;
}

.badge-exclusive {
  background: #F5F3FF;
  color: #5B21B6;
}

/* Card image area */
.card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img-emoji {
  font-size: 4rem;
  transition: transform .35s var(--ease);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, .15));
}

.deal-card:hover .card-img-emoji {
  transform: scale(1.12) rotate(-5deg);
}

.deals-grid.list-view .card-img {
  width: 160px;
  height: auto;
  min-height: 120px;
  flex-shrink: 0;
}

/* Card body */
.card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-store-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.card-store-dot {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .65rem;
  color: #fff;
  flex-shrink: 0;
}

.card-store-name {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .975rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 7px;
}

.card-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.card-expiry {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-expiry b {
  color: var(--text);
}

.card-expiry.red {
  color: var(--red);
}

.card-expiry.red b {
  color: var(--red);
}

.verified-icon {
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  background: #ECFDF5;
  padding: 3px 9px;
  border-radius: 50px;
}

/* CTA */
.card-cta {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.cta-btn {
  flex: 1;
  padding: 10px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-primary {
  background: var(--navy);
  color: #fff;
}

.cta-primary:hover {
  background: var(--blue);
  transform: scale(1.03);
}

.cta-secondary {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 14px;
  flex: none;
}

.cta-secondary:hover {
  background: var(--blue);
  color: #fff;
}

/* Coupon code style CTA */
.code-cta {
  width: 100%;
  background: var(--sky);
  border: 2px dashed rgba(0, 86, 166, .4);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all var(--dur);
  margin-top: auto;
}

.code-cta:hover {
  background: var(--blue);
  border-style: solid;
  border-color: var(--blue);
}

.code-cta:hover .code-cta-val {
  color: #fff;
}

.code-cta:hover .code-cta-btn {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

.code-cta-val {
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 2px;
}

.code-cta-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .73rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FEATURED STORES SECTION
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.stores-section {
  padding: 0 0 56px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.stores-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.stores-row::-webkit-scrollbar {
  display: none;
}

.store-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1.5px solid rgba(0, 86, 166, .06);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  flex-shrink: 0;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.store-logo-box {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
}

.store-card-name {
  font-weight: 700;
  font-size: .875rem;
  color: var(--text);
}

.store-card-count {
  font-size: .75rem;
  color: var(--muted);
}

.store-card-deal {
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--sky);
  color: var(--blue);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   LOAD MORE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.load-more-wrap {
  text-align: center;
  padding: 20px 0 8px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  background: #fff;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  letter-spacing: .2px;
}

.load-more-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.load-more-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.load-more-btn.loading .spinner {
  display: block;
}

.load-more-btn.loading .btn-text {
  opacity: .7;
}

.load-more-progress {
  margin: 14px auto 0;
  max-width: 300px;
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
}

.progress-bar-wrap {
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 2px;
  transition: width .5s var(--ease);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 40px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-logo .dot {
  color: var(--teal);
}

.footer-desc {
  font-size: .86rem;
  line-height: 1.75;
  max-width: 250px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.f-soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}

.f-soc:hover {
  background: var(--teal);
  color: #fff;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: color var(--dur);
}

.footer-links span:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .35);
  margin-left: 18px;
  transition: color var(--dur);
}

.footer-bottom a:hover {
  color: var(--teal);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   TOAST
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1A2332;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  z-index: 9999;
  transition: transform .32s var(--ease);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ANIMATIONS
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f4f8 25%, #e8eef5 50%, #f0f4f8 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--r);
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   RESPONSIVE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
@media (max-width: 1100px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-filters {
    position: static;
    display: none;
  }

  .sidebar-filters.mobile-open {
    display: block;
  }

  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {

  .nav-links,
  .nav-search {
    display: none;
  }

  .ham {
    display: flex;
    position: absolute;
    right: 20px;
  }

  .mega-menu {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .cat-hero {
    padding: 36px 0 0;
  }

  .main-section {
    padding: 24px 0 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .deals-grid {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 180px;
  }

  .card-img-emoji {
    font-size: 5rem;
  }

  .filter-bar-inner {
    padding: 12px 16px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE PATCH
   Place this at the absolute bottom of your CSS file
========================================================= */

/* Prevent horizontal scrolling globally */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 767px) {

  /* 1. Fix the Hero Slider Padding */
  .slide-inner {
    padding: 24px 16px;
    /* Reduced from 36px 28px to fit small screens */
    min-height: auto;
  }

  .slide-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    /* Ensure title scales down better */
  }

  /* 2. Fix Container and Section Padding */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 32px 0;
  }

  /* 3. Override fixed minimum widths that break the layout */
  .brand-item {
    min-width: auto;
    padding: 0 16px;
  }

  .store-info,
  .c-main,
  .stat-item {
    min-width: 100%;
    /* Forces elements to stack instead of overflow */
  }

  /* 4. Fix Navbar & Hamburger Conflicts */
  /* You had both .hamburger and .ham classes fighting in your CSS */
  .nav-links,
  .nav-search {
    display: none !important;
  }

  .hamburger,
  .ham {
    display: flex !important;
    position: relative;
    right: 0;
  }

  .nav-inner,
  .nav-wrap {
    padding: 0 16px;
    gap: 16px;
  }

  /* 5. Force specific grids to a single column */
  .offer-grid,
  .exclusive-grid,
  .deals-grid-4,
  .deals-grid-3,
  .deal-mini-grid,
  .sidebar {
    grid-template-columns: 1fr !important;
  }

  /* 6. Fix Countdown Blocks */
  .cd-block {
    min-width: 60px;
    /* Reduced from 70px */
    padding: 10px 8px;
  }

  .cd-num {
    font-size: 1.5rem;
  }

  /* 7. Ensure drawers/menus don't exceed screen width */
  .drawer {
    width: 100vw;
    max-width: 300px;
  }
}

/* Extra small devices (like older iPhones) */
@media (max-width: 400px) {
  .stores-grid {
    grid-template-columns: 1fr;
    /* Stack stores instead of squeezing 2 columns */
  }

  .fd-left {
    padding: 24px 16px;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   BLOG SPECIFIC STYLES
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Hero & Search Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #081D3A 100%);
  padding: 64px 0 48px;
  text-align: center;
}

.blog-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.blog-hero-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.blog-controls {
  max-width: 800px;
  margin: 0 auto;
}

.blog-search {
  position: relative;
  margin-bottom: 24px;
}

.blog-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: var(--muted);
}

.blog-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  outline: none;
  transition: box-shadow var(--dur);
}

.blog-search input:focus {
  box-shadow: 0 8px 32px rgba(26, 188, 156, .25);
}

.blog-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.cat-pill {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--teal);
  border-color: var(--teal);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Blog Grid & Cards Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.blog-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.badge-sky {
  background: var(--sky);
  color: var(--blue);
  width: fit-content;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.blog-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
}

.author-meta {
  font-size: .75rem;
  color: var(--muted);
}

.dot {
  margin: 0 4px;
  opacity: .5;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Empty State Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-empty-state {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border-radius: var(--r);
  border: 1.5px dashed var(--line);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.blog-empty-state h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.blog-empty-state p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 24px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Skeleton Adjustments Ã¢â€â‚¬Ã¢â€â‚¬ */
.skeleton-card {
  border-color: transparent;
  box-shadow: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Blog Details Layout Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-breadcrumb {
  margin-bottom: 32px;
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-link {
  color: var(--blue);
  font-weight: 600;
  transition: color var(--dur);
}

.back-link:hover {
  color: var(--navy);
}

.blog-breadcrumb .sep {
  opacity: .5;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.blog-main {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--line);
}

.blog-detail-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.blog-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-date {
  font-size: .85rem;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

.blog-social-share {
  display: flex;
  gap: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur);
}

.share-btn:hover {
  background: var(--sky);
  color: var(--blue);
  border-color: var(--blue);
}

.blog-featured-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 32px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Rich Content (Markdown style rendering) Ã¢â€â‚¬Ã¢â€â‚¬ */
.rich-content {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.rich-content p {
  margin-bottom: 20px;
}

.rich-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 36px 0 16px;
}

.rich-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.rich-content li {
  margin-bottom: 10px;
}

.rich-content strong {
  color: var(--navy);
}

.rich-content blockquote {
  font-style: italic;
  font-size: 1.2rem;
  border-left: 4px solid var(--teal);
  background: var(--sky);
  padding: 20px 24px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 32px 0;
  color: var(--blue);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tags Ã¢â€â‚¬Ã¢â€â‚¬ */
.blog-tags {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.blog-tag {
  background: #f1f5f9;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur);
}

.blog-tag:hover {
  background: var(--sky);
  color: var(--blue);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Sidebar Ã¢â€â‚¬Ã¢â€â‚¬ */
.recent-post-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.recent-post-row:last-child {
  border-bottom: none;
}

.recent-post-row img {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.rp-info h4 {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--dur);
}

.recent-post-row:hover .rp-info h4 {
  color: var(--blue);
}

.rp-info span {
  font-size: .75rem;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Responsive Grid Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: none;
  }

  .blog-main {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-main {
    padding: 24px 16px;
  }

  .blog-detail-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  /* ... existing code ... */

  /* 4. Fix Navbar & Hamburger Conflicts */
  .nav-links,
  .nav-search {
    display: none !important;
  }

  .hamburger,
  .ham {
    display: flex !important;
    position: relative;
    right: 0;
    margin-left: auto;
    /* <-- ADD THIS: Pushes the button to the far right */
  }

  .nav-inner,
  .nav-wrap {
    padding: 0 16px;
    gap: 16px;
    justify-content: space-between;
    /* <-- ADD THIS: Ensures elements are spaced apart */
  }

  /* ... existing code ... */
}

/* Hide the hamburger button while the mobile drawer is open */
.ham.open {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   ABOUT & CONTACT PAGE STYLES
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Generic Hero for Pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #081D3A 100%);
  padding: 80px 0 100px;
  /* Extra bottom padding for overlap */
  color: #fff;
}

.text-center {
  text-align: center;
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.text-teal {
  color: var(--teal);
}

.page-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Page Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: var(--r);
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-md);
  padding: 32px 20px;
  text-align: center;
  transition: transform var(--dur);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* About Page Story Grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rich-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--line);
}

.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-row strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.info-row p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact Form */
.form-card {
  background: #fff;
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--line);
}

.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid #CBD5E1;
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: all var(--dur);
}

.form-input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px var(--sky);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-info-card .info-row {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    padding: 60px 16px 80px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .form-card {
    padding: 24px;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* HERO */
.legal-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 52px 0 64px;
  position: relative;
  overflow: hidden
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: rgba(26, 188, 156, .1);
  border-radius: 50%
}

.legal-hero-inner {
  position: relative;
  z-index: 1
}

.breadcrumb {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px
}

.breadcrumb span.current {
  color: var(--teal);
  font-weight: 600
}

.legal-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .18);
  padding: 7px 16px;
  border-radius: 50px;
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  font-weight: 500
}

.legal-updated b {
  color: #fff
}

/* LAYOUT */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 48px 0 72px;
  align-items: start
}

.toc-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 22px;
  position: sticky;
  top: 88px
}

.toc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px
}

.toc-link {
  display: block;
  padding: 8px 0;
  font-size: .85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .2s
}

.toc-link:last-child {
  border-bottom: none
}

.toc-link:hover,
.toc-link.active {
  color: var(--blue);
  font-weight: 600
}

/* CONTENT */
.legal-content {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 40px 44px
}

.legal-content>p.intro {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--line)
}

.legal-section {
  margin-bottom: 38px;
  scroll-margin-top: 88px
}

.legal-section:last-child {
  margin-bottom: 0
}

.legal-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--sky);
  color: var(--blue);
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  margin-right: 10px
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 8px
}

.legal-section p {
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 12px
}

.legal-section ul {
  padding-left: 0;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.legal-section li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.65
}

.legal-section li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .88rem
}

.legal-table th {
  background: var(--sky);
  color: var(--blue);
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid var(--line)
}

.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--text-2)
}

.legal-callout {
  background: var(--sky);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin: 16px 0;
  font-size: .88rem;
  color: var(--text-2)
}

.legal-callout.warn {
  background: #FFF7ED;
  border-left-color: var(--blue);
  border-left-color: #F97316
}

.legal-callout b {
  color: var(--navy)
}

.contact-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--r);
  padding: 28px 32px;
  color: #fff;
  margin-top: 8px
}

.contact-box h3 {
  color: #fff;
  margin-bottom: 8px
}

.contact-box p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 16px
}

.contact-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem
}

.contact-item b {
  color: var(--teal)
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  margin-top: 0
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .4);
  margin-left: 16px
}

.footer-bottom a:hover {
  color: var(--teal)
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   SCROLL REVEAL ANIMATIONS  (modern, hardware-accelerated)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* ---------- keyframes ---------- */
@keyframes srFadeUp {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes srFadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes srFadeLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes srFadeRight {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes srZoomIn {
  from {
    opacity: 0;
    transform: scale(.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes srFlipUp {
  from {
    opacity: 0;
    transform: perspective(600px) rotateX(18deg) translateY(32px);
  }

  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) translateY(0);
  }
}

@keyframes srBounceIn {
  0% {
    opacity: 0;
    transform: scale(.6);
  }

  60% {
    opacity: 1;
    transform: scale(1.08);
  }

  80% {
    transform: scale(.96);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes srSlideBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes srCountUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- base hidden state ---------- */
[data-sr] {
  opacity: 0;
  will-change: opacity, transform;
  transition: none;
  /* animations override */
}

/* ---------- triggered (visible) state ---------- */
[data-sr].sr-visible {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-duration: .75s;
  opacity: 1;
}

/* ---------- animation type mapping ---------- */
[data-sr="fade-up"].sr-visible {
  animation-name: srFadeUp;
}

[data-sr="fade-down"].sr-visible {
  animation-name: srFadeDown;
}

[data-sr="fade-left"].sr-visible {
  animation-name: srFadeLeft;
}

[data-sr="fade-right"].sr-visible {
  animation-name: srFadeRight;
}

[data-sr="zoom-in"].sr-visible {
  animation-name: srZoomIn;
  animation-timing-function: cubic-bezier(.34, 1.56, .64, 1);
}

[data-sr="flip-up"].sr-visible {
  animation-name: srFlipUp;
}

[data-sr="bounce-in"].sr-visible {
  animation-name: srBounceIn;
  animation-duration: .8s;
}

/* ---------- stagger delays (use data-sr-delay="N") ---------- */
[data-sr-delay="1"].sr-visible {
  animation-delay: .08s;
}

[data-sr-delay="2"].sr-visible {
  animation-delay: .16s;
}

[data-sr-delay="3"].sr-visible {
  animation-delay: .24s;
}

[data-sr-delay="4"].sr-visible {
  animation-delay: .32s;
}

[data-sr-delay="5"].sr-visible {
  animation-delay: .40s;
}

[data-sr-delay="6"].sr-visible {
  animation-delay: .48s;
}

[data-sr-delay="7"].sr-visible {
  animation-delay: .56s;
}

[data-sr-delay="8"].sr-visible {
  animation-delay: .64s;
}

[data-sr-delay="9"].sr-visible {
  animation-delay: .72s;
}

/* ---------- section heading underline bar ---------- */
.sr-title-wrap {
  position: relative;
  display: inline-block;
}

.sr-title-wrap::after {
  content: '';
  display: block;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  margin-top: 8px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.sr-title-wrap.sr-visible::after {
  transform: scaleX(1);
}

/* ---------- card hover lift (enhanced) ---------- */
.offer-card,
.excl-card,
.store-card {
  transition: transform .32s cubic-bezier(.22, 1, .36, 1),
    box-shadow .32s cubic-bezier(.22, 1, .36, 1);
}

.offer-card:hover,
.excl-card:hover,
.store-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 86, 166, .2);
}

/* ---------- respect reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  [data-sr] {
    opacity: 1 !important;
    animation: none !important;
  }

  .sr-title-wrap::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* RESPONSIVE */
@media(max-width:1023px) {
  .legal-layout {
    grid-template-columns: 1fr
  }

  .toc-card {
    position: static;
    margin-bottom: 0
  }
}

@media(max-width:600px) {
  .legal-content {
    padding: 28px 22px
  }

  .legal-hero {
    padding: 36px 0 48px
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   STORE LISTING PAGE
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-hero {
  position: relative;
  background: linear-gradient(135deg, #091324 0%, var(--navy) 50%, #0a3d6b 100%);
  padding: 80px 0 120px;
  overflow: hidden;
}

.sl-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(26, 188, 156, .12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 86, 166, .18) 0%, transparent 70%);
}

.sl-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sl-particle {
  position: absolute;
  animation: sl-float linear infinite;
  pointer-events: none;
  user-select: none;
}

@keyframes sl-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: .1;
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
    opacity: .18;
  }

  100% {
    transform: translateY(0) rotate(0deg);
    opacity: .1;
  }
}

.sl-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.sl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, .2);
  border: 1px solid rgba(26, 188, 156, .35);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sl-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: sl-pulse 1.5s ease infinite;
}

@keyframes sl-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: .6;
  }
}

.sl-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.sl-hero-title span {
  color: var(--teal);
}

.sl-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.sl-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.sl-stat {
  text-align: center;
  padding: 0 28px;
}

.sl-stat:first-child {
  padding-left: 0;
}

.sl-stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.sl-stat-lbl {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sl-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
}

/* Floating brand cards */
.sl-hero-visual {
  position: relative;
  height: 320px;
}

.sl-floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.sl-float-card {
  position: absolute;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 14px 20px;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: sl-float-card linear infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.sl-float-card span {
  font-size: .78rem;
  font-weight: 500;
  color: var(--teal);
}

.sl-fc-1 {
  top: 10%;
  left: 5%;
  animation-duration: 5s;
  animation-delay: 0s;
}

.sl-fc-2 {
  top: 15%;
  right: 5%;
  animation-duration: 6s;
  animation-delay: .8s;
}

.sl-fc-3 {
  bottom: 20%;
  left: 15%;
  animation-duration: 5.5s;
  animation-delay: 1.2s;
}

.sl-fc-4 {
  bottom: 10%;
  right: 10%;
  animation-duration: 4.5s;
  animation-delay: .4s;
}

@keyframes sl-float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.sl-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.sl-hero-wave svg {
  width: 100%;
  display: block;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FILTER BAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-filter-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--line);
  padding: 20px 0;
  position: sticky;
  top: 68px;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(14, 59, 117, .06);
}

.sl-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sl-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 280px;
}

.sl-search-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
}

.sl-search-input {
  width: 100%;
  padding: 10px 40px 10px 42px;
  border: 1.5px solid var(--line);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.sl-search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, .12);
}

.sl-search-clear {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: .85rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.sl-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.sl-chip {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.sl-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.sl-chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.sl-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sl-sort-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.sl-sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}

.sl-sort-select:focus {
  border-color: var(--teal);
}

.sl-view-toggle {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.sl-view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--white);
  cursor: pointer;
  color: var(--muted);
  transition: all .2s;
}

.sl-view-btn:hover {
  background: var(--bg);
  color: var(--blue);
}

.sl-view-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ AÃ¢â‚¬â€œZ NAV Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-az-nav {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.sl-az-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.sl-az-btn {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s;
}

.sl-az-btn:hover:not(.sl-az-disabled) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.sl-az-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.sl-az-disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SECTION HEAD Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.sl-active-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, .1);
  border: 1px solid rgba(26, 188, 156, .3);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.sl-filter-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}

.sl-filter-clear:hover {
  color: var(--red);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FEATURED CARDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.sl-featured-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}

.sl-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.sl-feat-top {
  padding: 20px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sl-feat-logo {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.sl-feat-badge {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--teal);
  color: #fff;
}

.sl-feat-body {
  padding: 0 16px 16px;
  flex: 1;
}

.sl-feat-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.sl-feat-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.sl-feat-deals,
.sl-feat-cashback {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.sl-feat-deals strong {
  color: var(--blue);
}

.sl-feat-cashback {
  color: var(--green);
}

.sl-feat-btn {
  margin: 0 16px 16px;
  padding: 9px 0;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
  width: calc(100% - 32px);
}

.sl-feat-btn:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STORE GRID CARDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-stores-grid {
  gap: 20px;
}

.sl-view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.sl-view-list {
  display: flex;
  flex-direction: column;
}

/* Card Base */
.sl-store-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  opacity: 0;
  transform: translateY(20px);
}

.sl-store-card.sl-card-animate {
  transition: opacity .4s, transform .4s, box-shadow .25s;
}

.sl-store-card.sl-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.sl-store-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(26, 188, 156, .3);
}

/* Grid Card */
.sl-grid-card .sl-card-header {
  padding: 22px 20px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.sl-card-logo {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.sl-card-meta {
  flex: 1;
  min-width: 0;
}

.sl-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sl-card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sl-star {
  font-size: .85rem;
}

.sl-star.full {
  color: #FBBF24;
}

.sl-star.half {
  color: #FBBF24;
  opacity: .6;
}

.sl-star.empty {
  color: #D1D5DB;
}

.sl-card-rating {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.sl-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 9px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  color: #fff;
}

.sl-card-new {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--orange);
  color: #fff;
}

.sl-card-body {
  padding: 0 20px 16px;
}

.sl-card-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sl-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sl-card-cashback,
.sl-card-deals,
.sl-card-reviews {
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.sl-card-cashback {
  background: rgba(22, 163, 74, .1);
  color: var(--green);
}

.sl-card-deals {
  background: rgba(0, 86, 166, .08);
  color: var(--blue);
}

.sl-card-reviews {
  background: var(--bg);
  color: var(--muted);
}

.sl-card-footer {
  padding: 12px 20px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.sl-card-btn {
  flex: 1;
  justify-content: center;
  padding: 9px 18px;
  font-size: .83rem;
}

.sl-wishlist-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .2s;
  flex-shrink: 0;
}

.sl-wishlist-btn:hover {
  border-color: #EC4899;
  color: #EC4899;
  background: #FFF0F4;
}

/* List Card */
.sl-list-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--r);
  margin-bottom: 0;
}

.sl-view-list .sl-store-card {
  margin-bottom: 12px;
}

.sl-list-logo {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.sl-list-info {
  flex: 1;
  min-width: 0;
}

.sl-list-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.sl-list-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ EMPTY STATE Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-empty {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  gap: 16px;
}

.sl-empty-icon {
  font-size: 4rem;
}

.sl-empty-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.sl-empty-desc {
  color: var(--muted);
  max-width: 360px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LOAD MORE Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-load-more-wrap {
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sl-load-more-btn {
  padding: 12px 40px;
}

.sl-load-more-info {
  font-size: .82rem;
  color: var(--muted);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CATEGORIES GRID Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.sl-cat-card {
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.sl-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.sl-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.sl-cat-label {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.sl-cat-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.sl-cat-arrow {
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform .2s;
}

.sl-cat-card:hover .sl-cat-arrow {
  transform: translateX(6px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TRENDING STRIP Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-trending-strip {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}

.sl-trending-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sl-trending-label {
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.sl-trending-scroll {
  display: flex;
  gap: 0;
  animation: sl-trend-scroll 30s linear infinite;
  white-space: nowrap;
}

.sl-trending-scroll:hover {
  animation-play-state: paused;
}

.sl-trending-item {
  padding: 0 36px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  transition: color .2s;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.sl-trending-item:hover {
  color: var(--teal);
}

@keyframes sl-trend-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NEWSLETTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.sl-newsletter-section {
  background: var(--bg);
}

.sl-newsletter-card {
  position: relative;
  background: linear-gradient(135deg, var(--navy), #1A5C9A);
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}

.sl-nl-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26, 188, 156, .15) 0%, transparent 70%);
}

.sl-nl-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.sl-nl-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.sl-nl-title {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.sl-nl-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
  line-height: 1.65;
}

.sl-nl-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}

.sl-nl-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
}

.sl-nl-btn {
  border-radius: 50px;
  padding: 14px 28px;
  white-space: nowrap;
}

.sl-nl-note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 1024px) {
  .sl-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sl-hero-visual {
    display: none;
  }

  .sl-featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .sl-filter-bar {
    top: 0;
  }

  .sl-filter-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .sl-search-wrap {
    flex: none;
    width: 100%;
  }

  .sl-filter-chips {
    gap: 6px;
  }

  .sl-chip {
    font-size: .76rem;
    padding: 6px 12px;
  }

  .sl-sort-wrap {
    justify-content: space-between;
  }

  .sl-hero {
    padding: 60px 0 90px;
  }

  .sl-hero-title {
    font-size: 2rem;
  }

  .sl-view-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sl-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sl-hero-stats {
    gap: 0;
  }

  .sl-stat {
    padding: 0 14px;
  }

  .sl-stat-val {
    font-size: 1.5rem;
  }

  .sl-nl-form {
    flex-direction: column;
  }

  .sl-nl-title {
    font-size: 1.6rem;
  }

  .sl-newsletter-card {
    padding: 48px 24px;
  }

  .sl-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .sl-view-grid {
    grid-template-columns: 1fr;
  }

  .sl-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sl-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sl-az-inner {
    gap: 3px;
  }

  .sl-az-btn {
    min-width: 28px;
    height: 28px;
    font-size: .72rem;
  }

  .sl-list-card {
    padding: 16px;
    gap: 14px;
  }

  .sl-list-actions {
    display: none;
  }
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   UNIFIED PAGE HERO BANNER  (all inner pages)
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Base hero shared by all inner pages */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #071525 0%, var(--navy) 55%, #0e4d8a 100%);
  padding: 64px 0 80px;
  overflow: hidden;
  text-align: left;
}

/* Radial glow overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26, 188, 156, .1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 86, 166, .15) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle dot-grid texture */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Wavy bottom divider */
.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}

.page-hero-wave svg {
  width: 100%;
  display: block;
}

/* Content sits above overlays */
.page-hero>.container {
  position: relative;
  z-index: 3;
}

/* Eyebrow badge */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, .18);
  border: 1px solid rgba(26, 188, 156, .35);
  color: var(--teal);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.page-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: ph-pulse 1.6s ease infinite;
}

.home-slider-frame {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #000;
}

.slider-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 50;
}

.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--teal);
}

.slider-wrap,
.slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out, visibility 0.4s;
  z-index: 1;
}

.slide.slide-active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s ease-out;
}

.slide.slide-active .slide-bg img {
  transform: scale(1);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 50px 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  color: #fff;
  z-index: 5;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s, opacity 0.6s ease 0.3s;
}

.slide.slide-active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-badge {
  margin-bottom: 12px;
  display: inline-block;
}

.slide-title {
  font-size: 2.8rem;
  margin-bottom: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.slide-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.slide-cta {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s;
  color: #fff;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

.slide-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.slide-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 5px;
}

@keyframes ph-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .5;
  }
}

/* Page title */
.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-title span,
.text-teal {
  color: var(--teal);
}

/* Page subtitle */
.page-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  max-width: 580px;
  margin: 0 0 28px;
  line-height: 1.7;
}


/* Breadcrumb inside hero */
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.page-hero-breadcrumb a:hover {
  color: var(--teal);
}

.page-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, .2);
}

.page-hero-breadcrumb .current {
  color: var(--teal);
}

/* Hero stat bar (optional strip inside the hero) */
.page-hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.ph-stat {
  text-align: left;
  padding: 0 28px;
}

.ph-stat:first-child {
  padding-left: 0;
}

.ph-stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.ph-stat-lbl {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ph-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
}

/* Hero CTA strip (inline buttons) */
.page-hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Per-page accent colours via modifier Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
/* About page Ã¢â‚¬â€œ warm navy */
.page-hero--about {
  background: linear-gradient(135deg, #071525 0%, #0E3B75 50%, #155a9e 100%);
}

/* Blog page Ã¢â‚¬â€œ vibrant indigo */
.page-hero--blog {
  background: linear-gradient(135deg, #0d0a1e 0%, #1a1060 50%, #2e1fa0 100%);
}

/* Contact page Ã¢â‚¬â€œ deep teal/navy */
.page-hero--contact {
  background: linear-gradient(135deg, #060e18 0%, #0E3B75 50%, #0e6b5e 100%);
}

/* Privacy / Legal page */
.page-hero--legal {
  background: linear-gradient(135deg, #080d14 0%, #0E3B75 50%, #112d55 100%);
}

/* Category page Ã¢â‚¬â€œ orange warmth */
.page-hero--category {
  background: linear-gradient(135deg, #0d0500 0%, #6b2c00 50%, #cc5500 100%);
}

/* Store details page */
.page-hero--store {
  background: linear-gradient(135deg, #020d1a 0%, #0E3B75 60%, #1a5c9a 100%);
}

/* Store listing page already has its own sl-hero */

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   FOOTER NEWSLETTER SUBSCRIBE SECTION
   Shown above the footer links, inside <footer>
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Footer newsletter Ã¢â‚¬â€ compact single-row strip */
.footer-newsletter {
  display: flex;
  gap: 20px;
  border-radius: var(--r-sm);
  margin-top: 40px;
  flex-wrap: wrap;
}

.fn-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
}

.fn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 180px;
}

.fn-title {
  font-family: 'Syne', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.fn-desc {
  font-size: .76rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.4;
}

.fn-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.fn-input {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  outline: none;
  width: 210px;
  transition: border-color .2s, background .2s;
}

.fn-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.fn-input:focus {
  border-color: var(--teal);
  background: rgba(255, 255, 255, .1);
}

.fn-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.fn-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HOME HERO ENHANCEMENT Ã¢â€â‚¬Ã¢â€â‚¬ */
.home-hero-section {
  position: relative;
  background: var(--navy);
  padding: 40px 0 0px;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #071525 0%, #0E3B75 50%, #155a9e 100%);
  z-index: 1;
}

.home-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  opacity: 0.6;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(26, 188, 156, 0.3);
  top: -100px;
  left: -100px;
  animation: floatShape 8s infinite alternate ease-in-out;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: rgba(0, 86, 166, 0.4);
  bottom: -150px;
  right: 10%;
  animation: floatShape 10s infinite alternate-reverse ease-in-out;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(236, 72, 153, 0.2);
  top: 20%;
  left: 40%;
  animation: floatShape 12s infinite alternate ease-in-out;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.home-hero-container {
  position: relative;
  z-index: 10;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.home-hero-content {
  color: #fff;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, .2);
  border: 1px solid rgba(26, 188, 156, .4);
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.home-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: ph-pulse 1.6s ease infinite;
}

.home-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.home-hero-title span {
  color: var(--teal);
}

.home-hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
}

.home-hero-search {
  margin-bottom: 24px;
}

.home-search-form {
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home-search-form .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.home-search-form .search-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 20px 12px 48px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
}

.home-search-form .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-search-form .search-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
}

.home-search-form .search-btn:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 15px rgba(26, 188, 156, .4);
}

.home-hero-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-hero-chips .chip-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 600;
}

.home-hero-chip {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.home-hero-chip:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.home-hero-visual {
  position: relative;
}

.home-slider-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-slider-frame .slider-wrap {
  margin: 0;
  width: 100%;
}

.home-slider-frame .slide {
  position: relative;
  padding: 0;
  background: transparent;
}

.home-slider-frame .slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.home-slider-frame .slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #fff;
}

.home-slider-frame .slide-caption h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.home-slider-frame .slide-caption p {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.8);
}

.home-float-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: floatBadge 4s infinite alternate ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 5;
}

.float-emoji {
  font-size: 1.8rem;
}

.float-text {
  display: flex;
  flex-direction: column;
}

.float-text strong {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 800;
}

.float-text span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@media (max-width: 992px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-slider-frame {
    height: 420px;
    border-radius: 20px;
  }

  .slide-caption {
    padding: 40px 20px 20px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-desc {
    font-size: 1rem;
  }

  .slider-arrow {
    display: none;
  }

  .home-float-badge {
    top: auto;
    bottom: -20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .home-search-form {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .home-search-form .search-input {
    padding: 8px 12px 8px 36px;
  }

  .home-search-form .search-icon {
    left: 24px;
    top: 22px;
  }

  .home-search-form .search-btn {
    width: 100%;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE: FOOTER NEWSLETTER + PAGE HERO Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 768px) {
  .footer-newsletter {
    flex-wrap: wrap;
    gap: 12px;
  }

  .fn-text {
    min-width: 100%;
  }

  .fn-form {
    width: 100%;
  }

  .fn-input {
    width: 0;
    flex: 1;
  }

  .page-hero {
    padding: 48px 0 64px;
  }

  .page-title {
    font-size: 1.9rem;
  }

  .page-sub {
    font-size: .9rem;
  }

  .ph-stat {
    padding: 0 16px;
  }

  .ph-stat-val {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .footer-newsletter {
    gap: 10px;
  }

  .fn-form {
    flex-direction: column;
  }

  .fn-input {
    width: 100%;
  }

  .fn-btn {
    width: 100%;
    text-align: center;
  }

  .page-hero {
    padding: 40px 0 56px;
  }

  .page-hero-stats {
    padding-top: 14px;
    margin-top: 14px;
  }

  .ph-stat {
    padding: 0 10px;
  }

  .ph-stat:first-child {
    padding-left: 0;
  }
}


/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   BLOG PAGE Ã¢â‚¬â€ Filter Bar
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.blog-filter-bar {
  margin-bottom: 40px;
}

.blog-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  flex-wrap: wrap;
}

.blog-search-wrap {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
}

.blog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: .9rem;
  pointer-events: none;
}

.blog-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: var(--navy);
  outline: none;
  transition: all .2s;
}

.blog-search-input:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, .12);
}

.blog-filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.blog-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.blog-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   BLOG PAGE Ã¢â‚¬â€ Cards Grid
Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 188, 156, 0.2);
}

.blog-card-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--teal-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-card-title a:hover {
  color: var(--teal);
}

.blog-card-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
}

.blog-card-date {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

.blog-card-read-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all .2s;
}

.blog-card:hover .blog-card-read-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .blog-filter-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-search-wrap {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------
   HOW IT WORKS â€” Animated Section
------------------------------------------------------ */
.smart-savings-section {
  position: relative;
  bottom: -21px;
  background: #0a192f;
  overflow: hidden;
  padding: 100px 0;
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
}

.smart-savings-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ss-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 1;
}

.ss-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -200px;
  left: -200px;
  animation: floatOrb 15s infinite alternate ease-in-out;
}

.ss-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  bottom: -200px;
  right: -100px;
  animation: floatOrb 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(100px, 50px) scale(1.2);
  }
}

.smart-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 10;
}

.smart-step-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.smart-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}



.smart-step-card:hover {
  transform: translateY(-15px);
  border-color: rgba(26, 188, 156, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.smart-step-card:hover::before {
  opacity: 1;
}

.ss-step-num {
  position: absolute;
  top: -20px;
  right: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  z-index: 0;
  transition: color 0.4s ease;
}

.smart-step-card:hover .ss-step-num {
  color: rgba(26, 188, 156, 0.1);
}

.ss-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ss-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.smart-step-card:hover .ss-icon {
  transform: scale(1.2);
}

.ss-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(26, 188, 156, 0.5);
  border-radius: 50%;
  animation: spinRing 10s linear infinite;
  opacity: 0.5;
}

.smart-step-card:hover .ss-ring {
  opacity: 1;
  border-style: solid;
  border-color: var(--teal);
  animation-duration: 4s;
}

@keyframes spinRing {
  100% {
    transform: rotate(360deg);
  }
}

.ss-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.ss-desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .smart-steps-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes floatBadgeLeft {
  0% {
    transform: translateY(0px) rotate(-3deg);
  }

  100% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes floatBadgeRight {
  0% {
    transform: translateY(0px) rotate(3deg);
  }

  100% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* ══════════════════════════════════════════════
   GLOBAL COUPON MODAL
══════════════════════════════════════════════ */
.coupon-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.coupon-modal-overlay.modal-active {
  opacity: 1;
  visibility: visible;
}

.coupon-modal-box {
  background: var(--bg);
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.coupon-modal-overlay.modal-active .coupon-modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  color: var(--text);
}

.modal-close:hover {
  background: var(--red);
  color: #fff;
}

.modal-header {
  padding: 32px 32px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.modal-brand-logo {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-header-text h4 {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.modal-header-text h3 {
  font-size: 1.3rem;
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.modal-body {
  padding: 32px;
  background: #fff;
}

#modalCouponDesc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.code-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.code-box {
  display: flex;
  align-items: center;
  border: 2px dashed rgba(26, 188, 156, 0.4);
  border-radius: 12px;
  background: rgba(26, 188, 156, 0.04);
  padding: 6px;
}

#modalCodeText {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  text-align: center;
  letter-spacing: 1px;
}

.modal-footer {
  padding: 16px 32px;
  background: #f8f9fa;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

.modal-expiry {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-expiry span {
  font-weight: 600;
  color: var(--red);
}

/* ═══════════════════════════════════════
   PREMIUM STORE CARD
═══════════════════════════════════════ */
.premium-store-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  min-height: 220px;
}

.premium-store-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 30px rgba(0, 86, 166, 0.12) !important;
  border-color: rgba(26, 188, 156, 0.3) !important;
}

.psc-top {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.psc-logo-wrapper {
  width: 72px;
  height: 72px;
  background: var(--white);
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  z-index: 2;
}

.premium-store-card:hover .psc-logo-wrapper {
  transform: translateY(20px) scale(1.05);
}

.psc-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.psc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(26, 188, 156, 0.3);
}







.psc-body {
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  background: var(--white);
  z-index: 1;
}

.psc-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.psc-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}

.psc-rating {
  color: #f39c12;
}

.psc-cashback {
  font-size: 0.75rem;
  color: var(--teal);
  background: rgba(26, 188, 156, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.psc-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0));
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 3;
}

.premium-store-card:hover .psc-hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.psc-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--sky);
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(14, 59, 117, 0.15);
  transition: background 0.2s, color 0.2s;
}

.premium-store-card:hover .psc-btn {
  background: var(--blue);
  color: var(--white);
}

/* Fix for list view badge overlapping */
.sl-list-card .sl-card-badge,
.sl-list-card .sl-card-new {
  position: relative !important;
  top: auto !important;
  right: auto !important;
}

/* Coupon Pagination */
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 59, 117, .08);
}

.c-page-btn {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}

.c-page-btn:hover:not([disabled]) {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}

.c-page-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.c-page-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════
   NEW COUPON CARD DESIGN
═══════════════════════════════════════ */

/* Filter Bar inside Banner */
.coupon-filter-bar {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.cf-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.cf-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.cf-tab.active {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* Card */
/* Card */
.cc-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: box-shadow .25s ease;
  margin-bottom: 14px;
}

.cc-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

/* Top Row: discount | title | get coupon */
.cc-top-row {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 20px;
}

/* Left — Discount Box */
.cc-left {
  flex-shrink: 0;
  width: 110px;
  background: #f0f0f0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 10px;
}

.cc-discount-box {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #dcdcdc;
  width: 100%;
}

.cc-discount-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #2196F3;
  display: block;
  line-height: 1.1;
}

.cc-discount-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #2196F3;
}

.cc-type-label {
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 500;
  color: #555;
  text-align: center;
}

/* Middle — Title */
.cc-middle {
  flex: 1;
  min-width: 0;
}

.cc-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* Right — GET COUPON */
.cc-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cc-code-reveal {
  position: relative;
  display: flex;
  align-items: stretch;
}

.cc-get-btn {
  background: #2196F3;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.cc-get-btn:hover {
  background: #1976D2;
}

.cc-get-btn.copied {
  background: #4CAF50;
}

.cc-code-peek {
  background: #eaeaea;
  padding: 12px 14px;
  border-radius: 0 4px 4px 0;
  border: 1px dashed #aaa;
  border-left: none;
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: .85rem;
  color: #000;
  display: flex;
  align-items: center;
  margin-left: -8px;
  /* Pulled slightly under the button */
  z-index: 1;
}

/* Bottom Row */
.cc-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.cc-see-details {
  background: none;
  border: none;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.cc-see-details:hover {
  color: #333;
}

.cc-verified {
  font-size: .82rem;
  font-weight: 600;
  color: #4CAF50;
}

.cc-used {
  font-size: .82rem;
  color: #999;
  font-weight: 500;
}

/* Expandable Details */
.cc-desc-wrap {
  overflow: hidden;
  max-height: 200px;
  transition: max-height .35s ease, opacity .3s ease, padding .3s ease;
  opacity: 1;
  padding: 14px 24px;
  border-top: 1px solid #f0f0f0;
  background: #fefefe;
}

.cc-desc-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
}

.cc-desc-text {
  font-size: .84rem;
  color: #777;
  line-height: 1.55;
  margin: 0 0 10px;
}

.cc-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-expiry {
  font-size: .78rem;
  color: #999;
}

.cc-expiry b {
  color: #333;
}

.cc-expiring {
  font-size: .72rem;
  font-weight: 700;
  color: var(--red);
  background: #FEF2F2;
  padding: 3px 8px;
  border-radius: 50px;
}

/* ───────── SEO Details Section ───────── */
.store-seo-details {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  padding: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.seo-subhead {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 12px;
}

.seo-divider {
  border: none;
  border-top: 1px solid #eaeaea;
  margin-bottom: 24px;
}

.seo-main-head {
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.seo-para {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.seo-table td {
  border: 1px solid #dcdcdc;
  padding: 16px;
  text-align: center;
  color: #333;
  font-size: 1rem;
  width: 50%;
}

.seo-subhead-large {
  font-size: 1.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 16px;
}

.seo-link {
  color: var(--blue);
  text-decoration: none;
}

.seo-link:hover {
  text-decoration: underline;
}

.seo-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.seo-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.seo-list li::before {
  content: '➔';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.seo-list-numbered {
  padding-left: 20px;
  margin-bottom: 24px;
}

.seo-list-numbered li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}

.seo-image-wrapper {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.seo-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {

  /* Store Banner Layout */
  .store-identity {
    display: block !important;
    margin-bottom: 24px;
  }

  .store-logo-outer {
    float: left;
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px !important;
    margin-right: 16px;
    margin-bottom: 16px;
  }

  .store-info {
    display: block !important;
    min-width: 0 !important;
  }

  .store-info .store-name {
    padding-top: 8px;
    margin-bottom: 4px !important;
  }

  .store-desc {
    clear: left;
    margin-bottom: 16px !important;
  }

  /* Coupon Card Layout */
  .cc-top-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cc-left {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    width: 100%;
    padding: 12px 8px;
  }

  .cc-middle {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    min-width: 0;
  }

  .cc-right {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    margin-top: 4px;
  }

  .cc-bottom-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .coupon-filter-bar {
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
  }

  .cf-tab {
    flex: 0 1 auto;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ════ PRE-BANNER BRANDS ════ */
.pre-banner-brands {
  padding: 24px 0 16px 0;
  background: var(--bg);
}

.pbb-track {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  /* For scrollbar */
  scrollbar-width: none;
}

.pbb-track::-webkit-scrollbar {
  display: none;
}

.pbb-card {
  flex: 0 0 auto;
  width: 140px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.pbb-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.pbb-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* MAIN BANNER SLIDER */
.main-banner-slider-section {
  padding: 16px 0 24px 0;
  background: var(--bg);
}

.mbs-container {
  position: relative;
  padding: 0 36px;
}

/* Slick overrides for banner */
.mbs-track.slick-slider {
  display: block;
}

.mbs-track .slick-list {
  overflow: hidden;
  border-radius: 12px;
  margin: 0 -8px;
}



.mbs-track .slick-track {
  display: flex;
  align-items: stretch;
}
.mbs-track .slick-slide {
  padding: 0 8px;
  box-sizing: border-box;
}

.mbs-track .slick-slide>div {
  height: 100%;
}

.mbs-card {
  display: block !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  aspect-ratio: 16 / 6;
  background: #f0f4f8;
  width: 100%;
}

.mbs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.mbs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mbs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #444;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.mbs-nav:hover {
  background: var(--teal, #1abc9c);
  color: #fff;
  border-color: var(--teal, #1abc9c);
}

.mbs-prev {
  left: 0;
}

.mbs-next {
  right: 0;
}

@media (max-width: 768px) {
  .mbs-container {
    padding: 0 32px;
  }

  .mbs-card {
    aspect-ratio: 16 / 9;
  }
}


/* ════ HOW TO EARN CASHBACK SECTION ════ */
.cashback-steps-section {
  padding: 40px 0;
  background: var(--bg);
}

.cb-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cb-step-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid #f2f3f5;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.cb-step-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: #EDE8FF;
  color: #7155D4;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.cb-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E8F9F3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.cb-step-text h4 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #2E3337;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.cb-step-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .cb-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cb-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ════ POPULAR STORES SECTION ════ */
.popular-stores-section {
  padding: 40px 0;
  background: #ffffff;
}

.ps-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.ps-left {
  flex: 0 0 260px;
  max-width: 260px;
}

.ps-featured {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ps-featured-header {
  text-align: center;
  padding: 16px;
  font-size: 0.9rem;
  color: #888;
  border-bottom: 1px solid #f0f0f0;
}

.ps-featured-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ps-featured-logo img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

.ps-featured-btn {
  display: block;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 12px;
  text-align: center;
  background: #fff;
  color: #1b85e5;
  border: 1px solid #1b85e5;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.ps-featured-btn:hover {
  background: #1b85e5;
  color: #fff;
}

.ps-slider-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 28px;
  overflow: visible;
}

.ps-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.ps-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.ps-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ps-logo-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: #e0e0e0;
}

.ps-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ps-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  color: #333;
}

.ps-nav:hover {
  background: #f9f9f9;
}

.ps-prev {
  left: 0;
}

.ps-next {
  right: 0;
}

.ps-dots-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.ps-dots {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-dots li {
  list-style: none;
  margin: 0;
}

.ps-dot {
  width: 32px;
  height: 6px;
  border-radius: 4px;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.3s;
}

.ps-dots li.slick-active .ps-dot {
  background: #00b4ff;
}

/* --- Top Coupons Section --- */
.top-coupons-section {
  /* padding: 40px 0; */
  background: #f8fafc;
  /* Very light slate background from screenshot */
}

.tc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 60px;
}

.tc-title {
  font-size: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.tc-slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tc-nav-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.tc-nav-btn:hover {
  color: #475569;
}

.tc-nav-indicator {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tc-nav-indicator span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
}

.tc-nav-indicator span.active {
  width: 18px;
  border-radius: 3px;
  background: #cddc39;
  /* Yellowish-green */
}

.tc-tabs-container {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.tc-tabs-container::-webkit-scrollbar {
  height: 4px;
}

.tc-tabs-container::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

.tc-tab {
  padding: 8px 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.tc-tab:hover {
  background: #f1f5f9;
}

.tc-tab.active {
  background: linear-gradient(135deg, rgb(25, 121, 141) 0%, rgb(14, 165, 233) 100%);
  color: #fff;
  border-color: #3b82f6;
}

.tc-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tc-grid.active {
  display: grid;
  padding-bottom: 60px;
}

.tc-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s;
}

.tc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tc-card-top {
  display: flex;
  border-bottom: 1px dashed #e2e8f0;
}

.tc-card-bottom {
  display: flex;
}

.tc-card-tl,
.tc-card-bl {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed #e2e8f0;
  padding: 16px;
  text-align: center;
}

.tc-card-tr,
.tc-card-br {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 20px;
}

.tc-card-tl {
  color: #3b82f6;
}

.tc-upto {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tc-percent {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
}

.tc-off {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tc-card-tr p {
  margin: 0;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
  font-weight: 500;
}

.tc-card-bl img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
}

.tc-card-br a {
  color: #3b82f6;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.tc-card-br a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .ps-slide {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 991px) {
  .ps-layout {
    flex-direction: column;
    gap: 24px;
  }

  .ps-left {
    flex: none;
    max-width: 100%;
  }

  .ps-featured {
    flex: none;
    width: 100%;
    margin-bottom: 0;
  }

  .ps-slide {
    grid-template-columns: repeat(4, 1fr);
  }

  .ps-prev {
    left: -10px;
  }

  .ps-next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .ps-slide {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .ps-prev {
    left: 4px;
  }

  .ps-next {
    right: 4px;
  }
}

@media (max-width: 480px) {
  .ps-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- MOBILE OVERRIDES ADDED AT END --- */
@media (max-width: 768px) {
  .mbs-track {
    gap: 0 !important;
  }

  .mbs-card {
    /* flex removed - slick controls width */
    aspect-ratio: 16 / 9 !important;
  }

  .pbb-track {
    gap: 8px !important;
  }

  .pbb-card {
    flex: 0 0 calc(18% - 6px) !important;
    width: auto !important;
    height: 44px !important;
    padding: 4px !important;
  }

  .pbb-card span {
    font-size: 11px !important;
    letter-spacing: 0px !important;
  }
}

/* ==========================================================================
   SLICK SLIDER OVERRIDES FOR UI STABILITY
   ========================================================================== */
.slick-slider {
  display: block !important;
}

/* Ensure track wrappers don't clip dots or shadows */
.mbs-track-wrapper,
.ps-track-wrapper,
.dod-track-wrapper,
.deals-track-wrapper,
.articles-track-wrapper,
.coupons-track-wrapper,
.carousel-track-wrapper {
  overflow: visible !important;
}

.slick-list {
  overflow: hidden !important;
  margin: 0 -10px;
}

.slick-slide {
  margin: 0 10px;
}







/* Hero/Banner carousels should have 0 margin */
#track-left .slick-slide,
#track-right .slick-slide {
  margin: 0;
}

#track-left.slick-slider .slick-list,
#track-right.slick-slider .slick-list {
  margin: 0;
}

/* Fix Slick dots positioning and style */
.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 15px 0 0 0;
  list-style: none;
  bottom: -30px;
}

.slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.slick-dots li button,
.slick-dots li .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  display: block;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active .dot {
  background: #007bff;
  width: 25px;
  border-radius: 10px;
}

.ps-slide {
  display: grid !important;
}

.dod-card {
  display: flex !important;
}

.deal-card {
  display: flex !important;
}

.article-card {
  display: flex !important;
}

.coupon-card {
  display: flex !important;
}

.ps-featured-slide {
  display: flex !important;
}

.slick-gap-wrapper {
  box-sizing: border-box;
}

.mbs-wrapper {
  padding: 0 8px;
}

.dod-wrapper {
  padding: 0 15px;
}

.ps-wrapper {
  padding: 0 4px;
}

.deals-wrapper {
  padding: 0 10px;
}

.articles-wrapper {
  padding: 0 12px;
}

.coupons-wrapper {
  padding: 0 10px;
}

.mbs-card,
.ps-slide,
.dod-card,
.article-card,
.deal-card,
.coupon-card {
  width: 100% !important;
}


.mbs-track,
.ps-track,
.ps-featured-track,
#dod-track,
#articles-track,
.deals-track,
.coupons-track {
  width: 100% !important;
  min-width: 0 !important;
}


.slick-slider {
  display: block !important;
}


.mbs-track.slick-slider .slick-list {
  margin: 0 -8px;
}

.dod-track.slick-slider .slick-list {
  margin: 0 -15px;
}

.ps-track.slick-slider .slick-list,
.ps-featured-track.slick-slider .slick-list {
  margin: 0 -4px;
}

.deals-track.slick-slider .slick-list {
  margin: 0 -10px;
}

.articles-track.slick-slider .slick-list {
  margin: 0 -12px;
}

.coupons-track.slick-slider .slick-list {
  margin: 0 -10px;
}

/* === MOBILE: Banner slider === */
@media (max-width: 767px) {
  .main-banner-slider-section {
    padding: 10px 0 16px 0;
  }

  .mbs-container {
    padding: 0 36px;
  }

  .mbs-track .slick-slide {
    padding: 0;
  }

  .mbs-track .slick-list {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
  }


}



/* =========================================================
   DEDICATED MOBILE BANNER SLIDER (Overrides & Display Logic)
   ========================================================= */

/* Desktop Display Logic */
@media (min-width: 768px) {
  .mobile-banner-only {
    display: none !important;
  }
}

/* Mobile Display Logic */
@media (max-width: 767px) {
  .desktop-banner-only {
    display: none !important;
  }
  
  .mobile-banner-only {
    display: block !important;
    padding: 10px 0 20px 0 !important;
  }
  
  .mbs-container-mobile {
    padding: 0 16px; /* slightly smaller padding for mobile edge */
  }

  .mbs-card-mobile {
    display: block !important;
    border-radius: 12px;
    overflow: hidden;
    /* Adjust aspect ratio so image looks good but not too tall/small */
    aspect-ratio: 16/7;
    width: 100%;
    -webkit-user-drag: none;
    user-select: none;
  }

  .mbs-card-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    -webkit-user-drag: none;
  }

  /* Style mobile dots specifically */
  .mbs-track-mobile .slick-dots {
    bottom: -24px !important;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    width: 100%;
  }
  
  .mbs-track-mobile .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
  }
  
  .mbs-track-mobile .slick-dots li button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #d1d5db !important;
    border: none;
    padding: 0;
    font-size: 0;
    transition: all 0.3s ease;
  }
  
  .mbs-track-mobile .slick-dots li.slick-active button {
    background: #2a9d8f !important;
    width: 24px !important;
    border-radius: 12px !important;
  }

  /* Prevent swiping issues by removing extra space between slides */
  .mbs-track-mobile .slick-slide {
    margin: 0 5px; /* Tiny gap for mobile aesthetic */
  }
  .mbs-track-mobile .slick-list {
    margin: 0 -5px;
    overflow: hidden;
    border-radius: 12px;
  }
  
  /* Make sure slider is swipeable */
  .mbs-track-mobile {
    touch-action: pan-y pinch-zoom !important;
  }
  
  /* Mobile Arrows Positioning */
  .mbs-prev-mobile {
    left: 2px !important;
    z-index: 10 !important;
  }
  .mbs-next-mobile {
    right: 2px !important;
    z-index: 10 !important;
  }
  
  /* Make sure mbs-nav is visible on mobile and scales well */
  .mobile-banner-only .mbs-nav {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  }
  .mobile-banner-only .mbs-nav svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   TODAY'S TOP COUPONS & OFFERS SECTION
═══════════════════════════════════════════════════════════ */
.ttco-section {
  padding: 40px 0 48px;
  background: #f5f8fc;
}
.ttco-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.ttco-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 4vw, 26px);
  letter-spacing: -0.5px;
  color: var(--navy);
  margin: 0;
}
.ttco-nav-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ttco-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #d0d5dd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  color: var(--muted);
}
.ttco-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}
.ttco-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ttco-dots .ttco-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d5dd;
  transition: all .3s;
  cursor: pointer;
}
.ttco-dots .ttco-dot.active {
  width: 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

/* Tabs */
.ttco-tabs-wrapper {
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ttco-tabs-wrapper::-webkit-scrollbar {
  display: none;
}
.ttco-tabs {
  display: flex;
  gap: 10px;
  min-width: max-content;
}
.ttco-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1.5px solid #e0e5ec;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.ttco-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--sky);
}
.ttco-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--card-shadow);
}
.ttco-tab-icon {
  font-size: 14px;
}

/* Panels */
.ttco-panels {
  position: relative;
}
.ttco-panel {
  display: none;
  animation: ttcoFadeIn .35s ease;
}
.ttco-panel.active {
  display: block;
}
@keyframes ttcoFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grid */
.ttco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card */
.ttco-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaeef3;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.ttco-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.ttco-card-top {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  border-bottom: 1px dashed #e8ecf1;
  min-height: 110px;
}
.ttco-badge {
  min-width: 110px;
  max-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  border-right: 1px dashed #e8ecf1;
  flex-shrink: 0;
}
.ttco-card-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.ttco-card-info p {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ttco-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 10px;
}
.ttco-brand-logo {
  max-height: 24px;
  max-width: 80px;
  object-fit: contain;
}
.ttco-brand-logo-box {
  flex-shrink: 0;
}
.ttco-view-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.ttco-view-link:hover {
  color: var(--navy);
}
.ttco-view-link svg {
  flex-shrink: 0;
}

/* ── TTCO Responsive ── */
@media (max-width: 1024px) {
  .ttco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ttco-section {
    padding: 28px 0 32px;
  }
  .ttco-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ttco-tab {
    padding: 7px 14px;
    font-size: 12px;
  }
  .ttco-badge {
    min-width: 85px;
    max-width: max-content;
    padding: 12px 8px;
  }
  .ttco-card-info {
    padding: 10px 12px;
  }
  .ttco-card-info p {
    font-size: 13px;
  }
  .ttco-card-bottom {
    padding: 8px 12px;
  }
  .ttco-view-link {
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .ttco-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ttco-top-row {
    margin-bottom: 14px;
  }
  .ttco-nav-dots {
    display: none;
  }
  .ttco-tabs {
    gap: 8px;
  }
  .ttco-tab {
    padding: 6px 12px;
    font-size: 11.5px;
  }
}

