body {
    font-family: "Cairo", Tahoma, Arial, sans-serif!important;
    background: 
        linear-gradient(135deg, #f9fbe7 0%, #fffbe9 80%),
        url('../img/bg.jpg');
    background-repeat: repeat;
    background-size: 500px auto, cover;
    background-blend-mode: lighten;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: url('../img/bg.jpg') repeat;
    opacity: 0.5;
    background-size: 500px auto;
    pointer-events: none;
}

.categories-bar {
    gap: 1rem;
    justify-content: flex-start;
    /* background: #fff; */
    border-radius: 20px;
    box-shadow: 0 1px 7px #eee;
    padding: 15px 5px;
    margin-bottom: 10px;
}

.category-item {
    min-width: 85px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 14px;
    border: 2px solid transparent;
    background: #f1f1f1;
    padding: 8px 7px 3px 7px;
    text-align: center;
    font-size: 15px;
}
.category-item.active, .category-item:hover {
	border-color: #af0a1b;
    background: #f2f9ff;
}

.category-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 20px;
    border: 1px solid #eee;
}

#products-list .product-box {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 1px 6px #ececec;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: rtl;
    height: 100%;
}

.section-title-sm {
    font-size: 40px;
    color: #064f89;
    margin: 35px 0 15px 0;
    font-weight: bold;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 4px;
    width: fit-content;
}

@media (min-width: 768px) {
    #products-list > .col-md-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .categories-bar {
        gap: 0.5rem;
        padding: 7px 1px;
    }
    .category-item {
        min-width: 65px;
        font-size: 13px;
        padding: 7px 4px 2px 4px;
    }
    #products-list .product-box {
        font-size: 15px;
        padding: 10px;
    }
}
