* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fffdf6;
  color: #2e2e2e;
  line-height: 1.6;
}

header {
  background: #fff;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2em;
}

nav a, #cartBtn {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.8;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #2e2e2e;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1em 2em;
  border-radius: 8px;
}

.btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1.5em;
  background: #ff5722;
  color: white;
  border-radius: 4px;
}

.features {
  padding: 2em;
  background: #fef4e8;
  text-align: center;
}

.feature-cards {
  display: flex;
  justify-content: space-around;
  margin-top: 1em;
}

.card {
  background: #fff;
  padding: 1em;
  border: 1px solid #ddd;
  width: 20%;
  border-radius: 5px;
}

.products {
  padding: 2em;
  text-align: center;
}

.product-grid {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.product {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1em;
  width: 200px;
  border-radius: 5px;
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.video, .testimonials {
  text-align: center;
  padding: 2em;
  
}
.video img {
  max-width: 100%;
  height: auto;
  max-height: 300px; /* Adjust this value as needed */
  border-radius: 8px;
}


.testimonial {
  margin-top: 1em;
}

.testimonial img {
  border-radius: 50%;
  width: 80px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1em;
}
