/* Stores Section Styles */
.stores-section {
  color: #2c3e50;
  margin: 48px -15px 32px -15px;
  padding: 48px 15px;
  text-align: center;
  border-radius: 0;
  border-top: 1px solid rgba(var(--brand-rgb), 0.2);
  display: none; /* Hidden by default, shown by JS when stores are loaded */
}

.stores-title {
  margin-bottom: 24px;
  color: var(--brand);
  font-weight: 600;
  font-size: 2rem;
}

.stores-description {
  margin-bottom: 32px;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(2,6,23,0.08);
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(2,6,23,0.15);
}

.store-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand);
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.2);
}

.store-card h3 {
  margin-bottom: 16px;
  color: var(--brand);
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
}

.store-card .store-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.store-card .store-info i {
  color: var(--brand);
}

.store-card .store-status {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.1);
}

.store-card .store-status span {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .stores-section {
    margin: 32px -10px 24px -10px;
    padding: 32px 10px;
  }
  
  .stores-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  
  .stores-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  
  .stores-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .store-card {
    padding: 20px;
  }
  
  .store-card img {
    width: 60px;
    height: 60px;
  }
  
  .store-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .stores-section {
    margin: 24px -5px 16px -5px;
    padding: 24px 5px;
  }
  
  .stores-title {
    font-size: 1.5rem;
  }
  
  .stores-description {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .stores-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .store-card {
    padding: 16px;
    margin: 0 10px;
  }
  
  .store-card img {
    width: 50px;
    height: 50px;
  }
  
  .store-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .store-card .store-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .store-card .store-status span {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
}

@media (max-width: 360px) {
  .stores-section {
    padding: 20px 5px;
  }
  
  .stores-title {
    font-size: 1.3rem;
  }
  
  .store-card {
    padding: 14px;
  }
  
  .store-card img {
    width: 45px;
    height: 45px;
  }
}