/*
Theme Name: Modena Home
Theme URI: https://modenahome.store
Author: Your Name
Description: Custom theme for Modena Home kitchen appliances store, built with WooCommerce support.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: modenahome
*/

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}
/* HERO */
.hero {
  background: #1a1a1a;
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}
.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-block;
  background: #fff;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
}

/* FEATURED PRODUCTS */
.featured-products {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.featured-products h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.product-image img {
  border-radius: 6px;
  margin-bottom: 12px;
}
.product-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}
.product-card .price {
  font-weight: 600;
  color: #1a1a1a;
}

/* WHY US */
.why-us {
  background: #fafafa;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.why-item h3 {
  margin-bottom: 8px;
}
.why-item p {
  color: #555;
  font-size: 15px;
}