/* Main Section */

.container h1,
h2 {
  color: #ab7b5d;
  margin-bottom: 1rem;
}

.container h1 {
  text-align: center;
  font-size: 2.5rem;
}

.container h2 {
  font-size: 1.8rem;
}

main p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  margin: auto;
}

.products .products-title {
  font-size: 2rem;
  text-align: center !important;
  margin: 2rem 0;
}

/* Filter Buttons */
.filter-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.filter-button-wrapper button {
  background-color: #ab7b5d;
  color: #fff;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.filter-button-wrapper button:hover {
  background-color: #ab7b5d;
}

/* Product Cards */
.product-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product {
  background-color: #fff;
  padding: 3rem 1.5rem;
  border-radius: 10px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.product h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.product img {
  width: 350px;
  height: auto;
  margin-bottom: 1rem;
}
.product .order {
  display: inline-block;
  text-decoration: none;
  background-color: #ab7b5d;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.product .order:hover {
  background-color: #84593e;
}

@media (max-width: 768px) {
  main {
    margin-top: 5rem;
  }
  nav {
    padding-bottom: 1rem;
  }

  nav .container {
    /*flex-direction: column;*/
  }

  .product-wrapper {
    grid-template-columns: 1fr;
  }

  .product img {
    width: 90%;
    margin-inline: auto;
  }
}

@media (max-width: 500px) {
}
