body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f8f5f2;
  color: #2c2c2c;
  text-align: center;
}

/* HERO */
.hero {
  background: black;
  padding: 50px 20px 40px;
}

.logo {
  max-width: 380px;
  margin-bottom: 30px;
}


.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 34px;
  margin: 10px 0;
}

.hero p {
  color: #f1e5c8;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* PRODUCT */
.product {
  padding: 60px 20px;
}

.product-image {
  max-width: 420px;
  width: 100%;
  margin-bottom: 30px;
}

.product h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}

.price {
  font-size: 30px;
  color: #b8860b;
  margin: 10px 0;
}

.description {
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* TRUST */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.buy {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: black;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 30px 20px;
}

.gallery img {
  width: 100%;
  max-width: 220px;
  margin: auto;
  border-radius: 12px;
}

/* FOOTER */
footer {
  background: black;
  color: white;
  padding: 20px;
  font-size: 14px;
}

/* STORY */
.story {
  padding: 70px 20px;
  background: #fff;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.story p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* WHY */
.why {
  padding: 60px 20px;
  background: #f3efe9;
}

.why h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 30px auto 0;
  font-size: 16px;
}

/* OCCASIONS */
.occasions {
  padding: 60px 20px;
  background: #fff;
}

.occasions h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}

.occasions p {
  max-width: 600px;
  margin: 0 auto 20px;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
}

.occasion-list span {
  background: #f3efe9;
  padding: 8px 16px;
  border-radius: 20px;
}

