#product_wrapper ul {
    list-style: none; 
    padding-left: 0; 
}
#product_wrapper ul li {
    position: relative;
    padding-left: 10px;
}
#product_wrapper ul li::before {
    content: "\f0da"; 
    font-family: "FontAwesome"; 
    font-weight: 900; 
    position: absolute; 
    left: 0;
    top: 0;
    color: var(--primary-color);
}
.product-image {
    padding: 3%;
    max-width: 100%;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    box-shadow: 5px 5px 5px gray;
    max-height: 500px;
    min-height: 300px;
    overflow: hidden;
    text-align: center;
}
h2.product-name {
    position: relative;
    margin-bottom: 5%;
    display: inline-block;
}
.product-description {
    margin: 3% 0;
}
p.product-description-heading {
    font-size: clamp(1em, 4vw, 2em);
    line-height: normal;
}
.product-image img {
    width: auto;
    height: 300px;
}
.has-bottom-line:before{
    content: '';
    position: absolute;
    bottom: -10px;
    width: 60%;
    height: 4px;
    background-color: var(--primary-color);
    transition: 1s all;
}
.has-bottom-line:hover:before{
    width: 100%;
}
div#product-related {
    background-color: var(--third-color);
}
h3.product-related_heading {
    font-size: clamp(20px,4vw,40px);
    margin-bottom: 3%;
}
.product-related-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10%;
}
p.product-related-name {
    background-image: linear-gradient(to top, var(--primary-color), transparent);
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    min-height: 50%;
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(10px,4vw, 16px);
}
.item-image {
    max-height: 200px;
    overflow: hidden;
    text-align: center;
    background-color: var(--second-color);
    padding-top: 5%;
}
a.product-link:hover img {scale: 1.2;}
.item-image img {max-height: 130px;transition: .3s;}
@media (max-width:575px)
{
    h2.product-name{
        font-size: 24px;
    }
    .has-bottom-line:hover:before{
        width: 100%;
    }
}