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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #3a2b27;
  background: #fff8f5;
}

.header {
  height: 78px;
  background: rgba(255, 248, 245, 0.95);
  border-bottom: 1px solid #ead8d0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.logo-main {
  font-size: 36px;
  font-style: italic;
  line-height: 30px;
}

.logo-sub {
  text-align: center;
  letter-spacing: 8px;
  font-size: 11px;
  color: #8b746c;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 45px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.nav a {
  color: #3a2b27;
  text-decoration: none;
}

.nav a:hover {
  color: #d0736d;
}

.cart {
  font-size: 25px;
}

.hero {
  min-height: 620px;
  padding-top: 78px;
  background:
    linear-gradient(to right, rgba(255,245,241,.98) 0%, rgba(255,240,235,.85) 45%, rgba(255,240,235,.15) 100%),
    url('https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=1800&q=85');
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 650px;
  margin-left: 12%;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 600;
}

.hero h1 span {
  color: #d97670;
}

.hero p {
  font-family: Arial, sans-serif;
  font-size: 22px;
  margin: 30px 0 40px;
}

.btn {
  display: inline-block;
  background: #d5736d;
  color: white;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 5px 12px rgba(0,0,0,.18);
}

.btn:hover {
  background: #bf5f59;
}

.products {
  background: #fffaf8;
  padding: 45px 10% 60px;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.section-title div {
  width: 150px;
  height: 1px;
  background: #e2cfc7;
}

.section-title h2 {
  font-size: 44px;
}

.subtitle {
  font-size: 20px;
  margin-top: 5px;
}

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

.card {
  background: white;
  border: 1px solid #eadbd6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  transition: .25s;
}

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

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

.card h3 {
  padding: 15px;
  font-size: 23px;
}

.reviews {
  min-height: 230px;
  padding: 45px 12%;
  background:
    linear-gradient(to right, rgba(255,245,241,.95), rgba(255,245,241,.65)),
    url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: right center;
}

.review-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-title span {
  width: 30px;
  height: 1px;
  background: #d9bcb3;
}

.review-title h2 {
  font-size: 32px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  margin-top: 25px;
}

.author {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  text-align: right;
  max-width: 650px;
}

.contact {
  text-align: center;
  padding: 55px 20px;
  background: #fffaf8;
  font-family: Arial, sans-serif;
}

.contact h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
}

.contact p {
  margin: 15px 0 30px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .header {
    padding: 0 25px;
  }

  .nav {
    display: none;
  }

  .hero-content {
    margin: 0 25px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title div {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
