.category {
    margin: 80px 0 15px 0;
}
.category-header {
    direction: rtl;
    display: inline-flex;
    background-color: #eafffc;
    width: 80%;
    margin-left: 10%;
    padding: 20px 0;
    justify-content: space-evenly;
    margin-bottom: 25px;
    box-shadow: 0 0 10px 0 #000;
    border-radius: 30px 10px;
}
.category-header img {
    width: 32%;
    border: 2px solid #000;
    border-radius: 0 7px 27px 0;
    box-shadow: -8px 0 14px -8px #214e47;
}
.category-header-text {
    width: 60%;
    align-content: center;
}
.category-header-text h1 {
    direction: rtl;
    text-align: right;
    margin-bottom: 12px;
    font-family: Sahel-Bold;
    font-size: 28px;
}
.category-header-text p {
    direction: rtl;
    text-align: justify;
    font-family: Sahel-Light;
    margin-bottom: 0;
}
@media screen and (max-width: 450px) {
    .category-header {
        display: block;
    }
    .category-header img {
        width: 90%;
        margin-right: 5%;
        border-radius: 27px 7px 3px 3px;
        box-shadow: 0 8px 14px -8px #214e47;
    }
    .category-header-text {
        width: 90%;
        margin-right: 5%;
    }
    .category-header-text h1 {
        text-align: center;
        font-size: 23px;
        margin-top: 28px;
    }
}
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10% 0 10%;
}
.product-box {
    width: 250px;
    border-radius: 20px;
    text-align: center;
    margin: 20px 2%;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px #000;
}
.product-box a {
    text-decoration: none;
}
.product-box img {
    width: 100%;
}
.product-box h3 {
    direction: rtl;
    color: #3f3f3f;
    font-family: Sahel-Bold;
    font-size: 18px;
    margin: 0;
    padding: 4px 2px;
}
.product-box p {
    direction: rtl;
    color: #3f3f3f;
    font-family: Sahel-SemiBold;
    margin: 0;
    padding: 4px 2px;
}
.product-box del {
    direction: rtl;
    color: #860000;
    font-family: Sahel-SemiBold;
    margin: 0;
    padding: 4px 2px;
}
.price {
    direction: rtl;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #bcbcbc;
    padding: 6px 2px 0 2px;
}
.price img {
    width: 32px;
}
.available {
    color: #fff !important;
    margin-top: 3px !important;
    background-color: #922626;
    border-radius: 20px;
}