* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #d2ffef;
  color: #151515;
  font-family: Arial, Helvetica, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: #d2ffef;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: bold;
}

.desktop-nav {
  display: flex;
  gap: 50px;
  font-size: 24px;
  font-weight: bold;
}

.desktop-nav a:hover {
  color: #11ce87;
}

/* Menu button */
.menu-button {
  display: none;
  width: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 6px;
  margin: 7px 0;
  border-radius: 20px;
  background: #151515;
}

/* Hero */
.hero img {
  height: 600px;
  object-fit: cover;
}

/* Products */
.product-area {
  padding: 70px;
}

.section-heading {
  margin-bottom: 45px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 10px;
  color: #11ce87;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 60px;
  font-style: italic;
  font-weight: bold;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
}

.carousel {
  display: block;
}

.carousel-button {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  overflow: hidden;
  border-radius: 8px;
  background: #f7fffc;
  border: 3px solid #edfff8;
}

.product-card img {
  height: 260px;
  object-fit: cover;
}

.product-content {
  padding: 24px;
}

.product-content h3 {
  margin: 0 0 12px;
  color: #0fb979;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
}

.product-content p {
  line-height: 1.5;
}

.product-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  font-weight: bold;
}

.product-button:hover {
  background: #0fb979;
  color: #111;
}

/* Mobile */
@media (max-width: 760px) {
  .site-header {
    padding: 16px 20px;
  }

  .logo {
    font-size: 34px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header.is-menu-open .desktop-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    background: #f7fffc;
    box-shadow: 0 15px 30px rgba(0, 86, 54, 0.16);
  }

  .menu-button {
    display: block;
  }

  .hero img {
    height: 430px;
  }

  .product-area {
    padding: 45px 20px;
  }

  .section-heading p {
    font-size: 38
px;
  }

  .product-grid {
    width: 260px;
    display: block;
  }

  .carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .carousel-button {
    display: block;
    padding: 10px 15px;
    border: 2px solid #111;
    background: #111;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }

  .carousel-button:hover {
    background: #0fb979;
    color: #e9e7e7;
  }

  .product-card {
    display: none;
  }

  .product-card.active {
    display: block;
  }


}
