

/* PRODUCTS SECTION */
.products-section {
    width: 100%;
    padding: 7rem 0;
    background-color: #f3f4f6;
    padding-bottom: 12rem;
    font-family: 'Centabel', serif;
  }
  
  .products-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Mnbs', serif;
  }
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .product-card {
    flex: 0 1 220px;
  }
  
.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card a:hover,
.product-card a:focus {
  text-decoration: none;
  color: inherit;
}


  
  .product-card {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  
  .product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 0.5rem;
  }
  
  .product-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
  }
  
  .product-card p {
    color: #374151;
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .product-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.4s ease;
  }
  
  .product-image .back-img {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
  }
  
  .product-card:hover .back-img {
    opacity: 1;
  }
  .product-card:hover .front-img {
    opacity: 0;
  }