body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: #fff8fa;
  color: #3a2c2a;
}

header {
  background: linear-gradient(90deg, #f7c6e0 0%, #e0b3ff 100%);
  color: #3a2c2a;
  padding: 1.5rem 0 1rem 0;
  box-shadow: 0 2px 8px rgba(200, 100, 150, 0.08);
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  margin: 0.2em 0 0.1em 0;
  font-weight: 700;
  letter-spacing: 2px;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 1em;
  color: #7d4a7b;
}

nav {
  display: flex;
  gap: 1.5em;
  margin-bottom: 0.5em;
}

nav a {
  color: #7d4a7b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: #c97eb7;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

#hero {
  background: linear-gradient(90deg, #fff8fa 60%, #f7c6e0 100%);
  padding: 2.5em 0 2em 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text h2 {
  font-size: 2rem;
  color: #a14e8e;
  margin-bottom: 0.5em;
}

.hero-image {
  flex: 1 1 250px;
  text-align: center;
}

.hero-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 1.5em;
  box-shadow: 0 4px 24px rgba(200, 100, 150, 0.10);
}

#products {
  padding: 2em 0 2em 0;
}

#products h2 {
  color: #a14e8e;
  margin-bottom: 1em;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2em;
  margin-bottom: 1.5em;
}

.product-card {
  background: #fff;
  border-radius: 1em;
  box-shadow: 0 2px 12px rgba(200, 100, 150, 0.08);
  padding: 1em;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(200, 100, 150, 0.15);
}

.product-card img {
  width: 100%;
  max-width: 140px;
  height: 160px;
  object-fit: cover;
  border-radius: 0.7em;
  margin-bottom: 0.7em;
  background: #f7c6e0;
}

.product-card h3 {
  margin: 0.2em 0 0 0;
  color: #7d4a7b;
  font-size: 1.1em;
}

.upload-note {
  text-align: center;
  color: #a14e8e;
  font-size: 0.95em;
  margin-top: 1em;
}

#about, #contact {
  padding: 2em 0 2em 0;
}

#about h2, #contact h2 {
  color: #a14e8e;
  margin-bottom: 0.7em;
  text-align: center;
}

address {
  font-style: normal;
  color: #3a2c2a;
  background: #f7c6e0;
  border-radius: 0.7em;
  padding: 1em;
  margin: 1em 0;
  text-align: center;
}

footer {
  background: #e0b3ff;
  color: #3a2c2a;
  text-align: center;
  padding: 1em 0;
  font-size: 1em;
  margin-top: 2em;
  border-radius: 1em 1em 0 0;
}

@media (max-width: 700px) {
  .hero-content {
    flex-direction: column;
    gap: 1em;
  }
  nav {
    flex-direction: column;
    gap: 0.7em;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .container {
    width: 98%;
  }
} 