.navbar {
    position: sticky;
    top: 15px; 
    width: 90%; 
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px; 
    border-radius: 200px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin: 0 auto; 
    animation: fall-down 3s  forwards;

  }

  @keyframe fall-down {
    0% {
        margin-top: 100vh;


    }

    100% {
        margin-top: 0vh;
    }
  }
  

  .navbar img {
    height: 30px; 
  }
  
  
  .nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
  }
  
  .nav-menu ul {
    list-style: none;
    display: flex;
  }
  
  .nav-menu li {
    margin: 0 12px;
  }
  
  .nav-menu a {
    font-family: 'montserrat';
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: #f39c12;
  }


  .cta-button {
    font-family: 'MONTSERRAT';
    background-color: #E25822;
    color: white;
    border: none;
    border-radius: 20px; 
    padding: 8px 15px; 
    font-size: 14px; 
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e67e22;
  }





body {
    font-family: 'montserrat';
    background: rgb(180,178,179);
    background: radial-gradient(circle, rgba(180,178,179,1) 0%, rgba(255,255,255,1) 100%);
}


.container {
    max-width: 90vh;
    margin: 0 auto;
}


 .title h1 {
    font-family: 'Montserrat';
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    justify-content: center;
 justify-items: center;
 padding: 10px 15px;
 text-align: center;
 margin: 50px auto;
 transform: skew(-15deg);
 width: 30%;
 text-transform: uppercase;
 letter-spacing: 2px;
 font-size: 20px;

}


.description p {
    font-family: 'Montserrat';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: justify;
    background: rgb(110,87,125);
background: linear-gradient(90deg, rgba(110,87,125,1) 0%, rgba(113,48,48,1) 50%, rgba(92,63,22,1) 100%);

padding: 30px;
color: #FFFFFF;
border-radius: 20px;
}


.product {
    align-items: center;
    padding: 20px;
}


.product h2 {
    font-family: 'Montserrat';
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    justify-content: center;
 justify-items: center;
 padding: 10px 15px;
 text-align: center;
 margin: 10px auto;
 transform: skew(-15deg);
 width: 30%;
}


.prod-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    margin: 50px;
}



.prod-container a {
    text-decoration: none;
    color: #000000;
}


.product-panel {
    width: 250px;
    background-color: rgb(219, 219, 219);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    margin: 10px 10px;
}

.product-panel:hover {

    background-color: rgb(255, 255, 255);
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    transition: .3s ease-in-out ;
}
    

.product-panel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-panel .product-info {
    text-decoration: none !important;
    padding: 15px;
}

.product-panel .product-info h3 {
    text-decoration: none !important;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    font-family: 'montserrat';
}



.product-panel .product-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}
