
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem 2rem;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hero p {
  font-size: 1.15rem;
  color: #555;
}

/* Grid Systems */
.category-grid,
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Card Styling */
.category-card,
.product {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  width: 280px;
  max-width: 100%;
  text-align: center;
}
.category-card:hover,
.product:hover {
  transform: translateY(-4px);
}

/* Product Image */
.product-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Typography */
h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Button */
.buy-button,
.btn {
  display: inline-block;
  background-color: #0073e6;
  color: #fff;
  padding: 0.6rem 1.1rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.buy-button:hover,
.btn:hover {
  background-color: #005bb5;
}

/* Footer Form */
.footer-form {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
  padding: 1rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .category-card,
  .product {
    width: 95%;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* AOS Animations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos].aos-animate {
  opacity: 1;
}
