/* styles.css – Simple, clean, artisanal look */
/* Global reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: #fafafa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top banner */
.banner {
  background: #4caf50;
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
}
.logo-img {
  width: 40px;
  height: auto;
  margin-right: 0.5rem;
}
.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}
.nav a.active, .nav a:hover {
  color: #000;
}

/* Hero */
.hero {
  background: url('https://images.unsplash.com/photo-1504203707165-4c5c5c0b97c9?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  color: #fff;
  padding: 6rem 0;
  text-align: center;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.cta-button {
  background: #ff5722;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s;
}
.cta-button:hover { background: #e64a19; }

/* Product cards */
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.card img { max-width: 100%; height: auto; border-radius: 4px; }
.card h3 { margin: 0.75rem 0; font-size: 1.1rem; }
.price { font-weight: 600; color: #4caf50; margin-bottom: 0.5rem; }
.button, .cta-button { display: inline-block; cursor: pointer; }
.upload-form label { display: block; margin: 0.5rem 0; font-size: 0.9rem; }
.upload-form input[type="file"] { margin-top: 0.25rem; }

/* Testimonials */
.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.testimonial-cards blockquote { background: #fff; padding: 1rem; border-left: 4px solid #ff5722; }

/* About & FAQ */
.about, .faq { padding: 2rem 0; }
.faq details { margin-bottom: 0.75rem; }
.faq summary { cursor: pointer; font-weight: 500; }

/* Footer */
.site-footer {
  background: #222;
  color: #ddd;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Cart Section */
.cart-section { background: #f9f9f9; padding: 2rem 0; }
.cart-total { font-weight: 600; margin-top: 1rem; }
.cart-section .button { background: #4caf50; color: #fff; border: none; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .nav a { margin-left: 0; margin-right: 1rem; }
  .hero { padding: 4rem 0; }
}
