.product-hero {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(
      circle at top,
      #ffffff,
      #fff1f4,
      #f2dee4
    );
  }
  
  .product-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
  }
  
  .product-hero p {
    margin-top: 10px;
    color: var(--gray);
  }
  
  .product-section {
    padding: 80px 20px;
  }
  
  .product-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transition: transform .4s ease;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
  }
  
  .product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .product-info {
    padding: 18px;
  }
  
  .product-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
  }
  
  .product-info span {
    display: block;
    margin: 8px 0;
    font-weight: 600;
  }
  
  .product-info button {
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #b58b9a, #7d6c9e);
    color: white;
  }
  