.product-detail {
    display: flex;
    justify-content: center;
}
.product-detail .container {
        display: flex;
            justify-content: center;
            min-width: 1440px;
            flex-direction: column;
            gap: 25px;
}

.single-top {
    display: flex;
    gap: 19px;
    align-items: start;
    border-radius: 10px;
        padding: 30px;
        background: #efefef;
        width: 100%;
}


.single-gallery {
    max-width: 800px;
    margin: auto;
border-radius: 10px;
    padding: 5px 5px 16px;
    width: 537px;
    height: 645px;
    background: rgba(8, 48, 45, 0.92);
}

.single-product-main img {
border-radius: 10px;
    width: 527px;
    height: 506px;
    object-fit: contain;
}

.single-product-thumbs {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.single-product-thumb {
    
    height: 108px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: 0.3s;
}

.single-product-thumb:hover,
.single-product-thumb.active {
    border-color: #000;
}




.single-info {border-radius: 10px;
    padding: 10px;
    width: 725px;
    max-height: 100%;
    height: fit-content;
background: #fff;
font-family: var(--font-family);
color: black;
overflow-y:scroll ;
}



.single-bottom {
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding: 25px 75px;
    width: 100%;
    gap: 10px;
}
.product-meta {
border-radius: 10px;
    width: 325px;
    height: 253px;
background: #f3f4f5;
display: flex;
flex-direction: column;
  
   
}


.product-meta>h3 {
    justify-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom: 1px solid #000;
padding: 11px 30px;
    width: 100%;
    height: 39px;
    background: #d0d6d9;
    font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        color: #000;

}

.product-meta .pro {
    margin-left: 5px;
padding: 20px;
font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 200%;
    color: #000;

}


.product-meta ul {
  list-style-type: disc!important;

}

@media (max-width: 1440px) {
.product-detail .container {
       
        min-width: unset;
        
    }
.single-top {
    flex-direction: column;
}

.single-gallery {
    max-width:unset;
   width: 100%;
}
.single-product-main img {
  
    width: 100%;

}
.single-info {
 
    width: 100%;
overflow-y: unset;
height: fit-content;
}


.single-bottom {
    justify-content: space-between;
    padding: 25px ;
  
}

}

@media (max-width: 768px) {

.single-bottom{
flex-wrap: wrap;
justify-content: center;
padding: 0;
}

.product-meta{
    width: 100%;
}


}