.pdt {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: rgb(52, 119, 97);
}
.pd {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(217, 227, 185);
}

.product-container {
    max-width: auto;
    margin: auto;
    background: rgb(223, 232, 192);;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .main-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain; /* ensures the entire image fits inside without being cropped */
    border-radius: 10px;
    background-color: #f7f7f7; /* optional: fills empty space around image */
  }
  
  
  .thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
  }
  
  .thumbnail-gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s ease;
  }
  
  .thumbnail-gallery img.active,
  .thumbnail-gallery img:hover {
    border-color: #007BFF;
  }
  
  button.full-desc-btn,
  button.buy-now {
    margin: 10px 5px;
    padding: 10px 15px;
    border: none;
    /* background-color: #3C7666; */
    background-color: #3c7666d4;
    color: white; 
    border-radius: 5px;
    cursor: pointer;
  }
  
  .price {
    color: green;
    font-size: 1.2rem;
    font-weight: bold;
  }
  @media (max-width: 600px) {
    #founders p {
      font-size: 25px;
    }
    }
