@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,400;1,600;1,700&display=swap');

/* Color Variables */
:root {
  --font-body: 'Inter', sans-serif;
  --font-headline: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Light Theme */
  --bg-primary: #f8fafc;
  --bg-card: #ffffff;
  --bg-header: rgba(255, 255, 255, 0.85);
  --border-color: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --primary: #0047ab; /* Navy Blue */
  --primary-hover: #003580;
  --primary-rgb: 0, 71, 171;
  
  --secondary: #0096ff; /* Sky Blue */
  --secondary-hover: #007adb;
  --secondary-rgb: 0, 150, 255;
  
  --accent: #00d2ff;
  --accent-light: rgba(0, 210, 255, 0.08);
  
  --card-shadow: 0 1px 3px rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.03);
  --card-shadow-hover: 0 4px 6px rgba(0,0,0,0.02), 0 20px 40px rgba(0,0,0,0.08);
  --transition-speed: 0.3s;
}

[data-theme="dark"] {
  /* Dark Theme */
  --bg-primary: #0b0f19;
  --bg-card: #151c2c;
  --bg-header: rgba(11, 15, 25, 0.85);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --primary: #38bdf8; /* Bright Blue */
  --primary-hover: #7dd3fc;
  --primary-rgb: 56, 189, 248;
  
  --secondary: #0096ff;
  --secondary-hover: #38bdf8;
  --secondary-rgb: 0, 150, 255;
  
  --accent: #00d2ff;
  --accent-light: rgba(0, 210, 255, 0.12);
  
  --card-shadow: 0 1px 3px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.15);
  --card-shadow-hover: 0 4px 6px rgba(0,0,0,0.2), 0 20px 40px rgba(0,0,0,0.3);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  overflow-x: hidden;
  padding-bottom: 70px; /* mobile padding */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.25;
}

.font-serif {
  font-family: var(--font-serif);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Background Gradients & Mesh Patterns (Washzi Style) */
.grain-overlay {
  position: relative;
}

.mesh-hero {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: radial-gradient(circle at 90% 10%, rgba(var(--secondary-rgb), 0.08), transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(var(--primary-rgb), 0.05), transparent 45%);
}

.dot-pattern {
  position: absolute;
  inset: 0;
  z-index: -9;
  background-image: radial-gradient(var(--border-color) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-speed) ease;
}

.header-container {
  display: flex;
  height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex-shrink: 1;
}

.logo-link > div {
  min-width: 0;
  overflow: hidden;
}

.logo-img {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  background-color: white;
  padding: 4px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.logo-subtext {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background-color: rgba(var(--primary-rgb), 0.05);
}

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

/* Mobile header: keep the bar compact and legible on small screens */
@media (max-width: 640px) {
  .header-container {
    height: 3.75rem;
    gap: 0.4rem;
  }

  .logo-img {
    height: 2.1rem;
    width: 2.1rem;
    border-radius: 0.6rem;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-subtext {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
  }

  /* Track Order is already available in the drawer + bottom nav on mobile */
  .nav-track-btn {
    display: none;
  }

  .btn-icon {
    width: 2.1rem;
    height: 2.1rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9999px; /* Pill Shape like Washzi */
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-card);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--primary);
  color: white;
}

.btn-secondary {
  background-color: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background-color: var(--bg-primary);
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-icon {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.btn-icon:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
  border-color: var(--primary);
}

/* Light / Dark Mode Icon Swap */
.theme-toggle .sun-icon {
  display: block;
}
.theme-toggle .moon-icon {
  display: none;
}
[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}
[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

/* Hamburger mobile button */
.menu-btn {
  display: inline-flex;
  border: none;
  background: none;
  color: var(--text-primary);
  cursor: pointer;
}

@media (min-width: 992px) {
  .menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 5rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  color: var(--primary);
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  color: var(--text-primary);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

@media (min-width: 992px) {
  .hero-desc {
    margin: 0 0 2.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

/* Hero visual (Washzi Phone Mock / Banner Layout) */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-banner-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  box-shadow: var(--card-shadow-hover);
  padding: 1.5rem;
  transition: all var(--transition-speed) ease;
  overflow: hidden;
}

.hero-banner-card:hover {
  transform: translateY(-4px);
}

.hero-banner-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
}

/* Bento Card Grid (Washzi Core UI) */
.bento-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

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

.bento-accent-bar {
  height: 4px;
  width: 100%;
}

.bento-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bento-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.bento-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bento-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.bento-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.bento-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 13px;
  color: var(--text-secondary);
}

.bento-feature-icon {
  color: var(--primary);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: rgba(var(--primary-rgb), 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--accent-light);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Step list items (Horizontal Flow on Desktop) */
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.step-tag-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.step-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sector List styling */
.sector-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.sector-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow);
}

.sector-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all var(--transition-speed) ease;
}

.sector-card:hover .sector-icon {
  background-color: var(--primary);
  color: white;
}

.sector-name {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Impact Stats & Interactive Chart */
.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .impact-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-stat-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all var(--transition-speed) ease;
}

.impact-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow);
}

.impact-stat-number {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.impact-chart-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.75rem;
  max-width: 56rem;
  margin: 0 auto;
}

.impact-chart-header {
  margin-bottom: 1.5rem;
}

.impact-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 180px;
  padding: 0 0.25rem;
}

.impact-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.impact-bar-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  background-color: var(--text-primary);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.35rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.impact-bar-col:hover .impact-bar-tooltip,
.impact-bar-col.active .impact-bar-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.impact-bar {
  width: 100%;
  max-width: 2.5rem;
  border-radius: 0.5rem 0.5rem 0.25rem 0.25rem;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  height: 4px;
  transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.2s ease;
}

.impact-bar-col:hover .impact-bar,
.impact-bar-col.active .impact-bar {
  filter: brightness(1.15);
}

.impact-bar-day {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .impact-chart-card { padding: 1.25rem; }
  .impact-chart-bars { height: 140px; }
  .impact-bar-day { font-size: 0.65rem; }
  .impact-bar-tooltip { font-size: 0.62rem; }
}

/* Accordion FAQs */
.faq-list {
  max-width: 44rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-speed) ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform var(--transition-speed) ease;
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease-out;
}

.faq-answer p {
  padding-bottom: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Pricing Page specific overrides */
.pricing-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  gap: 0.4rem;
}

.pricing-tab {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.45rem 1.15rem;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
}

.pricing-tab:hover, .pricing-tab.active {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-item-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.85rem;
  padding: 1.15rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-speed) ease;
}

.pricing-item-card:hover {
  box-shadow: var(--card-shadow);
  border-color: var(--border-hover);
  transform: translateX(3px);
}

.pricing-item-details {
  flex-grow: 1;
}

.pricing-item-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pricing-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.65rem;
}

.pricing-subtag {
  font-size: 10px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
}

.pricing-prices-row {
  display: flex;
  gap: 1.25rem;
}

.price-option-box {
  font-size: 11px;
}

.price-option-label {
  color: var(--text-muted);
  font-size: 10px;
  margin-bottom: 0.1rem;
}

.price-option-value {
  font-weight: 700;
  color: var(--text-primary);
}

/* Pricing Page Banner Image */
.pricing-banner-img {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.pricing-banner-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

@media (max-width: 640px) {
  .pricing-banner-img img {
    height: 150px;
  }
}

/* Pricing Search */
.search-wrapper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 3rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

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

/* Calculator Widget */
.calculator-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: var(--card-shadow-hover);
  max-width: 46rem;
  margin: 4rem auto 0;
}

.calculator-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-primary);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.calc-inputs-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-summary-col {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-select, .calc-input-qty {
  padding: 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.calc-select {
  flex-grow: 1;
}

.calc-input-qty {
  width: 3.5rem;
  text-align: center;
}

.calc-summary-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.4rem;
}

/* Live Cost Breakdown Donut Chart */
.calc-chart-wrap {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border-color);
  animation: chartFadeIn 0.4s ease;
}

@keyframes chartFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-chart-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 420px) {
  .calc-chart-inner {
    flex-direction: row;
    align-items: center;
  }
}

.calc-chart-svg-holder {
  position: relative;
  width: 100%;
  max-width: 150px;
  flex-shrink: 0;
  margin: 0 auto;
}

.calc-chart-svg-holder svg {
  width: 100%;
  height: auto;
  display: block;
}

.calc-chart-svg-holder svg circle {
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
}

.calc-chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.calc-chart-center .amt {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.calc-chart-center .lbl {
  display: block;
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calc-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  max-height: 130px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.calc-legend-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.calc-legend-swatch {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.calc-legend-name {
  flex-grow: 1;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calc-legend-pct {
  font-weight: 700;
  color: var(--text-primary);
}

.calc-summary-list {
  list-style: none;
  font-size: 0.825rem;
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.calc-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  color: var(--text-secondary);
}

.calc-summary-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border-color);
  padding-top: 0.65rem;
  color: var(--primary);
}

/* Form Styles */
.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: var(--card-shadow);
  max-width: 34rem;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

textarea.form-control {
  min-height: 5.5rem;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-alert {
  background-color: var(--accent-light);
  border-left: 3px solid var(--primary);
  color: var(--text-secondary);
  padding: 0.85rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.info-alert-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

/* Contact Page Side Photo */
.contact-side-photo {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  max-width: 20rem;
}

.contact-side-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

@media (max-width: 640px) {
  .contact-side-photo {
    max-width: 100%;
  }
  .contact-side-photo img {
    height: 180px;
  }
}

/* Map Mock widget */
.map-mock-box {
  width: 100%;
  height: 200px;
  background-color: var(--bg-primary);
  border: 1.5px dashed var(--border-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  color: var(--text-muted);
}

/* Store Listing Card specific */
.store-card {
  padding: 1.75rem;
}

.store-meta-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.65rem;
}

.store-meta-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.store-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* Vertical Tracking Timeline */
.tracker-timeline {
  margin-top: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.tracker-timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background-color: var(--border-color);
}

.tracker-step {
  position: relative;
  margin-bottom: 1.75rem;
}

.tracker-step:last-child {
  margin-bottom: 0;
}

.tracker-dot {
  position: absolute;
  left: -2rem;
  top: 0.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  z-index: 2;
  transition: all var(--transition-speed) ease;
}

.tracker-step.completed .tracker-dot {
  background-color: #10b981;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.tracker-step.current .tracker-dot {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
  animation: pulse-dot 2s infinite;
}

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

.tracker-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.tracker-step.completed .tracker-step-title {
  color: #10b981;
}

.tracker-step.current .tracker-step-title {
  color: var(--primary);
}

.tracker-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tracker-timeline::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.4rem;
  height: 0%;
  width: 2px;
  background-color: var(--primary);
  z-index: 1;
  transition: height 1s ease-in-out;
}

.whatsapp-chat-button {
  background-color: #25d366 !important;
  color: white !important;
}

.whatsapp-chat-button:hover {
  background-color: #20ba5a !important;
}

/* Footer */
footer {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  }
}

.footer-col h3 {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p {
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 2px;
}

.social-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.social-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-conditions {
  list-style: none;
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.footer-conditions li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

/* Mobile Bottom Navigation Bar */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.25rem;
  background-color: var(--bg-header);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  transition: all var(--transition-speed) ease;
}

@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  flex-grow: 1;
  height: 100%;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--primary);
}

.mobile-nav-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Overlay Sidebar Mobile Drawer */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-speed) ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  bottom: 0;
  width: 260px;
  background-color: var(--bg-card);
  z-index: 1002;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: right var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.drawer-link {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
}

.drawer-link:hover, .drawer-link.active {
  color: var(--primary);
}

/* Badge count */
.badge-count {
  background-color: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 9999px;
  margin-left: 0.3rem;
  vertical-align: middle;
}

/* Scroll Reveal Animation Framework */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
  transform: translateX(-30px);
}

.reveal.reveal-right {
  transform: translateX(30px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Calculator Action Micro-Animation */
@keyframes flash-green {
  0% { background-color: rgba(16, 185, 129, 0.15); border-color: #10b981; }
  100% { background-color: var(--bg-card); border-color: var(--border-color); }
}

.calc-flash-active {
  animation: flash-green 1s ease-out;
}

/* Mobile & Tablet Optimizations */
@media (max-width: 991px) {
  .section {
    padding: 3.5rem 0;
  }
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  /* Increase touch targets for mobile accessibility */
  .btn, .pricing-tab, .faq-question, .mobile-nav-item {
    min-height: 44px;
  }
  .form-control {
    min-height: 48px;
  }
  
  /* Prevent horizontal cutoffs */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Pulse keyframes for logo float hover */
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.logo-link:hover .logo-img {
  animation: logo-float 2s ease-in-out infinite;
}

/* Touch focus improvements */
.pricing-item-card:active {
  background-color: var(--accent-light);
  transform: scale(0.98);
}

/* Animated Ambient Floating Blobs */
.bg-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -8;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: float-blob 20s infinite alternate ease-in-out;
}

[data-theme="dark"] .blob {
  opacity: 0.12;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary), var(--secondary));
  top: 10%;
  left: 5%;
  animation-duration: 25s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary), var(--accent));
  top: 40%;
  right: 10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent), var(--primary));
  bottom: 10%;
  left: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Glassmorphic Bento Cards */
.bento-card, .form-card, .calculator-card {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .bento-card, [data-theme="dark"] .form-card, [data-theme="dark"] .calculator-card {
  background-color: rgba(21, 28, 44, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Sliding underline navbar links */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

/* Premium Button Shadow Glows */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px) scale(1.02);
}

/* Pulse animation on theme toggler */
.theme-toggle:hover {
  transform: rotate(45deg);
}

/* =========================================================
   Enhanced Interactivity Layer
   ========================================================= */

/* Sticky header gains depth once the page scrolls */
header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

[data-theme="dark"] header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Logo gets a subtle glow + lift on hover */
.logo-link .logo-img {
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.35);
}

/* Cursor-tracking spotlight for cards (bento, pricing, store, sector, form) */
.tilt-card {
  position: relative;
  --spot-x: 50%;
  --spot-y: 50%;
}

.tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 220px at var(--spot-x) var(--spot-y), rgba(var(--primary-rgb), 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.tilt-card:hover::before {
  opacity: 1;
}

.tilt-card > * {
  position: relative;
  z-index: 1;
}

/* Draggable pricing cards */
.pricing-item-card[draggable="true"] {
  cursor: grab;
}

.pricing-item-card.dragging {
  opacity: 0.4;
  cursor: grabbing;
}

/* Calculator card as an active drop target */
#calculator-section.drop-active {
  outline: 2px dashed var(--primary);
  outline-offset: 6px;
  background-color: rgba(var(--primary-rgb), 0.04);
}

/* Toast Notification System */
.toast-container {
  position: fixed;
  top: 5.5rem;
  right: 1.25rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 22rem;
}

@media (max-width: 640px) {
  .toast-container {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.85rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow-hover);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.toast.toast-visible {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
}

.toast-success .toast-icon { background-color: #d1fae5; color: #10b981; }
.toast-error .toast-icon { background-color: #fee2e2; color: #ef4444; }
.toast-info .toast-icon { background-color: var(--accent-light); color: var(--primary); }

/* Back to top floating button */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
  opacity: 0;
  transform: translateY(1rem) scale(0.8);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.05);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 6rem;
  }
}

/* Shake animation for empty required form fields */
@keyframes field-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.field-shake {
  animation: field-shake 0.5s ease;
  border-color: #ef4444 !important;
}

/* Store locator distance badge + nearest highlight */
.store-distance-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--accent-light);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin: 0.4rem 0 -0.25rem;
}

.store-card.nearest-store {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15), var(--card-shadow-hover);
}

.store-card.nearest-store::after {
  content: 'Nearest to you';
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: linear-gradient(135deg, #0047ab, #00d2ff);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  z-index: 2;
}

/* GPS-tagged map preview */
.map-mock-box.gps-tagged {
  border-color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.05);
}

