
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff9f7;
  color: #5f4b4b;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.logo-section h1 {
  font-size: 28px;
  letter-spacing: 4px;
}

.logo-section p {
  color: #b78c97;
  letter-spacing: 3px;
}

.cart-btn,
.shop-btn,
.checkout-btn,
.add-cart-btn {
  background: #d88ca0;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.cart-btn:hover,
.shop-btn:hover,
.checkout-btn:hover,
.add-cart-btn:hover {
  background: #c8758c;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 80px 8%;
}

.badge {
  background: #ffe3ea;
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-text p {
  font-size: 18px;
  color: #8f7272;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image {
  width: 100%;
  border-radius: 40px;
  height: 700px;
  object-fit: cover;
}

.products-section {
  padding: 80px 8%;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-header h3 {
  font-size: 42px;
}

#search {
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid #ddd;
  width: 300px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-info {
  padding: 25px;
}

.product-info h4 {
  margin-bottom: 10px;
  font-size: 24px;
}

.product-info p {
  color: #d88ca0;
  font-size: 20px;
  margin-bottom: 20px;
}

.cart-section {
  padding: 80px 8%;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.cart-item {
  background: white;
  padding: 20px;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer {
  background: #f8d7df;
  text-align: center;
  padding: 40px;
  margin-top: 80px;
}

@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 42px;
  }

  .products-header {
    flex-direction: column;
    gap: 20px;
  }

  .header {
    flex-direction: column;
    gap: 20px;
  }
}
