* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background-color: #fffaf5;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header img.logo {
  height: 50px;
}
.banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100vh; /* Optional: stops banner from being too tall */
  object-fit: cover;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  flex-grow: 1;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider img {
  max-width: 321px;
  max-height: 321px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: none;
}
.slider img.active {
  display: block;
}
.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
}
.slider .prev { left: 10px; }
.slider .next { right: 10px; }
.product-card .content {
  padding: 15px;
}
.product-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.product-card button {
  background-color: #ff3c00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.product-card button:hover {
  background-color: #e53100;
}
footer {
  background-color: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer-content p {
  margin: 6px 0;
}

footer a {
  color: #ffb703;
  text-decoration: underline;
}

footer a:hover {
  color: #ffaa00;
}
@media (max-width: 600px) {
  .slider img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
  }
  .banner {
  width: 100%;
  display: block;
  overflow: hidden;
}

}
.intro-text {
  background: linear-gradient(135deg, #fff5ec, #fff0f5);
  padding: 40px 20px 30px;
  text-align: center;
  border-bottom: 2px solid #ffe0b2;
}
.intro-text .container {
  max-width: 900px;
  margin: 0 auto;
}
.intro-text .headline {
  font-size: 2.2rem;
  color: #ff3c00;
  font-weight: 700;
  margin-bottom: 15px;
}
.intro-text .highlight {
  background-color: #fff3cd;
  padding: 0 6px;
  border-radius: 5px;
}
.intro-text .description {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  padding: 0 10px;
}
@media (max-width: 600px) {
  .intro-text .headline {
    font-size: 1.5rem;
  }
  .intro-text .description {
    font-size: 1rem;
  }
}