/* ========== Product section here ========== */

.product-area .top {
    background-color: #e1f4fa;
    padding: 30px 30px 30px;
    border-radius: 5px;
}

.product-area .image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.product-area .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 300ms;
}

.product-area .image:hover img {
    scale: 1.2;
}

hr{
    border: none;
    height: 3px;
    background-color: #000000;
    margin-top: 80px;
}

.product-area .detail h2 {
    font-size: clamp(30px, 2vw, 50px);
    font-weight: 700;
    position: relative;
}

.product-area .detail h2 img {
    width: 40px;
}

.product-area .detail h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100px;
    height: 3px;
    border-radius: 100px;
    background-color: black;
}

.product-area .detail p {
    font-size: 20px;
}
.product-area .shape-3{
    position: absolute;
    top: 30px;
    right: 0;
    z-index: -1;
}
.product-area .shape-4{
    position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(180deg);
  z-index: -1;
}





/* ===================== Media Query Here =================== */

@media (max-width:576px){

    .product-area .detail p {
        text-align: justify;
        font-size: 16px;
    }

}