* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F9F7F5;
  color: #1C1C1C;
}

/* HEADER */
.header {
  background: #3E2723;
  color: white;
  padding: 15px 30px;
}

/* PRODUCT SECTION */
.product {
  display: flex;
  padding: 50px;
  gap: 40px;
}

.images {
  width: 50%;
}

.images img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 4px;
}

.details {
  width: 50%;
}

.details h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #3E2723;
}

.short {
  margin: 15px 0;
  font-size: 16px;
}

.info {
  list-style: none;
  margin: 20px 0;
}

.info li {
  margin-bottom: 8px;
}

/* CTA */
.cta {
  margin: 25px 0;
}

.btn {
  text-decoration: none;
  padding: 14px 26px;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.call {
  background: #8D6E63;
  color: white;
}

.trust {
  margin-top: 15px;
  color: #555;
  font-size: 14px;
}

/* DESCRIPTION */
.description {
  padding: 40px 50px;
  background: white;
}

.description h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

/* FOOTER */
.footer {
  background: #1C1C1C;
  color: #aaa;
  text-align: center;
  padding: 15px;
}

/* MOBILE */
@media(max-width: 768px){
  .product {
    flex-direction: column;
    padding: 25px;
  }
  .images, .details {
    width: 100%;
  }
  .details h1 {
    font-size: 28px;
  }
}
