
*{
    font-family: sans-serif;
}
/* PAGE WRAPPER */
.products-page {
    padding-top: 120px;
  }
  
  /* SECTION */
  .products {
    padding: 60px 0;
    background: #f9fafb;
  }
  
  /* TITLE */
  .products-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .products-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
  }
  
  /* GRID */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  @media (max-width: 992px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* CARD */
  .product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
  }
  
  /* IMAGE */
  .product-card img {
    width: 100%;
    height: 265px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
  }
  
  /* NAME */
  .product-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  /* CATEGORY */
  .product-category {
    font-size: 14px;
    color: #6b7280;
  }
  
  /* BUTTON */
  .btn-order {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    background: #25d366;
    color: #000;
    font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
  }
  