/* Fade In Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate="fade-up"] {
  transform: translateY(20px);
}

[data-animate="fade-down"] {
  transform: translateY(-20px);
}

[data-animate="fade-left"] {
  transform: translateX(20px);
}

[data-animate="fade-right"] {
  transform: translateX(-20px);
}

[data-animate].animate-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* Delay classes */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }

/* Global Reset & Tokens */
:root {
  --bg: #0c0c0d;
  --panel: #111113;
  --text: #f2f2f2;
  --muted: #b0b0b3;
  --accent: #22c55e;
  --accent-2: #4ade80;
  --border: #2a2a2e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  padding: 0;
  margin: 0;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(34,197,94,0.15), transparent 60%),
              radial-gradient(1000px 500px at 90% 0%, rgba(34,197,94,0.18), transparent 60%),
              var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 8px 1px rgba(34, 197, 94, 0.9);
  filter: blur(0.5px);
  /* Hide bottom edge glow while keeping top and sides */
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 12px), transparent 100%);
  mask-image: linear-gradient(to bottom, black calc(100% - 12px), transparent 100%);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12,12,13,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.logo-mark {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.brand-name { font-size: 18px; }

.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--text); }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
}

.mobile-menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.2s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}
.btn.small { padding: 8px 12px; font-size: 14px; }
.btn-primary { background: linear-gradient(180deg, var(--accent), #16a34a); color: #0b0b0c; border-color: transparent; font-weight: 800; }
.btn-ghost { background: transparent; }
.btn-light { background: rgba(34,197,94,0.05); color: var(--accent-2); border-color: var(--accent); font-weight: 700; }
.btn-light:hover { background: rgba(34,197,94,0.1); border-color: var(--accent-2); }

/* Hero */
.section.hero { padding: 120px 0 30px; position: relative; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.eyebrow { color: var(--accent-2); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }
.hero-copy h1 { font-size: clamp(34px, 6vw, 64px); line-height: 1.1; margin: 10px 0 12px; }
.hero-copy .accent { color: var(--accent-2); text-shadow: 0 0 18px rgba(34,197,94,0.4); }
.subhead { color: var(--muted); font-size: 18px; }
.actions { display: flex; gap: 12px; margin-top: 18px; }
.trust { margin-top: 16px; color: var(--muted); font-size: 14px; }

.hero-visuals { 
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.05), rgba(34,197,94,0.02));
  border: 1px solid rgba(34,197,94,0.1);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(12,12,13,0.8));
  padding: 40px 24px 24px;
  color: var(--text);
}

.overlay-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-2);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
  letter-spacing: 1px;
}

.animated-visuals {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Floating Geometric Shapes */
.floating-shape {
  position: absolute;
  border: 2px solid rgba(34,197,94,0.3);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  top: 60%;
  left: 70%;
  animation-delay: 2s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 0 0;
  top: 30%;
  right: 25%;
  animation-delay: 4s;
}

.shape-4 {
  width: 35px;
  height: 35px;
  border-radius: 4px;
  bottom: 25%;
  left: 40%;
  animation-delay: 1s;
}

/* Glowing Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.4), transparent);
  animation: glow 4s ease-in-out infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 10%;
  animation-delay: 3s;
}

/* Animated Lines */
.animated-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.6), transparent);
  animation: lineFlow 5s linear infinite;
}

.line-1 {
  width: 120px;
  top: 25%;
  left: 10%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.line-2 {
  width: 80px;
  bottom: 35%;
  right: 20%;
  transform: rotate(-30deg);
  animation-delay: 2s;
}

.line-3 {
  width: 100px;
  top: 70%;
  left: 50%;
  transform: rotate(15deg);
  animation-delay: 4s;
}

/* Pulse Rings */
.pulse-ring {
  position: absolute;
  border: 2px solid rgba(34,197,94,0.2);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 30%;
  animation-delay: 0s;
}

.ring-2 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  right: 40%;
  animation-delay: 1.5s;
}

/* Floating Text */
.floating-text {
  position: absolute;
  color: rgba(34,197,94,0.4);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  animation: textFloat 8s ease-in-out infinite;
}

.text-1 {
  top: 20%;
  right: 40%;
  animation-delay: 0s;
}

.text-2 {
  bottom: 25%;
  left: 20%;
  animation-delay: 2.5s;
}

.text-3 {
  top: 65%;
  right: 25%;
  animation-delay: 5s;
}

/* Animation Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glow {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(34,197,94,0.3);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(34,197,94,0.6);
  }
}

@keyframes lineFlow {
  0% { 
    opacity: 0;
    transform: translateX(-100%) rotate(45deg);
  }
  50% { 
    opacity: 1;
  }
  100% { 
    opacity: 0;
    transform: translateX(100%) rotate(45deg);
  }
}

@keyframes pulse {
  0% { 
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% { 
    transform: scale(0.8);
    opacity: 0.8;
  }
}

@keyframes textFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% { 
    transform: translateY(-15px) scale(1.1);
    opacity: 0.8;
  }
}

.about-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.detail { background: rgba(17,17,19,0.8); border: 1px solid var(--border); border-radius: 18px; padding: 18px; }
.detail h3 { margin: 0 0 6px; }
.detail p { margin: 0; color: var(--muted); }

/* Quick Store Section */
.section.quick-stores { 
  padding: 48px 0 64px; 
  background: rgba(17,17,19,0.4);
  border-top: 1px solid var(--border);
}

.quick-store-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quick-store-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 12px;
}

.quick-store-content p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 32px;
  line-height: 1.6;
}

.btn.large {
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 700;
  gap: 12px;
  margin-bottom: 24px;
}

.quick-store-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(17,17,19,0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.feature-icon {
  font-size: 16px;
}

/* Stores */
.section.stores { padding: 36px 0 72px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 6px; }
.section-header p { margin: 0; color: var(--muted); }

.store-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; margin-top: 20px; }
.map { position: sticky; top: 72px; align-self: start; }
.google-map { height: 380px; border-radius: 18px; background: var(--panel); border: 1px solid var(--border); }
.map-address { margin-top: 12px; padding: 14px; border-radius: 12px; background: rgba(17,17,19,0.8); border: 1px solid var(--border); color: var(--muted); font-size: 14px; text-align: center; }
.map-placeholder { height: 420px; border-radius: 18px; border: 1px dashed #4ade80; background: linear-gradient(180deg, rgba(34,197,94,0.12), rgba(34,197,94,0.04)); display: grid; place-items: center; color: #4ade80; }

.store-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
#store-search { flex: 1; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--border); background: #0f0f11; color: var(--text); }
.count { color: var(--muted); font-size: 14px; }

.store-list { display: grid; gap: 12px; }
.store-card { display: grid; grid-template-columns: 120px 1fr; gap: 14px; padding: 14px; border: 1px solid var(--border); border-radius: 16px; background: rgba(17,17,19,0.8); cursor: pointer; transition: all 0.2s ease; }
.store-card:hover { border-color: var(--accent); background: rgba(17,17,19,0.9); }
.store-card .thumb { height: 100px; border-radius: 12px; border: 1px dashed #4ade80; background: linear-gradient(180deg, rgba(34,197,94,0.12), rgba(34,197,94,0.04)); display: grid; place-items: center; color: #4ade80; font-size: 12px; }
.store-card h4 { margin: 0; }
.store-card p { margin: 6px 0 0; color: var(--muted); }
.store-meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; margin-top: 6px; }
.store-actions { margin-top: 10px; display: flex; gap: 10px; }
.store-actions .btn { padding: 10px 12px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 20px 0; background: rgba(12,12,13,0.8); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.footer-brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-weight: 800; 
  color: var(--text);
  font-size: 16px;
}

.footer-brand .logo-mark {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-2);
  background: rgba(34,197,94,0.1);
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--accent);
}

.legal { color: var(--muted); font-size: 14px; }

/* Responsive Design - Mobile First Approach */

/* Tablet breakpoint */
@media (max-width: 980px) {
  .container {
    width: min(1200px, 95%);
  }
  
  .grid-2 { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  
  .hero-visuals {
    order: -1;
    margin-bottom: 12px;
  }
  
  .about-details { 
    grid-template-columns: 1fr 1fr; 
    gap: 14px;
  }
  
  .store-layout { 
    grid-template-columns: 1fr; 
    gap: 20px;
  }
  
  .map { 
    position: relative; 
    top: 0; 
    order: 2;
  }
  
  .google-map {
    height: 300px;
  }
  
  .store-results {
    order: 1;
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .container {
    width: min(1200px, 94%);
  }
  
  /* Mobile page glow optimization */
  .page-glow {
    box-shadow: inset 0 0 0 3px rgba(34,197,94,0.7);
  }
  
  /* Header mobile optimization */
  .site-header .container {
    padding: 12px 0;
    position: relative;
  }
  
  .brand-name {
    font-size: 16px;
  }
  
  .logo-mark {
    width: 32px;
    height: 32px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  /* Hide desktop nav and show mobile nav */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: var(--panel);
    padding: 80px 0 32px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 998;
  }
  
  .nav.mobile-nav-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav a {
    font-size: 16px;
    padding: 12px 24px;
    margin: 0;
    transition: background 0.2s ease;
    display: block;
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
  }
  
  .nav.mobile-nav-open a {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav a:nth-child(2) { transition-delay: 0.05s; }
  .nav a:nth-child(3) { transition-delay: 0.1s; }
  
  .nav a:hover {
    background: rgba(34,197,94,0.02);
  }
  
  .btn.small {
    margin: 8px 24px;
    font-size: 15px;
    background: var(--accent);
    color: var(--bg);
    border: none;
  }
  
  .btn.small:hover {
    background: var(--accent-2);
  }
  
  /* Hero section mobile */
  .section.hero {
    padding: 100px 0 24px;
  }
  
  .hero-copy h1 {
    font-size: clamp(28px, 8vw, 48px);
    line-height: 1.2;
    margin: 8px 0 10px;
  }
  
  .subhead {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }
  
  .actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 16px;
  }
  
  .trust {
    text-align: center;
    margin-top: 20px;
  }

  .hero-visuals {
    order: -1;
    margin-bottom: 12px;
    height: 300px;
  }
  
  .overlay-content h3 {
    font-size: 20px;
  }
  
  .overlay-content p {
    font-size: 13px;
  }

  .floating-shape { border-width: 1px; }
  .shape-1 { width: 40px; height: 40px; }
  .shape-2 { width: 30px; height: 30px; }
  .shape-3 { width: 35px; height: 35px; }
  .shape-4 { width: 25px; height: 25px; }
  .glow-orb { opacity: 0.6; }
  .orb-1 { width: 60px; height: 60px; }
  .orb-2 { width: 45px; height: 45px; }
  .orb-3 { width: 30px; height: 30px; }
  .animated-line { height: 1px; }
  .line-1 { width: 80px; }
  .line-2 { width: 60px; }
  .line-3 { width: 70px; }
  .pulse-ring { border-width: 1px; }
  .ring-1 { width: 70px; height: 70px; }
  .ring-2 { width: 50px; height: 50px; }
  .floating-text { font-size: 12px; letter-spacing: 1px; }
  
  /* About details mobile */
  .about-details {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
  
  .detail {
    padding: 16px;
  }
  
  /* Store section mobile */
  .section.stores {
    padding: 24px 0 48px;
  }
  
  .section-header h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .store-layout {
    margin-top: 16px;
    gap: 16px;
  }
  
  .google-map {
    height: 250px;
  }
  
  .map-address {
    padding: 12px;
    font-size: 13px;
  }
  
  /* Store cards mobile */
  .store-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 16px;
  }
  
  #store-search {
    padding: 16px;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 16px;
  }
  
  .count {
    text-align: center;
    padding: 8px;
  }
  
  .store-card {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
  }
  
  .store-card .thumb {
    height: 80px;
    font-size: 10px;
  }
  
  .store-card h4 {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .store-card p {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .store-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 13px;
  }
  
  .store-actions {
    margin-top: 12px;
    flex-direction: column;
    gap: 8px;
  }
  
  .store-actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    justify-content: center;
  }
  
  /* Footer mobile */
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-brand {
    font-size: 14px;
    gap: 6px;
  }

  .footer-brand .logo-mark {
    font-size: 14px;
    padding: 4px 8px;
  }
  
  .legal {
    font-size: 13px;
  }
  
  /* Quick Store mobile */
  .section.quick-stores {
    padding: 32px 0 48px;
  }
  
  .quick-store-content p {
    font-size: 16px;
  }
  
  .btn.large {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .quick-store-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .container {
    width: min(1200px, 92%);
  }
  
  /* Ultra-mobile page glow */
  .page-glow {
    box-shadow: inset 0 0 0 2px rgba(34,197,94,0.6);
  }
  
  /* Even smaller text and spacing for tiny screens */
  .hero-copy h1 {
    font-size: clamp(24px, 9vw, 40px);
  }
  
  .subhead {
    font-size: 15px;
  }
  
  .eyebrow {
    font-size: 11px;
  }
  
  .placeholder-card {
    height: 120px;
    font-size: 12px;
  }
  
  .placeholder-card.large {
    height: 200px;
  }
  
  .google-map {
    height: 200px;
  }
  
  .store-card {
    grid-template-columns: 60px 1fr;
    gap: 10px;
    padding: 10px;
  }
  
  .store-card .thumb {
    height: 60px;
    font-size: 9px;
  }
  
  .store-card h4 {
    font-size: 15px;
  }
  
  .store-card p {
    font-size: 13px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .store-card:hover {
    border-color: var(--border);
    background: rgba(17,17,19,0.8);
  }
  
  /* Make touch targets larger */
  .btn {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  .nav a {
    padding: 8px 4px;
  }
  
  .store-card {
    /* Add subtle tap indication */
    transition: transform 0.1s ease;
  }
  
  .store-card:active {
    transform: scale(0.98);
    background: rgba(17,17,19,0.95);
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .section.hero {
    padding: 32px 0 20px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr 0.8fr;
    gap: 20px;
  }
  
  .hero-visuals {
    order: 0;
  }
  
  .actions {
    flex-direction: row;
    gap: 10px;
  }
  
  .actions .btn {
    width: auto;
    flex: 1;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== DEDICATED STORE LOCATOR PAGE ===== */

.store-locator-page {
  background: radial-gradient(1200px 600px at 30% -10%, rgba(34,197,94,0.12), transparent 70%),
              radial-gradient(800px 400px at 70% 0%, rgba(34,197,94,0.15), transparent 70%),
              var(--bg);
}

/* Store Hero Section */
.store-hero {
  padding: 120px 0 32px;
  text-align: center;
}

.store-hero-content h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.store-hero-content .accent {
  color: var(--accent-2);
  text-shadow: 0 0 18px rgba(34,197,94,0.4);
}

.store-hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Location Detector */
.location-detector {
  margin-top: 20px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  min-width: 200px;
  transition: all 0.3s ease;
  box-shadow: 0 0 80px rgba(34, 197, 94, 0.3), 0 0 160px rgba(34, 197, 94, 0.15);
}

.location-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.location-btn.success {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.location-privacy {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Search Section */
.store-search-section {
  padding: 24px 0;
  background: rgba(17,17,19,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.search-controls {
  display: grid;
  gap: 20px;
}

.search-input-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

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

#store-search {
  width: 100%;
  padding: 16px 16px 16px 48px;
  font-size: 16px;
  border: 2px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  color: var(--text);
  transition: all 0.3s ease;
}

#store-search:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.1);
}

.clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: none;
  transition: color 0.2s ease;
}

.clear-search:hover {
  color: var(--text);
}

/* City Filters */
.city-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0b0c;
}

/* Results Summary */
.results-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

#sort-select {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
}

/* Store Results Section */
.store-results-section {
  padding: 32px 0 64px;
}

.store-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  margin-top: 24px;
}

/* Map Container */
.map-container {
  position: sticky;
  top: 100px;
  align-self: start;
}

.google-map {
  height: 500px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.map-info {
  margin-top: 16px;
}

.selected-store-info {
  background: rgba(17,17,19,0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}

.selected-store-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.selected-store-header h4 {
  margin: 0;
  font-size: 16px;
}

.store-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.selected-store-details .address {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}

.selected-store-details .hours,
.selected-store-details .distance {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.quick-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.quick-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

.map-legend {
  background: rgba(17,17,19,0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.legend-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
}

/* Enhanced Store Cards */
.store-card.enhanced {
  background: rgba(17,17,19,0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-card.enhanced:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.store-card.enhanced.selected {
  border-color: var(--accent);
  background: rgba(34,197,94,0.05);
  box-shadow: 0 0 0 2px rgba(34,197,94,0.1);
}

.store-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.store-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.store-badges {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-badge.open {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
}

.distance-badge {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(34,197,94,0.2);
  color: var(--accent-2);
  white-space: nowrap;
}

.store-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.store-address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.store-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-hours,
.store-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.store-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-tag {
  padding: 4px 8px;
  background: rgba(34,197,94,0.1);
  color: var(--accent-2);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
}

.store-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.store-card-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
}

.empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.empty-state h3 {
  margin: 0 0 8px;
  color: var(--text);
}

.empty-state p {
  margin: 0 0 20px;
}

/* Store Info Section */
.store-info-section {
  padding: 48px 0;
  background: rgba(17,17,19,0.4);
  border-top: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(17,17,19,0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #16a34a);
  border-radius: 16px;
  margin-bottom: 16px;
  color: #0b0b0c;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Navigation Active State */
.nav a.active {
  color: var(--accent-2);
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

/* Mobile Optimizations for Store Locator */
@media (max-width: 768px) {
  .store-hero {
    padding: 100px 0 20px;
  }
  
  .store-hero-subtitle {
    font-size: 16px;
  }
  
  .location-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .city-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
  
  .results-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .store-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .map-container {
    position: relative;
    top: 0;
    order: 2;
  }
  
  .google-map {
    height: 300px;
  }
  
  .store-results {
    order: 1;
  }
  
  .store-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .store-card-actions {
    flex-direction: column;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .info-card {
    padding: 24px 20px;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .search-input-wrapper {
    max-width: none;
  }
  
  .city-filters {
    gap: 6px;
  }
  
  .filter-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .store-card.enhanced {
    padding: 16px;
    gap: 12px;
  }
  
  .store-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .store-card-body {
    gap: 10px;
  }
  
  .store-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .store-features {
    gap: 4px;
  }

  .feature-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
  
  .store-card-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .store-card-actions .btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
  }
  
  .google-map {
    height: 250px;
  }
}


