* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fcfcfc;
  color: #222;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
}
.logo span {
  color: #ee8f00;
}
.nav__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav__link {
  font-weight: 600;
  color: #333;
}
.nav__link:hover,
.nav__link.active {
  color: #ee8f00;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #fff 60%, #ffeaf4 100%);
}
.hero__text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero__text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.btn-primary {
  background-color: #ee8f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
}
.hero__img img {
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  height: 300px;
  width: 400px;
}

/* ===== PRODUCTS ===== */
.products-section {
  padding: 4rem 2rem;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  border-radius: 10px;
  margin-bottom: 1rem;
  height: 260px;
  object-fit: cover;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-card .price {
  color: #ee8f00;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.product-card button {
  background: #222;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.product-card button:hover {
  background: #444;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}