/* Add custom CSS styles below */
i.sicon-twitter2:before {
    content: "\f099" !important;
    font-family: 'FontAwesome' !important;
}

.store-notify a {
    font-size: 16px !important;
    line-height: 1.8 !important;
}

.blog-articles-show .product-desc img {
    max-width: 100% !important;
}

.img-cont img {
    height: 200px !important;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.categories-container-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.categories-container-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.single-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single-category h2 {
    color: #590000;
    font-size: 1.1rem;
}

.single-category img {
    width: 100%;
    height: auto;
}

.categories-container-3 .single-category a {
    transition: all 0.3s ease-in-out;
}

.categories-container-3 .single-category a:hover {
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}

@media(max-width:768px) {
    .categories-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .single-category h2 {
        font-size: 15px;
        text-align: center;
    }

    .categories-container-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-category {
        justify-content: flex-start;
    }

    .categories-container {
        gap: 1rem;
    }

}


img.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.single-branch {
    position: relative;
    transition: 0.3s;

    img {
        transition: 0.3s;
        filter: brightness(0.6)
    }

    .content {
        position: absolute;
        top: 60%;
        color: white;
        backdrop-filter: blur(2px);
        font-size: 20px;
        opacity: 0;
        width: 100%;
        text-align: center;
        padding: 10px;
        transition: 0.3s;

        p {
            font-size: 14px;
            margin-top: 7px;
        }
    }

    &:hover {



        img {
            filter: brightness(1)
        }

        .content {
            background: #00000052;
            top: 50%;
            opacity: 1;
        }
    }
}



.custom-top-tab {
    background-color: #790E17;
    color: #fff;
    text-align: center;
    padding: 6px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    width: 100%
}

.tab-text-wrapper {
    display: flex;
    gap: 100px;
    white-space: nowrap;
    position: relative;
    direction: ltr
}


.tab-text {
    display: inline-block;
    white-space: nowrap;
    direction: rtl;
    color:white;
    transition:0.3s;
    &:hover {
        color:#EFCC8A;
    }
}