@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Sorts+Mill+Goudy:ital@0;1&display=swap");

.page-title {
  letter-spacing: 2px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
}

.page-subtitle {
  font-family:
    Inria Serif,
    serif;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.filter-text {
  cursor: pointer;
  font-family:
    Inria Serif,
    serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

.filter-text i {
  color: #e9da90;
}

.product-card {
  border: 0.5px solid #000000;
  padding: 30px 0;
  height: 100%;
}

.product-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px 30px;
  border-bottom: 1px solid #000;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.product-image a {
  height: 100%;
  width: 100%;
}

.button-container {
  padding: 0 30px;
}

.price-btn {
  border: 1px solid #0b081e;
  font-family:
    Inria Serif,
    serif;
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.price-btn:hover {
  background: #2f2f4f;
  color: #fff;
}

hr {
  opacity: 1;
}

@media (max-width: 580px) {
  .page-title {
    font-size: 24px;
  }

  .product-card {
    padding: 10px 0;
  }

  .product-image {
    height: 200px;
    padding: 0 10px 10px;
    margin-bottom: 15px !important;
  }

  .button-container {
    padding: 0 10px;
  }

  .price-btn {
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.2;
  }
}
