.single-product-grid {
    display: flex;
    /* align-items: center; */
    gap: 20px;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.content-holder h1 {
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 10px;
}

.price-discount h4 {
    font-size: 17px;
    font-weight: 500;
    color: grey;
    text-decoration: line-through;
}

.price-discount h5 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    letter-spacing: 1px;
}

.price-discount {
    display: flex;
    align-items: center;
    gap: 16px;
}

.image-conetent p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    padding-bottom: 8px;
}

.product-body {
    padding-top: 10px;
}

.image-conetent {
    width: 45%;
}


.image-size {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.image-holder {
    max-width: 600px;
    background: #ffffff;
    text-align: center;
    margin: 0 auto;
    height: 400px;
    position: relative;
    border: 1px solid #d4702e;

}

.image-size img {
    animation: spin 3s linear infinite alternate;

}

@-webkit-keyframes spin {
    0% {
        /* -webkit-transform: rotate(0deg); */
        transform: rotateZ(10deg);
    }

    100% {
        /* -webkit-transform: rotate(360deg); */
        transform: rotateZ(-10deg);
    }
    
}


.image-size {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 200px;
    height: 265px;
    /* overflow: hidden; */

}

.image-size img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* .quantity {
background: #f6f8fa;
max-width: fit-content;
padding: 15px;
border-radius: 6%;
} */
span.minus,
span.plus {
    background: #d4702e;
    max-width: fit-content;
    padding: 5px 10px;
    border-radius: 6%;
    font-size: 20px;
    font-weight: 400;
    border-radius: 20%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in;
}

span.plus:hover {
    background-color: #000;
}

span.minus:hover {
    background-color: #000;
}

span.num {
    font-size: 20px;
    padding: 5px 20px;
    background: #fff1e6;
    /* width: 100%; */
}

.quantity {
    max-width: fit-content;
    width: 100%;
    padding-top: 10px;
}

.quantity h5 {
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

section.single-buy-sec {
    padding: 100px 0px;
}

.addto-car a {
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: #d4702e;
    padding: 10px 50px;
    transition: 0.3s ease-in;
}

.addto-car a:hover {
    background-color: #000;

}

.quantity {
    display: flex;
    align-items: end;
    gap: 30px;
}

@media(max-width:1399px) {
    .image-conetent p {
        font-size: 16px;
    }
}

@media(max-width:1024px) {
    .content-holder h1 {
        font-size: 30px;
    }

    span.minus,
    span.plus,
    span.num {
        font-size: 15px;
    }

    section.single-buy-sec {
        padding: 70px 0px;
    }

    .addto-car a {
        font-size: 18px;
        padding: 10px 35px;
    }
}

@media(max-width:767px) {
    .single-product-grid {
        flex-direction: column;
    }

    .image-conetent {
        width: 100%;
    }

    section.single-buy-sec {
        padding: 50px 0px;
    }

    .content-holder h1 {
        font-size: 25px;
    }

    .quantity {
        align-items: initial;
        flex-direction: column;
    }
}

