/* Base Styles */
.container-category-fluid {
  width: 100%;
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-family: "Faustina", serif;
  font-size: var(--fs-32);
  margin-bottom: 2rem;
  color: var(--primary-blue);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-view-card {
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-view-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-view-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: .75rem;
  margin-bottom: 1rem;
}

.product-title {
  font-family: "Century Gothic", sans-serif;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  font-size: var(--fs-32);
}

.product-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* MEDIA QUERIES for RESPONSIVENESS */

/* Tablet and below (screens smaller than 1024px) */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }

  .product-view-card img {
    height: 150px; /* Adjust image height on medium screens */
  }
}

/* Mobile and below (screens smaller than 768px) */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }

  .product-view-card img {
    height: 120px; /* Adjust image height on small screens */
  }

  .section-title {
    font-size: var(--fs-28); /* Reduce font size for smaller screens */
  }
}

/* Extra Small Mobile (screens smaller than 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: var(--fs-32); /* Further reduce font size */
  }

  .product-view-card img {
    height: 100px; /* Further reduce image height */
  }
}
