:root {
  /* Color Palette */
  --primary-color: #3b82f6;
  --primary-hover: #2563eb;
  --background-color: #f3f4f6;
  --card-background: #ffffff;
  --text-main: #1f2937;
  --text-secondary: #4b5563;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-color);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

header {
  text-align: center;
  margin-bottom: 60px;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.025em;
  text-shadow: none; /* Removing old text-shadow */
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

/* Sections */
section {
  margin-bottom: 60px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-background);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.store-links {
  display: flex;
  gap: 12px;
  margin-top: auto; /* Push to bottom if needed */
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  height: 40px;
  transition: opacity 0.2s;
}

.store-badge:hover {
  opacity: 0.8;
}

/* Contact Section */
.contact-card {
  background: var(--card-background);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.email-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.email-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 80px;
  padding-bottom: 40px;
}
