.product-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.product-container {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}

.product-content {
  width: 100%;
}

.product-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  display: grid;
}

.product-card {
  transition: all .3s;
}

.product-card-content {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.product-title {
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  margin: 0;
  font-size: 1.5rem;
  display: flex;
}

.product-title-text {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: #fdcd13;
  border-radius: 8px;
  padding: 1rem;
  font-size: 40px;
  font-weight: 600;
}

.product-category {
  background: var(--background-color);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 8px;
  margin-bottom: 3rem;
  padding: 1.5rem;
}

.product-category-title {
  color: #fff;
  text-align: center;
  margin-bottom: .5rem;
  font-size: 1.8rem;
}

.product-category-long-title {
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: normal;
}

.product-category p {
  text-align: justify;
}

.product-list {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.product {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 1rem;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #0000001a;
}

.product-name {
  color: #fff;
  text-align: center;
  font-size: 1rem;
}

@media (width >= 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-list {
    grid-template-columns: 1fr;
  }
}

@media (width >= 1024px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*# sourceMappingURL=agora-main.a9126c46.css.map */
