/* GetMeCodes - Main Stylesheet */
/* This file contains all the CSS styles extracted from HTML files */

/* Interactive Star Rating Styles */
.interactive-stars {
  display: inline-flex;
  gap: 2px;
  cursor: pointer;
}

.interactive-stars .star {
  font-size: 16px;
  color: #666;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 2px;
}

.interactive-stars .star:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.interactive-stars .star.filled {
  color: var(--accent);
}

.interactive-stars .star.half-filled {
  background: linear-gradient(90deg, var(--accent) 50%, #666 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.interactive-stars:hover .star {
  color: #666;
}

.interactive-stars:hover .star:hover,
.interactive-stars:hover .star.hovered {
  color: var(--accent);
}

.rating-info {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.rating-submitted {
  animation: ratingPulse 0.6s ease-out;
}

@keyframes ratingPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.rating-feedback {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.rating-feedback.show {
  opacity: 1;
  transform: translateX(0);
}

:root {
  --bg: #0B0B14;
  --surface: #121227;
  --surface2: #19193A;
  --primary: #29295F;
  --accent: #FFC107;
  --accent2: #29295F;
  --text: #F4F5FF;
  --text-main: #F8F9FF;
  --text-body: #E7E9FF;
  --text-muted: #BFC3FF;
  --text-faint: #8E93C8;
  --muted: #B8B9D6;
  --border: rgba(255,255,255,.10);
  --radius: 15px;
  --bs-heading-color: var(--text);
  --bs-body-color: var(--text);
  --bs-body-font-size: 0.9rem;
}

/* Exclusive brand logo styling */
.exclusive-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 100px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  overflow: hidden;
}

.exclusive-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transform: scale(2);
}

@media (max-width: 768px) {
  .exclusive-brand-logo {
    width: 100px;
    min-width: 100px;
    height: 100px;
    padding: 5px;
  }
}

/* Store page filter styles */
.filter-chip {
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    opacity: 0.8;
}

.filter-chip.active {
    background-color: var(--accent) !important;
    color: #111 !important;
    border-color: var(--accent) !important;
}

.offer-card {
    transition: opacity 0.3s ease;
}

.filter-count {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
}

#no-results-message {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile sticky footer */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-sticky-footer.visible {
    transform: translateY(0);
}

.mobile-sticky-footer.hidden {
    transform: translateY(100%);
}

.mobile-sticky-footer .btn {
    font-size: 0.875rem;
    padding: 10px 8px;
    font-weight: 600;
}

.mobile-sticky-footer .btn-outline-accent {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.mobile-sticky-footer .btn-outline-accent:hover {
    background: var(--accent);
    color: #111;
}

/* Add bottom padding to body on mobile to prevent content being hidden behind sticky footer */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 80px;
    }
}

/* Light card variant for prominent sections */
.card-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.card-light .section-title,
.card-light .kpi {
  color: var(--text-main);
}

.card-light .section-sub,
.card-light .faint,
.card-light .label {
  color: var(--text-muted);
}

.card-light .chip {
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

/* Store Listing Styles */
.alphabet-nav .pill {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.alphabet-nav .pill:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.alphabet-header {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, rgba(255, 193, 7, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.alphabet-letter {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg);
}

.store-item {
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.store-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.store-item:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.02) 100%);
  pointer-events: none;
  z-index: 1;
}

.store-logo-container {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.store-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: brightness(1.1);
}

.store-logo-placeholder {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.store-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  /* display: -webkit-box; */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cashback-rate {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  background: rgba(255, 193, 7, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.pill-xs {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
}

#store_filter {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

#store_filter:focus {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

#store_filter::placeholder {
  color: var(--text-muted);
}

/* Responsive adjustments for store cards */
@media (max-width: 1200px) {
  .store-item .col-xl-2 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (max-width: 992px) {
  .alphabet-header {
    width: 50px;
    height: 50px;
  }
  
  .alphabet-letter {
    font-size: 20px;
  }
  
  .store-logo-container {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .alphabet-nav .pill {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .alphabet-header {
    width: 40px;
    height: 40px;
  }
  
  .alphabet-letter {
    font-size: 16px;
  }
  
  .store-logo-container {
    width: 50px;
    height: 50px;
  }
  
  .store-title {
    font-size: 12px;
  }
}

/* Banner Stats Section with background image */
.banner-stats-section {
  background-image: url('../images/banner-stats.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.banner-stats-section > * {
  position: relative;
  z-index: 2;
}

.banner-stats-title {
  font-family: 'Kare', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.banner-stats-subtitle {
  font-family: 'Kare', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

.banner-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
}

.banner-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

.banner-stat-label {
  font-family: 'Kare', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.banner-stat-kpi {
  font-family: 'Kare', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0.3rem 0;
  color: var(--accent);
}

.banner-stat-unit {
  font-family: 'Kare', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}

.banner-stats-footer {
  font-family: 'Kare', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .banner-stats-title {
    font-size: 1.5rem;
  }
  
  .banner-stat-kpi {
    font-size: 1.5rem;
  }
}

/* Banner Section with background image */
@import url('https://fonts.googleapis.com/css2?family=Kare:wght@400;500;700&display=swap');

.banner-section {
  background-image: url('../images/banner-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
} */

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Savzen Landing Page Styles (Dark Theme) ===== */
/* Landing page specific styles integrated with site's dark theme */

/* Landing Header */
.savzen-header {
  background: rgba(11,11,20,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  border-bottom: 1px solid var(--border);
}

.savzen-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.savzen-logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.savzen-logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.savzen-nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Landing Hero Section */
.savzen-hero {
  background:
    radial-gradient(1200px 600px at 20% 15%, rgba(41,41,95,.4), transparent 65%),
    radial-gradient(900px 500px at 80% 20%, rgba(255,193,7,.15), transparent 60%),
    linear-gradient(135deg, rgba(25,25,58,.8) 0%, rgba(41,41,95,.9) 50%, rgba(11,11,20,.95) 100%),
    var(--surface);
  color: var(--text);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.savzen-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,193,7,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,193,7,0.05)" stroke-width="0.5"/></svg>') center center;
  opacity: 0.3;
}

.savzen-hero-content {
  position: relative;
  z-index: 2;
}

.savzen-hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.savzen-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  opacity: 0.7;
  animation: savzen-bounce 2s infinite;
}

@keyframes savzen-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Country Selector */
.savzen-countries {
  background: var(--bg);
}

.savzen-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.savzen-country-card {
  padding: 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: var(--radius);
}

.savzen-country-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,193,7,0.2);
}

.savzen-country-flag {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

.savzen-country-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
}

/* How It Works */
.savzen-how-works {
  background: var(--surface);
}

.savzen-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.savzen-step {
  position: relative;
}

.savzen-step-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--bg);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.savzen-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

/* Value Props */
.savzen-values {
  background: var(--bg);
}

.savzen-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.savzen-value-card {
  padding: 32px;
  text-align: center;
  border-radius: var(--radius);
}

.savzen-value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--bg);
  font-size: 24px;
}

.savzen-value-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-main);
}

/* Brands */
.savzen-brands {
  background: var(--surface);
}

.savzen-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.savzen-brand {
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
}

.savzen-brand:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.savzen-brand-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

/* Extension Section */
.savzen-extension {
  background: var(--surface);
}

.savzen-extension-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.savzen-extension-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
}

.savzen-extension-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.savzen-extension-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.savzen-extension-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.savzen-extension-image {
  text-align: center;
}

.savzen-extension-mockup {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* Stats with banner styling */
.savzen-stats {
  margin: 40px 0;
}

.savzen-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.savzen-stat {
  text-align: center;
}

.savzen-stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.savzen-stat-label {
  font-size: 16px;
  opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .savzen-hero {
    margin: 80px 0 0;
    padding: 100px 0 60px;
  }
  
  .savzen-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .savzen-country-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .savzen-extension-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .savzen-nav-links {
    display: none; /* Simplified for mobile */
  }
  
  .savzen-steps {
    grid-template-columns: 1fr;
  }
  
  .savzen-values-grid {
    grid-template-columns: 1fr;
  }
  
  .savzen-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .savzen-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .savzen-country-grid {
    grid-template-columns: 1fr;
  }
  
  .savzen-brands-grid {
    grid-template-columns: 1fr;
  }
}

.banner-title {
  font-family: 'Kare', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.banner-subtitle {
  font-family: 'Kare', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .banner-section {
    padding: 60px 20px;
  }
}

.container {
  --bs-gutter-x: 1.7rem !important;
}

/* ===== Base Styles ===== */
body {
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(41,41,95,.35), transparent 60%),
    radial-gradient(900px 500px at 85% 5%, rgba(255,193,7,.12), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: .12px;
}

/* Typography (no bulky bold) */
h1, h2, h3, h4, h5 { 
  color: var(--text-main); 
  letter-spacing: -0.2px; 
}

.muted { 
  color: var(--muted); 
}

.faint { 
  color: var(--text-faint); 
  font-size: .80rem; 
  line-height: 1.65; 
}

/* ===== Hero Section Styling ===== */
.hero-section {
  background:
    radial-gradient(1400px 800px at 20% 15%, rgba(59,130,246,.3), transparent 65%),
    radial-gradient(1200px 700px at 80% 20%, rgba(147,197,253,.2), transparent 60%),
    linear-gradient(135deg, rgba(219,234,254,.15) 0%, rgba(59,130,246,.2) 50%, rgba(147,197,253,.25) 100%),
    var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(59,130,246,.3);
  box-shadow: 
    0 20px 60px rgba(59,130,246,.15),
    inset 0 1px 0 rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(59,130,246,.1), transparent 50%),
    radial-gradient(600px 300px at 70% 80%, rgba(219,234,254,.06), transparent 40%);
  pointer-events: none;
}

/* ===== Navigation ===== */
.navbar {
  background: rgba(11,11,20,.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar .dropdown-menu.w-100 {
  left: 0;
  right: 0;
}

/* Mobile navigation buttons */
.d-lg-none .btn-outline-soft {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,.03);
  padding: 0.5rem 0.75rem;
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-lg-none .btn-outline-soft:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--accent);
  color: var(--accent);
}

.d-lg-none .btn-outline-soft i {
  font-size: 1.1rem;
}

/* Mobile dropdown positioning */
@media (max-width: 991.98px) {
  .dropdown-menu.show {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}

/* Logo styling */
.logo-img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .logo-img {
    height: 35px;
  }
}

@media (min-width: 1200px) {
  .logo-img {
    height: 45px;
  }
}

.logo-img:hover {
  filter: brightness(1.3);
  transform: scale(1.02);
}

/* ===== Cards ===== */
.card-dark {
  background: linear-gradient(180deg, rgba(25,25,58,.65), rgba(18,18,39,.85));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Alternative card style for store pages */
.card-dark {
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.10), rgba(0,0,0,.20) 55%, rgba(0,0,0,.35));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
}

.line { 
  height: 1px; 
  background: rgba(255,255,255,.10); 
  margin: .9rem 0; 
}

/* ===== Buttons ===== */
.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #111 !important;
  font-weight: 800;
}

.btn-accent:hover {
  background: #e0a800;
  border-color: #e0a800;
  color: #111 !important;
}

.btn-outline-soft {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,.03);
  font-weight: 650;
}

.btn-outline-soft:hover {
  border-color: rgba(255,193,7,.45);
  color: var(--accent);
  background: rgba(255,193,7,.06);
}

/* ===== Pills & Chips ===== */
.pill {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
}

.pill:hover {
  border-color: rgba(255,193,7,.35);
  color: var(--text);
  background: rgba(255,193,7,.06);
}

.pill.active {
  border-color: rgba(255,193,7,.5);
  color: var(--accent);
  background: rgba(255,193,7,.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,193,7,.15);
}

.pill.accent {
  background-color: var(--accent);
  color: #000;
}

/* Chips row (single line on mobile, scrollable) */
.chip-row {
  gap: .5rem;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.chip-row::-webkit-scrollbar { 
  height: 0; 
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .28rem .52rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text-muted);
  font-size: .70rem;
  white-space: nowrap;
}

.chip.top { 
  border-color: rgba(255,193,7,.40); 
  color: var(--accent); 
}

.chip.verified { 
  border-color: rgba(34,197,94,.35); 
  color: #A6F3C4; 
}

.chip.exclusive { 
  border-color: rgba(168,85,247,.40); 
  color: #DABEFF; 
}

/* ===== Logo Chip ===== */
.logo-chip {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
  flex: 0 0 auto;
  padding: 8px;
  overflow: hidden;
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(2);
}

.logo-featured-chip {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
  flex: 0 0 auto;
  padding: 8px;
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Responsive logo chip sizing */
@media (max-width: 575.98px) {
  .logo-chip {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    padding: 6px;
  }
  
  .logo-chip img {
    border-radius: 6px;
  }
}

/* Store page specific logo chip */
.store-insights .logo-chip {
  width: 100px; 
  height: 100px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

@media (min-width:768px) {
  .store-insights .logo-chip { 
    width: 100px; 
    height: 100px; 
  }

  .chip {
    font-size: .70rem;
  }
}

/* ===== Sections ===== */
.section { 
  padding: 70px 0; 
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}

/* ===== Forms ===== */
.form-control, .input-group-text {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
}

.form-control::placeholder { 
  color: rgba(184,185,214,.7); 
}

.form-control:focus {
  border-color: rgba(255,193,7,.35);
  box-shadow: 0 0 0 .25rem rgba(255,193,7,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

/* ===== Live Ticker (stock-market vibe) ===== */
.ticker-wrap {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.ticker-head {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticker-body {
  padding: 10px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: tickerScroll 18s linear infinite;
  padding: 0 14px;
}

.ticker-item {
  border: 1px solid var(--border);
  background: rgba(25,25,58,.45);
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-item .code {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.10);
  flex: 0 0 auto;
}

.dot.hot { 
  background: var(--accent); 
  box-shadow: 0 0 0 4px rgba(255,193,7,.12); 
}

.dot.bad { 
  background: #ef4444; 
  box-shadow: 0 0 0 4px rgba(239,68,68,.10); 
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause ticker on hover */
.ticker-wrap:hover .ticker-track { 
  animation-play-state: paused; 
}

/* ===== Carousel controls ===== */
.carousel-control-prev, .carousel-control-next {
  width: 3rem;
  opacity: .9;
}

/* ===== Footer ===== */
footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  background: rgba(11,11,20,.35);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us-section {
  /* background:radial-gradient(59.52% 59.52% at 50% 54.99%,#5271ff 60%,#5271ff 100%); */
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
/* 
.why-choose-us-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, 
    rgba(99, 102, 241, 0.15), 
    rgba(168, 85, 247, 0.12), 
    rgba(236, 72, 153, 0.10), 
    rgba(251, 146, 60, 0.12), 
    rgba(34, 197, 94, 0.15));
  animation: rotate 20s linear infinite;
  z-index: -1;
}

.why-choose-us-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 90%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
  z-index: -1;
} */

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.why-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.why-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.why-card {
  background:#fff;
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* .why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #f59e0b, #22c55e);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
} */

@keyframes shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}
/* 
.why-card:hover {
  transform: translateY(-8px);
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%),
    rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
} */

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(79, 70, 229, 0.9));
  color: #ffffff;
  border: 1px solid rgba(99, 102, 241, 0.8);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.why-icon.privacy {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.9));
  color: #ffffff;
  border-color: rgba(34, 197, 94, 0.8);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.why-icon.cashback {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.95), rgba(245, 158, 11, 0.9));
  color: #ffffff;
  border-color: rgba(251, 146, 60, 0.8);
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.why-card-text {
  color: #000;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .why-card {
    padding: 1.5rem 1.25rem;
  }
}

/* ===== Stats ===== */
.stat {
  padding: 1rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-2px);
}

.stat .kpi {
  font-size: 1.65rem;
  font-weight: 650;
  line-height: 1.15;
  margin: .2rem 0;
  transition: color 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.stat .kpi.updating {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
  animation: pulse-glow 0.5s ease;
}

@keyframes pulse-glow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.stat .label {
  color: var(--faint);
}

/* ===== Blog ===== */
.blog-card {
  overflow: hidden;
}

.blog-img {
  height: 150px;
  background:
    radial-gradient(600px 240px at 25% 20%, rgba(255,193,7,.18), transparent 55%),
    rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background-size: cover;
  background-position: center;
}

.blog-title {
  font-size: 1.02rem;
  font-weight: 560;
  line-height: 1.45;
  margin: 0;
}

.blog-excerpt {
  color: var(--muted); 
  font-size: .95rem; 
  line-height: 1.7;
}

/* ===== Store Page Styles ===== */

/* Store title */
.store-title {
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 560;
  margin: 0;
}

@media (min-width:768px) {
  .store-title { 
    font-size: 1.55rem; 
  }
}

/* Sticky jump bar (compact) */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(11,11,20,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav-pills .nav-link {
  color: var(--text-muted);
  padding: .36rem .7rem;
  font-size: .9rem;
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-pills .nav-link.active {
  /*background: var(--accent);*/
  background: transparent;
  color: var(--accent);
  font-weight: 750;
}

.nav-pills .nav-link:hover {
  border-color: transparent;
  background: transparent;
  color: var(--text-main);
}

/* ===== Offer Cards ===== */
.offer-card { 
  padding: 1.15rem; 
  overflow: visible; 
}

@media (min-width:768px) { 
  .offer-card { 
    padding: 1.15rem; 
  } 
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}

@media (min-width:768px) {
  .offer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

.offer-title {
  font-size: 1.4rem;
  line-height: 1.55;
  font-weight: 540;
  margin: 0;
}

.offer-meta {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: .35rem;
}

.btn-showcode {
  border-radius: 14px;
  padding: .55rem .85rem;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
}

@media (max-width:767.98px) {
  .btn-showcode { 
    padding: .48rem .75rem; 
    border-radius: 12px; 
    font-size: .95rem; 
  }
}

/* Corner badge like SimplyCodes */
.corner-badge {
  position: absolute;
  top: -20px;
  left: -7px;
  background: #9DFF6A;
  color: #111;
  font-weight: 750;
  font-size: .75rem;
  padding: .45rem .75rem;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
}

/* CODE/DEAL pill aligned with title */
.type-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 .6rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
  font-size: .80rem;
  letter-spacing: .7px;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.type-pill.deal {
  background: rgba(255,193,7,.10);
  border-color: rgba(255,193,7,.28);
  color: var(--accent);
}

.type-pill.code {
  background: rgba(255,193,7,.10);
  border-color: rgba(255,193,7,.28);
  color: var(--accent);
}

/* Right actions */
.offer-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-width: 190px;
}

/* Compact health meter */
.health-wrap {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: .6rem .7rem;
}

.health-top {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  align-items: baseline;
  margin-bottom: .35rem;
}

.health-label { 
  color: var(--text-faint); 
  font-size: .86rem; 
}

.health-val { 
  color: var(--text-main); 
  font-weight: 650; 
  font-size: .95rem; 
}

.health-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.health-bar > span {
  display: block;
  height: 100%;
  background: rgba(255,193,7,.92);
  width: 80%;
}

/* Better mobile spacing */
@media (max-width:400px) {
  .corner-badge { 
    top: -14px; 
    left: -7px; 
    font-size: .75rem; 
    padding: .38rem .55rem; 
  }
  
  .type-pill { 
    height: 24px; 
    font-size: .78rem; 
  }
}

/* Scroll offsets for sticky bar */
[id] { 
  scroll-margin-top: 70px; 
}

/* ===== Offer accordion bar ===== */
.offer-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .55rem .9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text-main);
  text-decoration: none;
}

.offer-accordion-toggle:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--text-main);
}

.offer-accordion-toggle .chev {
  transition: transform .18s ease;
  opacity: .9;
}

.offer-accordion-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

/* avatars stack */
.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 30px; 
  height: 30px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.35);
  background: rgba(255,255,255,.10);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 800;
  color: var(--text-main);
  margin-left: -10px;
}

.avatar:first-child { 
  margin-left: 0; 
}

.avatar.a1 { 
  background: rgba(168,85,247,.55); 
}

.avatar.a2 { 
  background: rgba(255,193,7,.45); 
  color: #111; 
}

.avatar.a3 { 
  background: rgba(34,197,94,.45); 
}

/* ===== Mini stats ===== */
.mini-stat {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: .9rem;
  min-width: 0; /* Ensure content doesn't overflow */
}

.mini-stat .label { 
  color: var(--text-faint); 
  font-size: .9rem; 
  white-space: nowrap; /* Prevent label wrapping */
}

.mini-stat .value { 
  color: var(--text-main); 
  font-size: 1.25rem; 
  line-height: 1.2; 
  font-weight: 600; 
  white-space: nowrap; /* Prevent value wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ensure mini-stats container works on mobile */
.mini-stat-row {
  display: flex;
  gap: 0.5rem;
}

.mini-stat-row .col-6 {
  flex: 1;
  min-width: 0;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
  .mini-stat {
    padding: 0.7rem 0.5rem;
  }
  
  .mini-stat .label {
    font-size: 0.8rem;
  }
  
  .mini-stat .value {
    font-size: 1.2rem;
  }
}

/* ===== Verification timeline ===== */
.v-activity {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.v-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: .75rem;
  align-items: start;
}

.v-dot {
  width: 34px; 
  height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 800;
}

.v-meta {
  color: var(--text-faint);
  font-size: .9rem;
}

.v-text {
  color: var(--text-muted);
  line-height: 1.65;
}

.v-code {
  color: #9DFF6A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.v-thumb {
  width: 44px; 
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

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

/* ===== Tip input ===== */
.tipbox {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: .65rem .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.tipbox input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text-main);
  width: 100%;
}

.tipbox input::placeholder { 
  color: rgba(191,195,255,.65); 
}

/* ===== Detail lists ===== */
.detail-block h4 {
  font-size: 1.05rem;
  font-weight: 560;
  margin: 0 0 .25rem 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: .6rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.checklist li {
  gap: .55rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.checklist i {
  margin-top: .15rem;
  color: #9DFF6A;
}

.warnlist i { 
  color: var(--accent); 
}

/* ===== Mobile chip slider ===== */
.chip-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

/* MOBILE ONLY: force real slider */
@media (max-width: 767.98px) {
  .chip-slider-wrap { 
    overflow: visible; 
  }

  .chip-row.chip-slider {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 6px;
  }

  .chip-row.chip-slider .chip {
    flex: 0 0 auto !important;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .chip-row.chip-slider::-webkit-scrollbar { 
    height: 0; 
  }
  
  .chip-row.chip-slider { 
    scrollbar-width: none; 
  }
}

/* ===== Product Cards ===== */
.product-card {
  border-radius: 18px;
}

.product-media {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .18s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: .28rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(157,255,106,.14);
  color: #9DFF6A;
  font-size: .78rem;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

.product-brand {
  color: var(--text-faint);
  font-size: .9rem;
}

.product-title {
  margin-top: .2rem;
  font-size: .98rem;
  line-height: 1.55;
  font-weight: 520;
  color: var(--text-main);
}

.product-title a {
  color: var(--text-main);
  text-decoration: none;
}

.product-title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-price {
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 650;
}

.product-was {
  color: rgba(191,195,255,.7);
  text-decoration: line-through;
  font-size: .95rem;
}

/* ===== Extension CTA ===== */
.extension-cta {
  background:
    radial-gradient(120% 120% at 20% 0%,
      rgba(255,193,7,.18),
      rgba(0,0,0,.30) 55%,
      rgba(0,0,0,.40));
}

.extension-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 560;
  margin-bottom: .35rem;
}

.extension-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.extension-points li {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
}

.extension-points i {
  color: var(--accent);
}

/* Mobile tightening */
@media (max-width: 575.98px) {
  .extension-title { 
    font-size: 1.15rem; 
  }
}

/* ===== Store Insights Sidebar ===== */
.store-insights .store-logo-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #fff;
  width: 100%;
  height: 130px;
}

.store-insights .store-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin:0px auto;
  transform: scale(1);
}

.store-insights .store-name {
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text-main);
  font-weight: 600;
}

.store-insights .store-rating {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.store-insights .stars i {
  color: var(--accent);
  font-size: 1rem;
  margin-right: 1px;
}

.sidebar-h {
  font-size: 1.05rem;
  font-weight: 560;
  margin: 0 0 .5rem 0;
}

.sidebar-p {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.75;
  margin: 0 0 .75rem 0;
}

/* Sticky Sidebar on MD+ screens */
@media (min-width: 768px) {
  .sticky-sidebar {
    position: sticky;
    top: 100px;
  }
}

.insight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.insight-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: var(--text-muted);
}

.insight-list i {
  color: #9DFF6A;
  margin-top: .12rem;
}

.hack-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.hack-item {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.hack-ico {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  flex: 0 0 auto;
}

.hack-title {
  color: var(--text-main);
  font-weight: 560;
  line-height: 1.35;
}

.hack-sub {
  color: var(--text-faint);
  font-size: .92rem;
  line-height: 1.6;
  margin-top: .12rem;
}

/* ===== Modal Styling ===== */
.modal-backdrop.show { 
  opacity: .75; 
}

.gmc-modal {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.10), rgba(0,0,0,.55) 55%, rgba(0,0,0,.70));
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  color: #F5F6FF;
  overflow: hidden;
}

.gmc-close {
  position: absolute; 
  top: 14px; 
  right: 14px;
  width: 42px; 
  height: 42px; 
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.gmc-close:hover { 
  background: rgba(255,255,255,.08); 
  border-color: rgba(255,255,255,.26); 
}

.gmc-logo {
  width: 86px; 
  height: 86px; 
  border-radius: 999px;
  background: rgba(255,255,255,.92); 
  color: #111;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 900;
}

.gmc-discount { 
  font-size: 42px; 
  line-height: 1.1; 
  font-weight: 650; 
  margin: 0; 
}

.gmc-subtitle { 
  font-size: 17px; 
  color: rgba(245,246,255,.82); 
}

.gmc-copied {
  display: inline-block; 
  padding: 10px 14px; 
  border-radius: 10px;
  background: rgba(255,255,255,.85); 
  color: #111; 
  font-weight: 700;
  position: relative; 
  opacity: 0; 
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.gmc-copied::after {
  content: ""; 
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%);
  bottom: -8px; 
  border: 8px solid transparent; 
  border-top-color: rgba(255,255,255,.85);
}

.gmc-copied.show { 
  opacity: 1; 
  transform: translateY(-2px); 
}

.gmc-code-pill {
  width: min(420px, 100%);
  padding: 12px 14px; 
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 12px;
}

.gmc-tag {
  width: 30px; 
  height: 30px; 
  border-radius: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--accent);
  background: rgba(255,193,7,.10);
  border: 1px solid rgba(255,193,7,.28);
}

.gmc-code { 
  font-weight: 800; 
  letter-spacing: 1px; 
  font-size: 20px; 
  color: var(--accent); 
}

.gmc-copy-btn {
  border-radius: 999px; 
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: #fff; 
  font-weight: 750;
}

.gmc-copy-btn:hover { 
  background: rgba(255,255,255,.16); 
  border-color: rgba(255,255,255,.28); 
}

.gmc-worked-label { 
  color: rgba(245,246,255,.70); 
  font-weight: 650; 
}

.gmc-vote {
  border-radius: 14px; 
  padding: 10px 18px;
  font-weight: 750; 
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18); 
  color: #fff; 
  min-width: 120px;
}

.gmc-no i { 
  color: #ff4d4d; 
} 

.gmc-yes i { 
  color: #41d45a; 
}

.gmc-shop-btn {
  background: var(--accent);
  border: none; 
  color: #111; 
  font-weight: 800;
  border-radius: 14px; 
  padding: 14px 16px; 
  font-size: 18px;
}

.gmc-shop-btn:hover { 
  filter: brightness(.96); 
}

/* ===== Auth Modal Styles ===== */
.auth-modal {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,255,255,.10), rgba(0,0,0,.55) 55%, rgba(0,0,0,.70));
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  color: #F5F6FF;
  overflow: hidden;
}

.auth-close {
  position: absolute; 
  top: 14px; 
  right: 14px;
  width: 42px; 
  height: 42px; 
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.auth-close:hover { 
  background: rgba(255,255,255,.08); 
  border-color: rgba(255,255,255,.26); 
}

.auth-logo {
  width: 86px; 
  height: 86px; 
  border-radius: 999px;
  color: #111;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 900;
  font-size: 36px;
}

.auth-title { 
  font-size: 25px; 
  line-height: 1.1; 
  font-weight: 650; 
  margin: 0; 
}

.auth-subtitle { 
  font-size: 17px; 
  color: rgba(245,246,255,.82); 
}

.auth-input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text-main);
  border-radius: 12px;
  padding: 14px 16px;
}

.auth-input:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255,193,7,.25);
  color: var(--text-main);
}

.auth-input::placeholder {
  color: var(--text-faint);
}

.auth-submit {
  background: var(--accent);
  border: none;
  color: #111;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 16px;
}

.auth-submit:hover {
  background: #FFD54F;
  color: #111;
}

.auth-divider {
  position: relative;
  text-align: center;
  color: var(--text-faint);
  margin: 20px 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.12);
}

.auth-divider span {
  background: var(--surface);
  padding: 0 16px;
  position: relative;
}

.auth-social-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text-main);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.auth-social-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.28);
  color: var(--text-main);
}

.auth-toggle {
  color: var(--text-faint);
}

.auth-toggle-btn {
  background: none;
  border: none;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  padding: 0;
  margin-left: 4px;
}

.auth-toggle-btn:hover {
  color: #FFD54F;
  text-decoration: underline;
}

/* ===== Cashback Page Specific Styles ===== */
.how-it-works-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FFD54F);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,193,7,.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.card:hover .category-icon {
  background: var(--accent);
  color: #111;
  transform: translateY(-2px);
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

/* ===== Category Page Specific Styles ===== */
.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--muted);
}

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

.breadcrumb-item.active {
  color: var(--text-main);
}

.featured-store-card {
  border: 2px solid rgba(255,193,7,.2);
  position: relative;
}

.featured-store-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
}


.offer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-head {
  flex: 1;
}

.offer-actions {
  flex-shrink: 0;
}

.type-pill {
  background: rgba(255,193,7,.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-pill.deal {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}

/* Accordion Styling for FAQ */
.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
}

.accordion-button {
  background: transparent;
  color: var(--text-main);
  border: none;
  font-weight: 600;
  padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFC107'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  color: var(--text-faint);
  line-height: 1.6;
  padding: 0 0 1.5rem 0;
}

/* Vertical Divider */
.vr {
  border-left: 1px solid rgba(255,255,255,.2);
  width: 1px;
  height: 60px;
}

.gmc-fine { 
  color: rgba(245,246,255,.55); 
  font-size: 13px; 
}

/* ===== Responsive Utilities ===== */
@media (max-width: 575.98px) {
  .section { 
    padding: 40px 0; 
  }
  
  .hero-section {
    padding: 2rem !important;
  }

  .how-it-works-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .offer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .offer-actions {
    width: 100%;
  }

  .offer-actions .btn {
    width: 100%;
  }
}

/* ===== Category List Page Specific Styles ===== */
.category-card {
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 193, 7, 0.8));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  transform: rotate(5deg) scale(1.1);
}

.category-parent-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.category-parent-link:hover {
  color: var(--accent);
}

.category-meta {
  font-size: 12px;
  color: var(--text-faint);
}

.subcategory-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.subcategory-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.subcategory-link:hover {
  color: var(--accent);
  background: rgba(255, 193, 7, 0.05);
  transform: translateX(4px);
}

.subcategory-link i {
  font-size: 12px;
  color: var(--text-faint);
  transition: color 0.3s ease;
}

.subcategory-link:hover i {
  color: var(--accent);
}

.toggle-subcategories {
  font-size: 12px;
  padding: 4px 8px;
}

/* Special Categories Sidebar */
.special-categories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.special-category-item {
  color: var(--text-muted);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.special-category-item:hover {
  color: var(--accent);
  background: rgba(255, 193, 7, 0.05);
  border-color: rgba(255, 193, 7, 0.2);
}

.special-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.special-category-item:hover .special-icon {
  background: var(--accent);
  color: var(--bg);
}

/* Popular Stats */
.popular-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* Show/Hide functionality */
.show-more-subcategories {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .category-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .sticky-top {
    position: relative !important;
    top: auto !important;
  }
  
  .col-lg-3 {
    margin-top: 2rem;
  }
  
  .category-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .category-card {
    margin-bottom: 1rem;
  }
  
  .d-flex.align-items-center.gap-3 {
    gap: 1rem !important;
  }
  
  .subcategory-link {
    font-size: 13px;
    padding: 4px 6px;
  }
  
  .special-category-item {
    padding: 10px 12px;
  }
  
  .stat-number {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .category-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .h2 {
    font-size: 1.5rem;
  }
  
  .h4 {
    font-size: 1.25rem;
  }
  
  .h5 {
    font-size: 1.1rem;
  }
}

@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.25rem;
    }
}
/* ===== Blog Single Page Specific Styles ===== */
.blog-content {
  line-height: 1.8;
  font-size: 16px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: var(--text-main);
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}

.blog-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.blog-content h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.blog-content p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.blog-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.blog-content a:hover {
  color: #FFD54F;
  border-bottom-color: var(--accent);
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.blog-content blockquote {
  border-left: 4px solid var(--accent);
  background: rgba(255, 193, 7, 0.05);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.blog-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 15px;
  line-height: 1;
  opacity: 0.3;
}

.blog-content blockquote p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
  color: var(--text-body);
}

.blog-content pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content code {
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.blog-content pre code {
  background: none;
  color: var(--text);
  padding: 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.blog-content th,
.blog-content td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.blog-content th {
  background: var(--surface);
  color: var(--text-main);
  font-weight: 600;
}

.blog-content td {
  color: var(--text-body);
}

.blog-content tr:last-child td {
  border-bottom: none;
}

/* Author section styling */
.author-avatar img {
  border: 2px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s ease;
}

.author-avatar:hover img {
  border-color: var(--accent);
  transform: scale(1.05);
}

/* Store sidebar styling */
.store-sidebar-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.store-sidebar-item:hover {
  color: inherit;
  transform: translateY(-2px);
}

.store-sidebar-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.store-sidebar-item:hover .store-sidebar-logo {
  background: #fff;
  border-color: rgba(255, 193, 7, 0.3);
}

.store-sidebar-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transform: scale(2);
}

.store-sidebar-title {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  transition: color 0.3s ease;
}

.store-sidebar-item:hover .store-sidebar-title {
  color: var(--accent);
}

/* Related articles styling */
.card-dark .bg-soft {
  background: var(--surface) !important;
  border: 1px solid var(--border);
}

.card-dark a {
  color: var(--text-main);
  transition: color 0.3s ease;
}

.card-dark a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Responsive adjustments for blog page */
@media (max-width: 991.98px) {
  .blog-content h1 {
    font-size: 2rem;
  }
  
  .blog-content h2 {
    font-size: 1.75rem;
  }
  
  .blog-content h3 {
    font-size: 1.5rem;
  }
  
  .sticky-top {
    position: relative !important;
    top: auto !important;
  }
  
  .col-lg-4 {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .blog-content {
    font-size: 15px;
  }
  
  .blog-content h1 {
    font-size: 1.75rem;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
  }
  
  .blog-content h3 {
    font-size: 1.25rem;
  }
  
  .blog-content blockquote {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .blog-content ul,
  .blog-content ol {
    padding-left: 1.5rem;
  }
  
  .author-avatar img {
    width: 60px !important;
    height: 60px !important;
  }
  
  .store-sidebar-logo {
    height: 50px;
    padding: 6px;
  }
  
  .store-sidebar-title {
    font-size: 11px;
  }
}

/* ===== Blog Page Specific Styles ===== */
.featured-post-card {
  border: 2px solid rgba(255,193,7,.15);
  position: relative;
  overflow: hidden;
}

.featured-post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,193,7,.05), transparent);
  pointer-events: none;
  z-index: 1;
}

.featured-post-card .card-body {
  position: relative;
  z-index: 2;
}

/* Blog article cards styling */
.card-dark h3 a {
  color: var(--text-main);
  transition: color 0.3s ease;
}

.card-dark h3 a:hover {
  color: var(--accent);
}

.card-dark h6 a {
  color: var(--text-main);
  transition: color 0.3s ease;
}

.card-dark h6 a:hover {
  color: var(--accent);
}

.card-dark .card-text {
  color: var(--text-muted);
}

.card-dark .small.text-muted {
  color: var(--text-faint) !important;
}

/* Enhanced input styling for blog page */
.bg-soft {
  background: var(--surface) !important;
}

.border-soft {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-light {
  color: var(--text) !important;
}

/* List group items for sidebar */
.card-dark .list-group-item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.card-dark .list-group-item:hover {
  background: rgba(255,193,7,.05);
  color: var(--accent);
}

/* Badge styling for blog categories */
.badge.bg-warning.text-dark {
  background: var(--accent) !important;
  color: #111 !important;
}

/* Pagination styling for dark theme */
.pagination .page-link {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.pagination .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.pagination .page-link:hover {
  background: rgba(255,193,7,.1);
  border-color: var(--accent);
  color: var(--accent);
}

.pagination .page-item.disabled .page-link {
  background: var(--surface);
  border-color: var(--border);
  color: var(--muted);
}

/* Tag cloud styling for dark theme */
.card-dark .badge.bg-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--text-muted) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.card-dark .badge.bg-secondary:hover {
  background: var(--accent) !important;
  color: #111 !important;
  transform: translateY(-1px);
}

/* Newsletter signup enhancements */
.card-dark .text-warning {
  color: var(--accent) !important;
}

.card-dark .display-6 {
  color: var(--accent) !important;
}

/* Blog card image styling */
.card-dark .card-img-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.card-dark:hover .card-img-top {
  transform: scale(1.02);
}

/* Corner badge for featured posts */


/* Badge styling for post categories */
.badge.bg-primary {
  background: #4F46E5 !important;
  color: #fff !important;
}

.badge.bg-info {
  background: #06B6D4 !important;
  color: #fff !important;
}

.badge.bg-success {
  background: #059669 !important;
  color: #fff !important;
}

/* Responsive adjustments for blog */
@media (max-width: 991.98px) {
  .sticky-top {
    position: relative !important;
    top: auto !important;
  }
  
  .card-dark .row {
    flex-direction: column;
  }
  
  .card-dark .col-lg-4 {
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .featured-post-card .card-body {
    padding: 1rem;
  }
  
  .card-dark .badge {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .corner-badge {
    top: -10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 10px;
    width:80px;
  }
  
  .card-dark .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem;
  }
  
  .card-dark .btn {
    width: 100%;
    font-size: 1rem;
  }

  .code-store-btn {
    width:40% !important;
  }

  .offer-accordion-toggle {
    padding:0.45rem .7rem;
    font-size:0.8rem;
  }
}

/* ===== Contact Page Specific Styles ===== */
.contact-stat {
  text-align: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FFD54F);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.support-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,193,7,.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.card:hover .support-icon {
  background: var(--accent);
  color: #111;
  transform: translateY(-5px);
}

.contact-item {
  position: relative;
}

.contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 25px;
  right: 0;
  height: 1px;
  background: var(--border);
}

.schedule {
  font-size: 14px;
  line-height: 1.6;
}

.info-item {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-left: 1rem;
}

.map-placeholder iframe {
  filter: brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-placeholder iframe:hover {
  filter: brightness(1) contrast(1.2);
}

/* Form styling enhancements */
.form-label {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Success modal styling */
#successModal .modal-content {
  border: none;
  border-radius: 15px;
}

#successModal .bi-check-circle-fill {
  font-size: 4rem;
}

/* Quick help links */
.list-group-item {
  transition: all 0.3s ease;
}

.list-group-item:hover {
  background: rgba(255,193,7,.08);
  transform: translateX(5px);
}

.list-group-item i {
  transition: transform 0.3s ease;
}

.list-group-item:hover i {
  transform: scale(1.1);
}

/* Office info styling */
.office-info .info-item {
  border-left: none;
  margin-left: 0;
  padding-left: 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 991.98px) {
  .contact-stat {
    text-align: left;
    margin-top: 2rem;
  }
  
  .office-info {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .info-item {
    border-left-width: 2px;
    padding-left: 0.75rem;
    margin-left: 0.75rem;
  }
  
  .contact-item .d-flex {
    align-items: start;
  }
  
  .contact-item .ms-3 {
    margin-left: 1rem !important;
  }
}

/* ===== FAQ Page Specific Styles ===== */
.help-search .input-group {
  border-radius: 8px;
  overflow: hidden;
}

.help-search .form-control {
  border: 2px solid rgba(255,193,7,.2);
  background: rgba(255,193,7,.05);
}

.help-search .form-control:focus {
  border-color: var(--accent);
  background: var(--bg-main);
  box-shadow: none;
}

.quick-help-card {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.quick-help-card:hover {
  background: rgba(255,193,7,.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.quick-help-card i {
  font-size: 2rem;
  display: block;
}

.faq-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.faq-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-section h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* Enhanced accordion styling for FAQ */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-secondary);
  color: var(--text-main);
  border: none;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  font-size: 16px;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: rgba(255,193,7,.1);
  color: var(--accent);
  box-shadow: none;
}

.accordion-button:hover {
  background: rgba(255,193,7,.05);
  color: var(--text-main);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  color: var(--text-faint);
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
  background: var(--bg-main);
  border-top: 1px solid var(--border);
}

.accordion-body a {
  color: var(--accent);
  text-decoration: none;
}

.accordion-body a:hover {
  text-decoration: underline;
}

/* Sidebar specific styles */
.list-group-item.list-group-item-action {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.list-group-item.list-group-item-action:hover {
  background: rgba(255,193,7,.08);
  color: var(--accent);
  transform: translateX(5px);
}

.list-group-item.list-group-item-action:last-child {
  border-bottom: none;
}

/* Popular questions links */
.list-group-item.list-group-item-action[href] {
  cursor: pointer;
}

.list-group-item.list-group-item-action i {
  transition: transform 0.3s ease;
}

.list-group-item.list-group-item-action:hover i {
  transform: translateX(3px);
}

/* Response times styling */
.border-end {
  border-color: var(--border) !important;
}

/* Search highlighting */
.accordion-item[style*="display: none"] {
  display: none !important;
}

.accordion-item {
  transition: opacity 0.3s ease;
}

/* FAQ specific responsive */
@media (max-width: 991.98px) {
  .help-search {
    margin-top: 1rem;
  }
  
  .quick-help-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .quick-help-card i {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .accordion-button {
    padding: 1rem;
    font-size: 14px;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  
  .quick-help-card {
    padding: 0.75rem;
  }
  
  .help-search .input-group {
    margin-bottom: 1rem;
  }
  
  .faq-section h2 {
    font-size: 1.25rem;
  }
}

/* ===== Store Search Autocomplete ===== */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 32, 56, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  margin-top: 0.25rem;
  max-height: 400px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.autocomplete-item:hover,
.autocomplete-item.highlighted {
  background: rgba(59, 130, 246, 0.15);
  border-left: 3px solid var(--accent);
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.store-logo {
  border-radius: 0.25rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
}

.store-info {
  flex: 1;
}

.store-title {
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.store-cashback {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
}

.autocomplete-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.autocomplete-no-results {
  padding: 1rem;
  text-align: center;
  color: #9ca3af;
  font-style: italic;
}

.autocomplete-loading {
  padding: 1rem;
  text-align: center;
  color: var(--accent);
}

.autocomplete-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.logo-cat {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.2rem;
}

/* Enhanced Exclusive Cards */
.exclusive-card {
  border: 1px solid rgba(255, 193, 7, 0.2);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05) 0%, rgba(41, 41, 95, 0.1) 100%);
  transition: all 0.3s ease;
  overflow: hidden;
}

.exclusive-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.exclusive-pill {
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 193, 7, 0.3);
  font-weight: 600;
}

.verified-pill {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34,197,94,.35); 
  color: #A6F3C4; 
  border: 1px solid rgba(34,197,94,.35);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

/* Responsive adjustments for exclusive card elements */
@media (max-width: 575.98px) {
  .exclusive-card .d-flex.gap-2 {
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
  }
  
  .verified-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
  
  .verified-pill span.d-none.d-sm-inline {
    display: none !important;
  }
  
  .exclusive-card .small {
    font-size: 0.7rem !important;
  }
}

.used-badge {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.75rem;
  font-weight: 500;
}

.exclusive-title {
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.3;
  min-height: 1.6rem;
}

.store-name {
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.exclusive-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.exclusive-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
  background: linear-gradient(135deg, #f59e0b 0%, var(--accent) 100%);
}

.exclusive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.5s ease;
}

.exclusive-card:hover::before {
  left: 100%;
}

.disclosureBg {
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, .10), rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .70));
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}

/* Interactive Why Section - Image Display */
.why-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.why-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 193, 7, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.why-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

#why-feature-image {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.1));
}

/* Enhanced Interactive Text Features */
.why-features-list {
  position: relative;
}

.why-feature-item {
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 1rem;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.05);
}

.why-feature-item:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
  transform: translateX(10px);
}

.why-feature-item.active {
  background: rgba(255, 193, 7, 0.15);
  border-color: rgba(255, 193, 7, 0.5);
  transform: translateX(5px);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.why-feature-item:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.why-feature-item.active .why-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.why-icon.privacy {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.why-icon.cashback {
  background: linear-gradient(135deg, #fd7e14, #e63946);
}

.why-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.why-feature-item:hover .why-feature-title,
.why-feature-item.active .why-feature-title {
  color: var(--accent);
}

.why-feature-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.why-feature-item:hover .why-feature-text,
.why-feature-item.active .why-feature-text {
  color: var(--text-main);
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
  .why-image-container {
    min-height: 300px;
  }
  
  .why-feature-item {
    padding: 1rem;
  }
  
  .why-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* Why Section Animated Checkmarks */
.why-checkmark-wrapper {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.why-checkmark {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.why-checkmark.animate {
  opacity: 1;
  transform: scale(1);
}

.checkmark-circle {
  stroke-dasharray: 63;
  stroke-dashoffset: 63;
  transition: stroke-dashoffset 0.4s ease-in-out;
}

.checkmark-path {
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  transition: stroke-dashoffset 0.3s ease-in-out 0.2s;
}

.why-checkmark.animate .checkmark-circle {
  stroke-dashoffset: 0;
}

.why-checkmark.animate .checkmark-path {
  stroke-dashoffset: 0;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .why-checkmark {
    opacity: 1;
    transform: scale(1);
    transition: none;
  }
  
  .checkmark-circle,
  .checkmark-path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }
}

/* Mobile adjustments for checkmarks */
@media (max-width: 767.98px) {
  .why-checkmark {
    width: 20px;
    height: 20px;
  }
}

/* Why Feature Title Animations */
.why-title-animate {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}

.why-title-animate.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Reduced motion support for titles */
@media (prefers-reduced-motion: reduce) {
  .why-title-animate {
    opacity: 1;
    transform: translateX(0);
    transition: none;
  }
}

/* Why Section Background and Layout */
.why-section-bg {
  position: relative;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, rgba(41,41,95,.12) 0%, rgba(41,41,95,.02) 100%);
  overflow: hidden;
}

.why-bg-decoration {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent), transparent);
  border-radius: 50%;
  opacity: 0.05;
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

.why-bg-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #8b5cf6, transparent);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.05; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-item {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-secondary);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.why-feature-item:hover {
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.15);
}

.why-feature-item.active {
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.08);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.why-feature-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 40px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}

.why-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.why-feature-item.active .why-feature-title {
  color: var(--accent);
}

.why-feature-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.why-feature-item .why-icon {
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent);
  border:0px;
  box-shadow:none;
}

.why-feature-item.active .why-icon {
  background: var(--accent);
  color: #000;
  transform: scale(1.05);
}

.why-image-container {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #fff9e6;
}

.why-feature-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  text-align: center;
}

.why-feature-image img {
  width: 60%;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.why-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  color: white;
}

.why-image-label {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .why-features-list {
    margin-bottom: 2rem;
  }
  
  .why-image-container {
    height: 300px;
  }
  
  .why-feature-item {
    padding: 1.25rem;
  }
  
  .why-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* How It Works Section */
.how-it-works-card {
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  border-color: var(--accent);
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.how-step-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.how-step-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: var(--accent);
  transition: all 0.3s ease;
}

.how-step-icon.cashback {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(16, 185, 129, 0.1));
  color: #10b981;
}

.how-it-works-card:hover .how-step-icon {
  transform: scale(1.1);
  background: var(--accent);
  color: var(--bg-main);
}

.how-it-works-card:hover .how-step-icon.cashback {
  background: linear-gradient(135deg, var(--accent), #10b981);
  color: white;
}

/* Mobile responsiveness for How It Works */
@media (max-width: 767.98px) {
  .how-step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .how-step-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .how-it-works-card {
    padding: 1.25rem !important;
  }
}

.badge-category {
  background: var(--accent) !important;
  color: #111 !important;
  border-radius: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.x-small {
  font-size:0.7rem;
}

/* ===== Cashback Modal Styles ===== */
.cashback-success-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.1);
}

.signup-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0,0,0,0.1);
}

.signup-benefits .text-success {
    color: #198754 !important;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--text-main);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.auth-social-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    color: var(--text-main);
}

/* ===== Store Page Styles ===== */
.offer-hidden {
  display: none;
}

.offer-item {
  transition: opacity 0.3s ease-in-out;
}

/* ===== ZenPoints Rewards Page Styles ===== */
.rewards-page {
  min-height: 100vh;
}

/* Hero Section */
.rewards-page .hero-section {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.rewards-page .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.rewards-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.rewards-page .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rewards-page .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.rewards-page .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rewards-page .hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rewards-page .store-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9800 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  font-size: 0.875rem;
}

/* How It Works Section */
.rewards-page .how-it-works-steps {
  margin: 2rem 0;
}

.rewards-page .step-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rewards-page .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.rewards-page .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

.rewards-page .step-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin: 1rem 0;
}

.rewards-page .step-card h4 {
  margin: 1rem 0 0.5rem 0;
  color: var(--text);
}

.rewards-page .step-card p {
  color: var(--text-muted);
  margin: 0;
}

/* ZenPoints Features */
.rewards-page .zenpoints-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rewards-page .zenpoints-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.rewards-page .zenpoints-value-card {
  position: sticky;
  top: 2rem;
}

.rewards-page .zenpoints-icon {
  font-size: 3rem;
  color: var(--accent);
}

.rewards-page .value-display {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.rewards-page .points {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

.rewards-page .equals {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.rewards-page .value {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

/* Rewards Grid */
.rewards-page .rewards-grid {
  margin: 2rem 0;
}

.rewards-page .reward-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.rewards-page .reward-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.rewards-page .reward-card.cash-reward {
  opacity: 0.8;
  border-color: var(--border);
}

.rewards-page .reward-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.rewards-page .reward-card h4 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.rewards-page .reward-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.rewards-page .learn-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.rewards-page .learn-more:hover {
  text-decoration: underline;
}

/* Store Filters */
.rewards-page .store-filters {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.rewards-page .search-wrapper {
  position: relative;
}

.rewards-page .search-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  z-index: 2;
}

.rewards-page .search-wrapper input {
  padding-left: 2.5rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
}

.rewards-page .search-wrapper input:focus {
  background: var(--surface2);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  color: var(--text);
}

.rewards-page .form-select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
}

.rewards-page .form-select:focus {
  background: var(--surface2);
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  color: var(--text);
}

.rewards-page .form-check-input {
  background: var(--surface2);
  border: 1px solid var(--border);
}

.rewards-page .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.rewards-page .form-check-label {
  color: var(--text);
}

/* Store Grid */
.rewards-page .store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.rewards-page .store-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.rewards-page .store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: inherit;
  border-color: var(--accent);
}

.rewards-page .store-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rewards-page .store-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, #ff9800 100%);
  color: #000;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.rewards-page .store-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.rewards-page .store-description {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0 0 1rem 0;
  flex-grow: 1;
}

.rewards-page .store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rewards-page .badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.rewards-page .badge-bonus {
  background: rgba(255, 193, 7, 0.2);
  color: var(--accent);
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.rewards-page .badge-verified {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.rewards-page .store-cta {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.rewards-page .store-cta:hover {
  background: var(--accent);
  color: #000;
  text-decoration: none;
}

/* Redemption Section */
.redemption-steps {
  margin: 1.5rem 0;
}

.redemption-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.redemption-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step-number-redemption {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--text);
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.redemption-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.redemption-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.redemption-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.redemption-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.redemption-option.cash-option {
  opacity: 0.8;
  order: 99;
}

.option-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.redemption-option:hover .option-icon {
  transform: scale(1.1);
}

.option-icon.amazon {
  background: linear-gradient(135deg, #ff9900 0%, #ff7700 100%);
  color: #fff;
}

.option-icon.netflix {
  background: linear-gradient(135deg, #e50914 0%, #d40813 100%);
  color: #fff;
}

.option-icon.prime {
  background: linear-gradient(135deg, #00a8e1 0%, #0073e6 100%);
  color: #fff;
}

.option-icon.playstation {
  background: linear-gradient(135deg, #003087 0%, #0070f3 100%);
  color: #fff;
}

.option-icon.generic {
  background: linear-gradient(135deg, var(--surface2) 0%, var(--primary) 100%);
  color: var(--accent);
}

.option-icon.voucher {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
}

.option-icon.perks {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9800 100%);
  color: #000;
}

.option-icon.cash {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: #fff;
}

.redemption-option span {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.redemption-option small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.disclaimer-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 12px;
  padding: 1rem;
}

.rewards-page .disclaimer-box p {
  color: var(--text-muted);
  line-height: 1.5;
}

.rewards-page .disclaimer-box strong {
  color: var(--accent);
}

/* Bonus Promo Strip */
.rewards-page .bonus-promo-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #ff9800 100%);
  color: #000;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.rewards-page .promo-content h3 {
  color: #000;
  margin-bottom: 0.5rem;
}

.rewards-page .promo-content p {
  color: #333;
  margin: 0;
}

/* FAQ Accordion */
.rewards-page .faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.rewards-page .faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.rewards-page .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.rewards-page .faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.rewards-page .faq-icon {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.rewards-page .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.rewards-page .faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.rewards-page .faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.rewards-page .faq-answer p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Trust & Transparency */
.rewards-page .trust-transparency {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.rewards-page .disclosure-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

.rewards-page .legal-links h4 {
  color: var(--text);
  margin-bottom: 1rem;
}

.rewards-page .legal-links ul li {
  margin-bottom: 0.5rem;
}

.rewards-page .legal-links a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.rewards-page .legal-links a:hover {
  color: var(--accent);
}

/* Final CTA */
.rewards-page .final-cta {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.rewards-page .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Mobile Sticky Button */
.rewards-page .mobile-sticky-earn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none;
}

/* Back to Top Button */
.rewards-page .back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.rewards-page .back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.rewards-page .back-to-top.visible {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rewards-page .trust-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .rewards-page .trust-item {
    font-size: 0.8rem;
  }
  
  .rewards-page .hero-cta-buttons {
    flex-direction: column;
  }
  
  .rewards-page .hero-cta-buttons .btn {
    width: 100%;
  }
  
  .rewards-page .store-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .rewards-page .value-display {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .rewards-page .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .rewards-page .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .rewards-page .mobile-sticky-earn {
    display: block;
  }
  
  .rewards-page .mobile-sticky-earn .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .rewards-page .bonus-promo-strip {
    text-align: center;
  }
  
  .rewards-page .step-card {
    padding: 1.5rem;
  }
  
  .rewards-page .reward-card {
    padding: 1.5rem;
  }

  .rewards-page .redemption-step {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .rewards-page .step-number-redemption {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .rewards-page .redemption-options-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .rewards-page .redemption-option {
    flex-direction: row;
    text-align: left;
    padding: 1rem;
  }
  
  .rewards-page .option-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-right: 0.75rem;
  }
  
  .rewards-page .redemption-cta {
    flex-direction: column;
  }
  
  .rewards-page .redemption-cta .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .rewards-page .hero-section {
    padding: 2rem !important;
  }
  
  .rewards-page .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.75rem;
  }
  
  .rewards-page .step-icon {
    font-size: 2rem;
  }
  
  .rewards-page .reward-icon {
    font-size: 2rem;
  }
  
  .rewards-page .zenpoints-icon {
    font-size: 2.5rem;
  }
}

/* Custom progress bar styling */
.progress {
    background: rgba(255,193,7,0.2);
    border-radius: 10px;
}

/* Chip hover effects */
.chip:hover {
    transform: translateY(-1px);
    transition: transform 0.2s ease;
}

/* Card hover effects */
.card-dark:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* ===== ZEN DASHBOARD STYLES (Bootstrap Enhanced) ===== */
.zen-dashboard {
    background: var(--bg);
    min-height: 100vh;
}

.zen-welcome-title {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text-main); /* Fallback */
}

/* Enhanced Bootstrap Alerts for Zen Theme */
.zen-alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    color: #ffc107;
}

.zen-alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #28a745;
}

/* Zen Point Cards Enhancement */
.zen-point-card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.zen-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.zen-point-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.zen-card-pending::before { background: #ffc107; }
.zen-card-approved::before { background: #28a745; }
.zen-card-ready::before { background: #007bff; }
.zen-card-declined::before { background: #dc3545; }

.zen-point-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.zen-card-pending .zen-point-icon { color: #ffc107; border-color: rgba(255, 193, 7, 0.3); }
.zen-card-approved .zen-point-icon { color: #28a745; border-color: rgba(40, 167, 69, 0.3); }
.zen-card-ready .zen-point-icon { color: #007bff; border-color: rgba(0, 123, 255, 0.3); }
.zen-card-declined .zen-point-icon { color: #dc3545; border-color: rgba(220, 53, 69, 0.3); }

.zen-point-amount {
    color: var(--text-main);
}

/* Enhanced Bootstrap Cards for Zen Theme */
.zen-section {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
}

.zen-section .card-header {
    background: transparent !important;
    border-color: var(--border) !important;
}

.zen-section .card-body {
    background: var(--surface) !important;
}

/* Transaction and Offer Items */
.zen-transaction-item,
.zen-offer-item {
    background: var(--surface2) !important;
    border: 1px solid var(--border) !important;
    transition: all 0.3s ease;
}

.zen-transaction-item:hover,
.zen-offer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.zen-store-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.zen-store-name {
    color: var(--text-main) !important;
}

.zen-transaction-amount {
    color: var(--accent) !important;
}

/* Transaction Status Badges */
.zen-transaction-status {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zen-status-pending { 
    background-color: rgba(255, 193, 7, 0.2) !important; 
    color: #ffc107 !important; 
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.zen-status-approved { 
    background-color: rgba(40, 167, 69, 0.2) !important; 
    color: #28a745 !important; 
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.zen-status-ready { 
    background-color: rgba(0, 123, 255, 0.2) !important; 
    color: #007bff !important; 
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.zen-status-declined { 
    background-color: rgba(220, 53, 69, 0.2) !important; 
    color: #dc3545 !important; 
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.zen-status-paid { 
    background-color: rgba(108, 117, 125, 0.2) !important; 
    color: #6c757d !important; 
    border: 1px solid rgba(108, 117, 125, 0.3);
}

/* Enhanced Bootstrap Form Controls */
.zen-form-input,
.zen-form-select {
    background: var(--surface2) !important;
    border: 2px solid var(--border) !important;
    color: var(--text-main) !important;
}

.zen-form-input:focus,
.zen-form-select:focus {
    background: var(--surface2) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.1) !important;
    color: var(--text-main) !important;
}

.zen-form-input:read-only {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
}

/* Form Labels Enhancement */
.form-label {
    color: var(--text-main) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Modal Enhancement */
.zen-modal-content {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
}

.zen-modal-content .modal-header {
    border-color: var(--border) !important;
}

.zen-modal-content .modal-footer {
    border-color: var(--border) !important;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .zen-dashboard {
        padding: 1rem !important;
    }
    
    .zen-point-card {
        margin-bottom: 1rem;
    }
    
    .zen-transaction-item,
    .zen-offer-item {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
    }
    
    .zen-transaction-item .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}

.category_list_h3 {
  font-size: 14px;
  margin:0;
}