* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fafafa;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #555;
}

.icons span {
  margin-left: 15px;
  cursor: pointer;
}

/* HERO */
.hero {
  position: relative;
  height: 520px;
  background: url('https://images.unsplash.com/photo-1521335629791-ce4aec67ddaf') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

.hero-content {
  position: relative;
  padding-top: 100px;
  max-width: 600px;
}

.badge {
  background: #e8dcc8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.hero h2 {
  font-size: 48px;
  margin: 20px 0;
}

.hero p {
  color: #555;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.primary {
  background: #2f3e46;
  color: #fff;
}

.outline {
  background: transparent;
  border: 1px solid #ccc;
  margin-left: 10px;
}

/* BENEFITS */
.benefits {
  background: #fff;
  padding: 50px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.benefit h4 {
  margin: 10px 0;
}

/* PRODUCTS */
.products {
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #222;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 6px;
}

.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border-radius: 50%;
  border: none;
  padding: 6px;
}

.price {
  margin-top: 10px;
}

.price span {
  text-decoration: line-through;
  color: #999;
  margin-left: 5px;
}

.product-btn {
  width: 100%;
  margin-top: 12px;
  background: #2f3e46;
  color: #fff;
}
