/* ==========================================================================
   CouponCodeStore Design System
   Modern, Ultra-Fast, Mobile-First CSS
   Optimized for Core Web Vitals (LCP < 1.0s, CLS = 0)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #d1fae5;
  --brand-blue: #0284c7;
  --brand-blue-light: #e0f2fe;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-subtle: #e2e8f0;
  --border-focus: #94a3b8;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 16px 32px -4px rgba(15, 23, 42, 0.12);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* --------------------------------------------------------------------------
   Typography & Base Utilities
-------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  color: var(--primary);
  font-weight: 800;
  line-height: 1.25;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   Header & Navbar
-------------------------------------------------------------------------- */
.site-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.brand-logo .logo-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--accent));
  color: white;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
}

.brand-logo span span {
  color: var(--accent-dark);
}

.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-input {
  width: 100%;
  height: 44px;
  padding: 0 1rem 0 2.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.925rem;
  color: var(--text-main);
  transition: var(--transition-normal);
}

.search-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.925rem;
  font-weight: 600;
}

.header-links a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.header-links a:hover {
  color: var(--brand-blue);
}

/* --------------------------------------------------------------------------
   Hero Section (Premium Modern Dual-Tone Dark Theme)
-------------------------------------------------------------------------- */
.hero-section {
  padding: 4.5rem 0 3.75rem;
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 50%, #1e293b 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -0.75px;
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Hero Large Search Bar */
.hero-search-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.5rem 0.45rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.35);
  transition: var(--transition-normal);
}

.hero-search-box:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 15px 35px -5px rgba(56, 189, 248, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.hero-search-box .search-icon {
  font-size: 1.25rem;
  color: #94a3b8;
}

.hero-search-input {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  outline: none;
}

.hero-search-input::placeholder {
  color: #94a3b8;
}

.hero-search-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.hero-search-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
}

/* Quick Exam Shortcut Pills */
.hero-shortcuts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-shortcuts-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 0.25rem;
}

.hero-shortcut-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.hero-shortcut-chip:hover {
  background: #38bdf8;
  color: #0f172a;
  border-color: #38bdf8;
}

/* Hero Stats Pills */
.hero-stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Hero Deal Spotlight Bar */
.hero-deal-spotlight-bar {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.16) 0%, rgba(16, 185, 129, 0.16) 100%);
  border: 1px dashed rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
}

.spotlight-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spotlight-bar-badge {
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.spotlight-bar-text h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.spotlight-bar-text p {
  font-size: 0.825rem;
  color: #cbd5e1;
  margin: 0;
}

.spotlight-bar-action {
  flex-shrink: 0;
}

.btn-hero-copy-code {
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.btn-hero-copy-code:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

/* Quick Store Filter Pills */
.filter-pills-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.filter-pill {
  padding: 0.45rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   Section Headers
-------------------------------------------------------------------------- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.section-title-wrap h2 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Top Featured Stores Grid & Flagship Showcase
-------------------------------------------------------------------------- */
.stores-section {
  padding: 2.5rem 0 3.5rem;
}

/* Flagship Store Showcase Banner */
.flagship-store-banner {
  background: #ffffff;
  border: 2px solid #38bdf8;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px -5px rgba(2, 132, 199, 0.12);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.flagship-store-banner::before {
  content: "★ FLAGSHIP VERIFIED PARTNER";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: var(--radius-sm);
}

.flagship-avatar-box {
  width: 120px;
  height: 80px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.flagship-avatar-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.flagship-info h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.flagship-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.flagship-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
  max-width: 620px;
}

.flagship-perks-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.825rem;
  flex-wrap: wrap;
}

.flagship-perks-row span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.flagship-code-pill {
  background: #dcfce7;
  color: #065f46;
  font-weight: 800;
  font-family: monospace;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px dashed #10b981;
}

.flagship-action {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-flagship-explore {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-flagship-explore:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.4);
}

/* Partner Pipeline Grid */
.partner-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.partner-pipeline-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-fast);
}

.partner-pipeline-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.partner-avatar-placeholder {
  width: 52px;
  height: 52px;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.partner-pipeline-info h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.partner-pipeline-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.partner-status-tag {
  font-size: 0.725rem;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.store-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-card-hover);
}

.store-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.store-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.badge-discount {
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid #fecaca;
}

.store-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.store-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
  flex: 1;
}

.store-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border-subtle);
  font-size: 0.825rem;
}

.store-clicks-proof {
  color: #b45309;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.store-link-btn {
  color: var(--brand-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-fast);
}

.store-card:hover .store-link-btn {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Top Verified Coupons Section
-------------------------------------------------------------------------- */
.coupons-section {
  padding: 2.5rem 0 4rem;
}

.coupons-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.coupon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.coupon-card:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-md);
}

.coupon-store-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--border-subtle);
}

.coupon-store-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.coupon-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.coupon-meta-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.badge-green {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.badge-blue {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-dark);
  font-size: 0.775rem;
  font-weight: 700;
}

.coupon-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.35;
}

.coupon-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.coupon-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.mrp-strikethrough {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-offer {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
}

.savings-highlight {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* Coupon Action Block (Right Side) */
.coupon-action-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  min-width: 220px;
}

.code-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.btn-get-deal {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: var(--transition-fast);
}

.btn-get-deal:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.btn-get-deal:active {
  transform: translateY(0);
}

.coupon-stats-footer {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   E-E-A-T Trust Section (How We Verify)
-------------------------------------------------------------------------- */
.trust-section {
  padding: 3.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Category Hubs
-------------------------------------------------------------------------- */
.categories-section {
  padding: 3rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.cat-info h4 {
  font-size: 0.975rem;
  margin-bottom: 0.2rem;
}

.cat-info span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Footer
-------------------------------------------------------------------------- */
.site-footer {
  background: var(--primary);
  color: #94a3b8;
  padding: 3.5rem 0 2rem;
  margin-top: auto;
  font-size: 0.875rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-disclosure {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   Outclick Modal & Toast Notification
-------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-subtle);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.modal-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-code-box {
  background: var(--bg-subtle);
  border: 2px dashed var(--accent);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-code-text {
  font-family: monospace;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary);
}

.modal-copy-btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.modal-voting-row {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.875rem;
}

.voting-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.btn-vote {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-vote:hover {
  background: var(--bg-subtle);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
-------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .coupon-card {
    grid-template-columns: 60px 1fr;
  }
  .coupon-action-box {
    grid-column: 1 / -1;
    width: 100%;
    align-items: stretch;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    height: auto;
    padding: 0.75rem 0;
    flex-direction: column;
    gap: 0.75rem;
  }
  .header-search {
    max-width: 100%;
  }
  .header-links {
    display: none;
  }
  .coupon-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .coupon-store-icon {
    width: 50px;
    height: 50px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ==========================================================================
   Store Detail Page Styles (Flagship Store Architecture - World Class UI)
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs-bar {
  padding: 0.85rem 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumbs-list li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--text-light);
  font-weight: 700;
}
.breadcrumbs-list a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.breadcrumbs-list a:hover {
  color: var(--brand-blue);
}
.breadcrumbs-list li.current {
  color: var(--primary);
  font-weight: 600;
}

/* Premium Store Hero Banner */
.store-hero-premium {
  background: linear-gradient(135deg, #0b1329 0%, #0f172a 50%, #1e293b 100%);
  color: #ffffff;
  padding: 3rem 0 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.store-hero-premium::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.store-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.store-hero-brand-wrap {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
}
.store-hero-avatar {
  width: 130px;
  height: 90px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.store-hero-avatar img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.store-hero-headings h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.store-hero-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.hero-tag.verified {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.hero-tag.rating {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.hero-tag.savings {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}
.store-hero-lead {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 680px;
  line-height: 1.55;
}

/* Best Code Voucher Box */
.hero-voucher-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-width: 270px;
  text-align: center;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
}
.voucher-top-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}
.voucher-code-box {
  background: #0f172a;
  border: 2px dashed #10b981;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  margin-bottom: 0.75rem;
}
.voucher-code-box:hover {
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}
.voucher-code-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.voucher-code-text {
  font-family: monospace;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}
.voucher-copy-action {
  background: #10b981;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}
.voucher-subtext {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* 2-Column Store Grid Layout */
.store-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  padding: 2.75rem 0 4rem;
  align-items: start;
}
.store-content-main {
  min-width: 0;
}

/* Filter Header Bar */
.deals-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.deals-header-bar h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.deals-header-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.deals-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.deal-pill {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}
.deal-pill.active, .deal-pill:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Premium Deal Cards List */
.premium-deals-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.deal-card-premium {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
}
.deal-card-premium:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

/* Spotlight Card (Deal of the Day) */
.deal-card-premium.spotlight-card {
  border: 2px solid #f59e0b;
  box-shadow: 0 10px 30px -5px rgba(245, 158, 11, 0.18);
}
.spotlight-badge {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 1.25rem;
  text-transform: uppercase;
}

.deal-card-body {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

/* Left Ribbon */
.deal-discount-ribbon {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px dashed #10b981;
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 110px;
}
.ribbon-percent {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.2;
}
.ribbon-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  margin: 0.35rem 0 0.15rem;
}
.ribbon-code-preview {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

/* Middle Info Block */
.deal-info-block {
  min-width: 0;
}
.deal-tags-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.45rem;
}
.tag-exam {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.tag-highlight {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.tag-verified {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}
.deal-title {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}
.deal-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.deal-pricing-strip {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-mrp {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.95rem;
}
.price-discounted {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.price-savings-badge {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

/* Right Action Column */
.deal-action-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.6rem;
}
.btn-claim-deal {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.btn-claim-deal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
.btn-claim-deal .btn-icon {
  font-size: 1.25rem;
}
.btn-claim-deal .btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}
.btn-claim-deal .btn-text strong {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}
.btn-claim-deal .btn-text small {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 1px;
}
.deal-social-proof {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.deal-social-proof .proof-success {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Pricing Matrix Section */
.pricing-matrix-section {
  margin-bottom: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.matrix-header {
  margin-bottom: 1.5rem;
}
.matrix-header h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.matrix-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.matrix-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.modern-pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  text-align: left;
}
.modern-pricing-table th {
  background: #0f172a;
  color: #ffffff;
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.modern-pricing-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: middle;
}
.modern-pricing-table tr:hover {
  background: rgba(2, 132, 199, 0.03);
}
.modern-pricing-table tr.highlighted-row {
  background: #f8fafc;
}
.table-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  background: var(--bg-subtle);
  color: var(--text-muted);
}
.table-pill.hot {
  background: #fef3c7;
  color: #b45309;
}
.table-pill.value {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.mrp-del {
  text-decoration: line-through;
  color: var(--text-light);
}
.price-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--accent-dark);
}
.inclusion-pill {
  background: var(--bg-subtle);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}
.table-code {
  font-family: monospace;
  font-weight: 800;
  background: #e0f2fe;
  color: #0284c7;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Horizontal Flyers Carousel */
.flyers-carousel-section {
  margin-bottom: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.flyers-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.flyers-header h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.flyers-header p {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.carousel-nav-arrows {
  display: flex;
  gap: 0.5rem;
}
.btn-carousel-nav {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--primary);
}
.btn-carousel-nav:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.flyers-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.flyers-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.flyers-carousel-track::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.flyer-card {
  flex: 0 0 240px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-normal);
}
.flyer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-blue);
}
.flyer-img-wrap {
  position: relative;
  height: 310px;
  background: #f8fafc;
  overflow: hidden;
}
.flyer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.flyer-card:hover .flyer-img-wrap img {
  transform: scale(1.04);
}
.flyer-zoom-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.flyer-meta {
  padding: 0.85rem;
}
.flyer-meta h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flyer-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
}

/* How to Apply Card */
.how-to-apply-card {
  margin-bottom: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.how-to-apply-card h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.guide-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.guide-steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.guide-step {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.guide-step-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.guide-step h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.guide-step p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FAQ Modern Accordion */
.faq-modern-card {
  margin-bottom: 3.5rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.faq-modern-card h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}
.faq-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.faq-modern-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-row {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-q-title {
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  font-size: 0.95rem;
}
.faq-q-title::-webkit-details-marker {
  display: none;
}
.faq-q-title::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--brand-blue);
  font-weight: 700;
}
.faq-row[open] .faq-q-title::after {
  content: "−";
}
.faq-a-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  border-top: 1px solid var(--bg-subtle);
  padding-top: 0.85rem;
}

/* Right Sticky Sidebar */
.store-sidebar-aside {
  position: sticky;
  top: 90px;
}
.sidebar-sticky-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.sidebar-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}
.sidebar-box-header h3 {
  font-size: 1.1rem;
  color: var(--primary);
}
.sidebar-live-dot {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.sidebar-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.summary-line .label {
  color: var(--text-muted);
}
.summary-line .value {
  font-weight: 700;
  color: var(--primary);
}
.summary-line .value-code {
  font-family: monospace;
  font-weight: 800;
  background: #d1fae5;
  color: #065f46;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.btn-sidebar-cta {
  width: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-sidebar-cta:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}
.sidebar-guarantee {
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  width: auto;
  max-width: min(92vw, 440px);
  max-height: 92vh;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  animation: lightboxPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-image-wrap {
  position: relative;
  width: 100%;
  max-height: calc(90vh - 65px);
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #ffffff;
}

.lightbox-content img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: #ffffff;
}

.lightbox-footer {
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lightbox-caption {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-copy-flyer-code {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  border: 1.5px dashed #059669;
  color: #065f46;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy-flyer-code:hover {
  background: #d1fae5;
  transform: translateY(-1px);
}

.flyer-code-pill {
  font-family: monospace;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-claim-flyer-deal {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #ffffff !important;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.btn-claim-flyer-deal:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.lightbox-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.08);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .store-hero-inner {
    grid-template-columns: 1fr;
  }
  .store-hero-brand-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .store-hero-badges-row {
    justify-content: center;
  }
  .hero-voucher-card {
    width: 100%;
  }
  .store-layout-grid {
    grid-template-columns: 1fr;
  }
  .store-sidebar-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Prevent Any Layout Overflow */
  .container {
    padding: 0 1rem;
    max-width: 100%;
  }
  .store-layout-grid {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 0 3rem;
    gap: 1.75rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .store-content-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  /* Compact Mobile Store Hero */
  .store-hero-premium {
    padding: 1.75rem 0 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .store-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .store-hero-brand-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }
  .store-hero-avatar {
    width: 100px;
    height: 55px;
    padding: 0.4rem;
    margin: 0 auto;
    border-radius: var(--radius-sm);
  }
  .store-hero-headings {
    width: 100%;
    text-align: center;
  }
  .store-hero-headings h1 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    word-break: break-word;
  }
  .store-hero-badges-row {
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
  }
  .hero-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
  }
  .store-hero-lead {
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0 auto;
  }
  .hero-voucher-card {
    width: 100%;
    min-width: 0;
    padding: 1rem 0.85rem;
    margin: 0 auto;
  }
  .voucher-top-tag {
    font-size: 0.7rem;
    margin-bottom: 0.35rem;
  }
  .voucher-code-box {
    padding: 0.65rem 0.85rem;
    margin-bottom: 0.4rem;
  }
  .voucher-code-text {
    font-size: 1.35rem;
    letter-spacing: 1.5px;
  }
  .voucher-copy-action {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }
  .voucher-subtext {
    font-size: 0.75rem;
  }

  /* Filter Header Bar & Touch-Scroll Pills */
  .deals-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }
  .deals-header-bar h2 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .deals-header-meta {
    font-size: 0.8rem;
  }
  .deals-filter-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.45rem;
    width: 100%;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }
  .deals-filter-pills::-webkit-scrollbar {
    display: none;
  }
  .deal-pill {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.35rem 0.85rem;
  }

  /* Compact Deal Cards on Mobile */
  .deal-card-premium {
    border-radius: var(--radius-md);
    width: 100%;
  }
  .deal-card-body {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }
  .deal-discount-ribbon {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: auto;
    padding: 0.55rem 0.85rem;
  }
  .ribbon-percent {
    font-size: 1.05rem;
  }
  .deal-info-block h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }
  .deal-description {
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0.65rem;
  }
  .deal-price-block {
    margin-bottom: 0.5rem;
  }
  .btn-deal-action {
    width: 100%;
    height: 46px;
    font-size: 0.92rem;
    justify-content: center;
  }
  .btn-claim-deal {
    width: 100%;
  }
  .deal-card-footer {
    padding: 0.6rem 1rem;
    font-size: 0.76rem;
  }

  /* Responsive Plan Pricing Matrix (Mobile Cards) */
  .pricing-matrix-section {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .matrix-header h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    word-break: break-word;
  }
  .matrix-header p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .matrix-table-wrap {
    border: none;
    overflow: visible;
    width: 100%;
  }
  .modern-pricing-table,
  .modern-pricing-table tbody,
  .modern-pricing-table tr,
  .modern-pricing-table td {
    display: block;
    width: 100%;
  }
  .modern-pricing-table thead {
    display: none;
  }
  .modern-pricing-table tr {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  }
  .modern-pricing-table tr.highlighted-row {
    border-color: #10b981;
    background: #f0fdf4;
    border-left-width: 4px;
  }
  .modern-pricing-table td {
    padding: 0.45rem 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
  }
  .modern-pricing-table td:last-child {
    border-bottom: none;
    padding-top: 0.6rem;
  }
  .modern-pricing-table td:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.6rem;
    margin-bottom: 0.35rem;
    border-bottom: 1.5px solid #e2e8f0;
  }
  .modern-pricing-table td:first-child strong {
    font-size: 0.98rem;
    color: var(--primary);
  }
  .modern-pricing-table td:first-child .table-pill {
    margin-left: 0;
  }
  .modern-pricing-table td:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Responsive Horizontal Flyers Carousel */
  .flyers-carousel-section {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .flyers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .flyers-header h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .carousel-controls-nav {
    display: none;
  }
  .flyers-carousel-track {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.85rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }
  .flyer-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
  }
  .flyer-img-wrap {
    height: 260px;
  }

  /* How to Apply & FAQs on Mobile */
  .how-to-apply-card {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
  }
  .steps-list-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .store-faq-section {
    padding: 1.25rem 1rem;
    margin-bottom: 2rem;
  }
  .faq-question-btn {
    font-size: 0.92rem;
    padding: 1rem 0.85rem;
  }

  /* Flagship Banner & Homepage Extras */
  .flagship-store-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }
  .flagship-store-banner::before {
    position: static;
    display: inline-block;
    border-radius: var(--radius-sm);
    margin: 0 auto 0.75rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.75rem;
  }
  .flagship-avatar-box {
    margin: 0 auto;
  }
  .flagship-info h3 {
    justify-content: center;
    font-size: 1.15rem;
    line-height: 1.35;
  }
  .flagship-perks-row {
    justify-content: center;
    gap: 0.75rem;
  }
  .section-title-wrap h2 {
    font-size: 1.3rem;
  }
  .hero-deal-spotlight-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }
  .spotlight-bar-left {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .btn-hero-copy-code {
    width: 100%;
    justify-content: center;
  }
}


