/* Base Reset & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

/* Hero Banner Styling */
.hero-banner {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
              url('https://images.unsplash.com/photo-1486006920555-c77dce18193b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: white;
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hero-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  color: #f8fafc;
}

.hero-banner p {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 1.5rem auto;
  opacity: 0.9;
  line-height: 1.5;
}

/* Feature Badges Grid */
.store-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 2.5rem;
}

.badge-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.badge-card span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.25rem;
}

.badge-card h4 {
  margin: 0;
  color: #0f172a;
  font-size: 0.95rem;
}

.badge-card p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

/* Product Card Hover & Button Styling */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero-banner h1 {
    font-size: 1.6rem;
  }
  .hero-banner p {
    font-size: 0.95rem;
  }
}