.navbar {
    background-color: #f8f8f8;
}
.product-page {
    direction: rtl;
    position: relative;
    display: flex;
    width: 90%;
    left: 5%;
}
.product-page-img {
    width: 30%;
    margin-left: 3%;
}
.product-page-img img {
    border-radius: 20px;
    border: 2px solid #e9dfd7;
}
.product-page-img img:nth-child(1) {
    width: 100%;
    margin-bottom: 15px;
}
.product-page-img img:nth-child(2) {
    width: 28%;
    margin-left: 1%;
    margin-right: 5%;
}
.product-page-img img:nth-child(3) {
    width: 28%;
    margin-left: 1%;
}
.product-page-img img:nth-child(4) {
    width: 28%;
}
.product-page-description {
    width: 40%;
    margin-left: 3%;
}
.product-page-description h2 {
    font-size: 16px;
    color: #505050;
}
.product-page-description h1 {
    font-family: Sahel-Bold;
    font-size: 32px;
}
.product-page-description-star {
    position: absolute;
    left: 27%;
    margin-top: 10px;
}
.product-page-description-star span {
    font-family: Sahel-SemiBold;
}
.product-page-description-star img {
    width: 27px;
}
.product-page-description-p {
    text-align: justify;
    line-height: 28px;
    font-family: Sahel-Light;
    font-size: 15px;        
}
.product-page-description-category img {
    position: absolute;
    width: 24px;
    opacity: 75%;
}
.product-page-description-category p {
    padding-right: 30px;
    font-size: 14px;
    color: #525252;
}
.product-page-description-span {
    background-color: #dddddd;
    width: 48%;
    display: inline-flex;
    margin: 0.5%;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
}
.product-page-cart {
    width: 24%;
}
.product-page-cart-box {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid #dadada;
    border-radius: 10px;
    margin-top: 20px;
}
.product-page-cart-box p {
    font-family: Sahel-SemiBold;
    font-size: 20px;
    padding: 20px 25px 0 0;
}
.number-input-container {
    text-align: center;
}
.product-page-cart-box button {
    width: 10%;
    border-radius: 10px;
}
.product-page-cart-box input[type="number"] {
    width: 60%;
    text-align: center;
    border: none;
    font-size: 30px;
}
.product-page-cart-box input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.product-page-cart-box input[type="submit"] {
    width: 90%;
    background-color: #009879;
    color: #fff;
    position: relative;
    margin-top: 15px;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
}
.product-page-cart-box input[type="submit"]:hover {
    background-color: #00745d;
}
.product-page-cart-warranty {
    background-color: #f2f2f2;
    border-radius: 8px;
    padding: 13px;
    margin: 20px 0;
}
.product-page-cart-warranty p {
    margin-bottom: 0;
    font-family: Sahel-Light;
    font-size: 14px;
}
.product-page-cart-warranty img {
    width: 25px;
    margin-left: 10px;
}
@media screen and (max-width: 600px) {
    .product-page {
        display: block;
        width: 90%;
        left: 5%;
    }
    .product-page-img {
        width: 100%;
        margin-left: 0;
    }
    .product-page-description {
        width: 100%;
        margin-left: 0;
    }
    .product-page-cart {
        width: 100%;
    }
    .product-page-description h1 {
        font-size: 28px;
    }
    .product-page-description h2 {
        font-size: 15px;
        margin-bottom: 2px;
        padding-top: 33px;
    }
    .product-page-description-star {
        left: 2%;
    }
}