.hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
    background-color: hsl(220, 17%, 90%);
}
body {
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
  }
  
  .header {
    background: #59c4c5;
    color: white;
    text-align: center;
    padding: 1rem 0;
  }
  
  h1 {
    margin: 0;
  }
  
  .product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
  }
  
  .product-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .product-title {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #59c4c5;
  }
  
  .product-description {
    font-size: 1rem;
    color: #666;
    margin: 0 10px 10px;
  }
  
  .product-price {
    font-size: 1.2rem;
    font-family: 'Montserrat';
    color: #333;
    margin: 10px 0;
    font-weight: bold;
  }
  
  .btn {
    background: #7b57a5;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background: #644594;
  }

  /* product CSS # 2 */
  .header2 {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #59c4c5, #7b57a5);
    color: white;
  }
  
  .header h1 {
    font-size: 2rem;
    margin: 0;
  }
  
  .header p {
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 2rem;
  }
  
  
  .product-card2 {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
  }
  
  .product-card2:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  .product-image2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
  }
  
  .product-title {
    font-size: 1.2rem;
    color: #59c4c5;
    margin-bottom: 0.5rem;
  }
  
  .product-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .price-and-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #7b57a5;
  }
  
  .btn {
    background: #59c4c5;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background: #479a9b;
  }
  
  @media screen and (max-width: 425px) {
    .hero {
      padding: 10px;
    }
  
    .header2 h1 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .header2 p {
      font-size: 1rem;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .product-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    .product-card2 {
      width: 100%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      padding: 10px;
    }
  
    .product-image2 {
      width: 100%;
      height: auto;
    }
  
    .product-title {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .product-description {
      font-size: 0.95rem;
      text-align: center;
    }
  
    .price-and-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  
    .btn {
      width: 100%;
    }
  }
  