#prodetails {
    display: flex;
    margin-top: 20px;
  }
  
  #prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
    width: 420px;
    height: 500px;
  }
  #prodetails .single-pro-image img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  .small-image-group {
    display: flex;
    justify-content: space-between;
  }
  
  .small-image-col {
    flex-basis: 24%;
    cursor: pointer;
    width: 100px;
    height: 100px;
  }
  .small-image-col img{
       width: 100%;
      height: 100%;
      object-fit: cover;
  }
  
  #prodetails .single-pro-deatils {
    width: 50%;
    padding-top: 30px;
  }
  
  #prodetails .single-pro-deatils h4 {
    padding: 40px 0 20px 0;
  }
  
  #prodetails .single-pro-deatils h2 {
    font-size: 26px;
  }
  
  #prodetails .single-pro-deatils select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  
  #prodetails .single-pro-deatils inputs {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
  }
  
  #prodetails .single-pro-deatils button {
    background-color: #088178;
    color: white;
  }
  
  #prodetails .single-pro-deatils span {
    line-height: 25px;
  }


  #product1 .pro a {
    text-decoration: none;
    color: inherit; /* Optional: keep text color consistent */
  }


  @media (max-width: 768px) {
    /* single product adjustments for mobile screens */
    #prodetails {
        display: flex;
        flex-direction: column;
    }
  
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }
  
    #prodetails .single-pro-details {
        width: 100%;
    }
  }