@import url('https://fonts.googleapis.com/css2?family=Story+Script&display=swap');
*{
  font-family: "Story Script", sans-serif;
}
.header{
  display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 40px
}
h1{
    font-size: 48px;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 5px;
}
.header button{
  width: 200px;
  padding: 10px 20px;
  font-size: 22px;
}
button {
  padding: 10px 20px;
  background-color: #ffae42;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-weight: normal;
  width: 85%;
}
.add-to-cart:hover,
.add-to-cart:active{
  box-shadow: 2px 3px 4px rgba(0,0,0,0.1);
}
a{
  text-decoration: none;
  color: #eee;
}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .product {
    background: #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .product-img {
    width: 100%;
    border-radius: 10px;
  }
  h4{
    margin: 5px 0;
  }
  
  .price {
    font-weight: bold;
    margin: 0;
  }
  .description{
    font-size: 14px;
  }
  input[type="number"] {
    width: 60px;
    padding: 5px;
    margin: 10px;
  }
  @media screen and (max-width:630px) {
    .products{
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .product{
      width: 200px;
      margin: auto;
    } 
    .product button{
      padding: 5px;
      font-size: 12px;
      margin: 5px;
    }
    .header h1{
      font-size: 32px;
    }
    .header button{
      width: 65px;
      font-size: 12px;
      padding: 5px;
    }
  }
  @media screen and (max-width:480px) {
    .products{
      gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .product{
      width: 100px;
      font-size: 12px;
      padding: 5px;
    }
    .product button{
      padding: 5px;
      font-size: 10px;
      margin: 5px;
    }
    .header h1{
      font-size: 25px;
    }
  }