/* Store Directory Styles */
.stores-page {
  min-height: 100vh;
  background: #f8f9fa;
}

.stores-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.stores-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.stores-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.stores-grid {
  padding: 60px 0;
}

.stores-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.store-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.store-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.store-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-icon {
  font-size: 4rem;
  color: white;
}

.store-info {
  padding: 30px;
}

.store-info h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.store-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.store-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
  padding: 20px 0;
  background: #f8f9fa;
  border-radius: 10px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-actions {
  display: flex;
  gap: 15px;
}

.visit-store-btn,
.view-products-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.visit-store-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.visit-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.view-products-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e1e5e9;
}

.view-products-btn:hover {
  background: #e9ecef;
  border-color: #667eea;
}

.no-stores {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.no-stores h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2rem;
}

.no-stores p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.create-store-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.create-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stores-hero h1 {
    font-size: 2rem;
  }

  .stores-list {
    grid-template-columns: 1fr;
  }

  .store-actions {
    flex-direction: column;
  }

  .store-stats {
    flex-direction: column;
    gap: 15px;
  }
}
