.navbar {
    background-color: #f8f8f8;
}
.path {
    border-top: 2px solid #e9dfd7;
    padding-top: 13px;
}
.path ul {
    direction: rtl;
    text-align: right;
    padding-right: 5%;
}
@media screen and (max-width: 600px) {
    .path ul {
        padding-right: 2%;
    }
}
.path li {
    display: inline-block;
    margin-right: 10px;
}
.category-box {
    background-color: #be7032;
    width: 90%;
    height: 100px;
    left: 5%;
    position: relative;
    margin-bottom: 14px;
    border-radius: 12px;
}
.content {
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 86%;
    margin-left: 6%;
    color: #e9e9e9;
    position: absolute;
    z-index: 2;
}
.content h1 {
    font-family: Sahel-Black;
}
.bubbles {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    bottom: -30px;
}
.bubbles img {
    animation: bubble 7s linear infinite;
}
@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}
.bubbles img:nth-child(1) {
    animation-delay: 2s;
    width: 30px;
}
.bubbles img:nth-child(2) {
    animation-delay: 3s;
    width: 40px;
}
.bubbles img:nth-child(3) {
    animation-delay: 0;
    width: 20px;
}
.bubbles img:nth-child(4) {
    animation-delay: 1s;
    width: 25px;
}
.bubbles img:nth-child(5) {
    animation-delay: 3s;
    width: 40px;
}
.scrollmenu {
    overflow: auto;
    white-space: nowrap;
}
@media screen and (min-width: 600px) {
    .scrollmenu {
        position: relative;
        width: 80%;
        left: 10%;
        text-align: center;
    }
}
.scrollmenu a {
    width: 92px;
    display: inline-block;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 10px 10px 0 0;
}
.scrollmenu span {
    color: #445c08;
    font-family: Sahel-SemiBold;
}
.scrollmenu a img {
    width: 50px;
    border-radius: 50px;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px #be7032;
    margin-bottom: 10px;
}
.a-product {
    text-decoration: none;
    color: #000;
}
.product {
    position: relative;
    display: flex;
    width: 94%;
    left: 3%;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    margin-top: 20px;
}
@media screen and (min-width: 600px) {
    .product {
        display: inline-flex;
        width: 28%;
        left: 2%;
        margin-left: 3%;
    }
}
.product-img {
    width: 30%;
}
.product-img img {
    opacity: 90%;
    border: 6px solid #fff;
    border-radius: 0 20px 20px 0;
}
.product-title {
    width: 60%;
    text-align: right;
    padding-top: 16px;
}
.product-title h6 {
    font-family: Sahel-SemiBold;
    padding-right: 10px;
    font-size: 18px;
    color: #3f3f3f;
}
.product-title p {
    direction: rtl;
    position: absolute;
    bottom: 0;
    right: 32%;
    margin-bottom: 12px;
    font-family: Sahel-Light;
    font-size: 16px;
}
.product-cart {
    width: 10%;
}
.product-cart img {
    position: absolute;
    width: 37px;
    bottom: 6px;
    left: 6px;
}
.description {
    margin: 30px 0;
    direction: rtl;
    text-align: justify;
    position: relative;
    width: 94%;
    left: 3%;
    background-color: #ececec;
    border-radius: 20px;
    padding: 20px;
}
.description b {
    font-size: 20px;
}
.description p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 36px;
}