body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  background: #f5e6d8;
  color: #2b2b2b;
}

.navbar {
  background: #fce8d2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #2a2a2a;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
}

nav ul li a.active {
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.icons {
  display: flex;
  gap: 15px;
}

.icons input {
  padding: 5px 10px;
  border-radius: 20px;
  border: none;
  background: #e8d4c5;
}

.cart {
  font-size: 20px;
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 28px;
  margin-bottom: 30px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.carousel .images {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
}

.carousel img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.arrow {
  background: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.promo {
  background: #e6e2df;
  padding: 30px;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 600px;
}

.promo p {
  font-size: 18px;
  margin-bottom: 15px;
}

.promo button {
  background: #a07b65;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}
