*{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

@media only screen and (max-width: 600px) {

    
    .header-button{
        height: 40px;
        padding: 10px 10px;
        margin-top: 10px;
    }

    .back{
        height: 40px;
        width: 40px;
        float: left;
    }

    .share{
        height: 40px;
        width: 40px;
        float: right;
    }

    .product-image{
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 120%;
        margin-top: 25px;
        padding: 40px 10px;

    }

    .product-image img{
        display: block;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        max-width: 80%;
        height: 50%;
        object-fit: contain;
    }


    .buy-product{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background-color: black;
        color:white;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 20px 20px;
        height: 120px;
    }

    .footer-content h3{
        display: inline;
        float: left;
        font-size: medium;
    }

    .footer-content a{
        display: inline;
        float: right;
        text-decoration: none;
    }

    .footer-content a:visited{
        color: blue;
    }

    .product-cost{
        display: block;
        margin: 10px auto;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .parentBtn{
        padding: 0px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .buy-btn{
       margin-top: 5px; 
       border-radius: 10px;
       width: 250px;
       padding: 15px 10px;
       font-weight: 500;
     
    }

    .buy-product{
        animation: move-up 0.5s ease-in-out;
    }

    @keyframes move-up{
        from{
            transform: translateY(120px);
        }
        to{
            transform: translateY(0px);
        }
    }

    .product-image{
        animation: move-right 0.5s ease-in-out;
    }

    @keyframes move-right {
        from{
            transform: translateX(-100%);
        }
        to{
            transform: translateX(0);
        }
    }

}