.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    padding: 0;
    height: 100%;
    text-align: center;
}
  /* PRODUCT SECTIO  BEGINS  */
.product-section {
    text-align: center;
    padding: 23px 0;
}

.product-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #d1cfcfa6;
    padding: 20px;
    border-radius: 10px;
    width: 300px; /* Adjusted width for a better layout */
}

.product-info {
    text-align: center;
    margin-top: 10px;
}


.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    font-size: 1.5em;
    margin: 15px 0;
}

.product-item p {
    font-size: 1em;
    color: rgb(45, 42, 42);
}

.product-item a {
    font-size: 1.2em;
    color: #00000078;
    text-decoration: none;
    font-weight: bold;
}

.product-item h3, 
.product-item p, 
.product-item a {
    margin: 5px 0; /* Adjust margin for spacing between text elements */
}

.product-item a:hover {
    text-decoration:underline;
}