html {
  scroll-behavior: smooth;
}

.product-menu{
  display: flex;
  justify-content: center;
  width: 100vw;
  text-align: center;
}

.product-menu li:hover{
  color: #f68d2e;
}

.product-container{
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 50px;
 box-sizing: border-box;
 flex-wrap: wrap;
}


.item-box{
  width: 450px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: 30px;
  scroll-margin-top: 100px; /* adjust this to your menu height */
}

.item-box:hover{
  box-shadow: 0 5px 5px grey;
  cursor: pointer;
}

.item-hero-image{
 border-bottom: solid black 1px; 
}

.item-category{
 padding-top: 15px;
 color: grey;
 font-size: 21px;
}

.item-box h5{
  font-size: 30px;
  font-family: 'Open sans';
  margin: 20px 0;          /* removes top and bottom default margin */
  margin-bottom: 5px; /* optional: give a little controlled spacing */

}

.item-box p{
  font-size: 18px;
  margin: 20px 0;   
  font-family: 'Open sans';
  height: 135px;

}

.item-block button{
 padding: 20px;
 background: #f68d2e;
 color: white;
 font-size: 20px;
 border: none;
 margin-right: 20px;
 border-radius: 30px;
}

.item-button:hover {
  cursor: pointer;
  background: red;
}

.item-quote:hover {
  cursor: pointer;
  background: red;
}

.item-hero-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.item-hero-image img{
  overflow: hidden;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.product-menu {
  position: sticky; /* stays at top while scrolling */
  top: 0;
  background: white;
  padding: 10px 20px;
  z-index: 100;
}

.product-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-menu a {
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  color: #333;
}

@media (max-width:900px){
  .item-box p{
    height: 200px;
    width: 350px;
}
  .item-block button{
 margin-top: 10px;
}
  
  .item-box{
    width: 450px;
}
  
  .product-menu{
  display: none;
}