﻿@font-face {
    font-family: "yekanbakh";
    font-weight: normal;
    src: url("../fonts/woff/YekanBakhFaNum-Regular.woff"), format(".woff"), url("../fonts/woff2/YekanBakhFaNum-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "yekanbakh";
    font-weight: bold;
    src: url("../fonts/woff/YekanBakhFaNum-ExtraBold.woff") format("woff"), url("../fonts/woff2/YekanBakhFaNum-ExtraBold.woff2") format("woff2");
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "yekanbakh" !important;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

html, body {
    scrollbar-color: var(--primary-color) #d1d5db;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #d1d5db;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #0e2db1;
    }

:root {
    --primary-color: #832d6a;
    --secondary-color: #ffeefa;
    --color-three: #f5f5f5;
    --mainWhite: #ffffff;
    --mainGrey: #b1b1b1;
    --secondaryGrey: #dadada;
    --thirdGrey: #f4f4f4;
    --color-text: #686868;
    --color-danger: #173087;
    --mainSpacing: 0.1rem;
    --mainTransition: all 0.2s ease-in-out;
    --spacer: 1rem;
    --font-size-small: 0.625rem;
    --font-size-0: 0.75rem;
    --font-size-1: 0.875rem;
    --font-size-2: 1rem;
    --font-size-3: 1.125rem;
    --font-size-4: 1.25rem;
    --font-size-5: 1.375rem;
    --line-height-28: 1.75rem;
}

.owl-stage {
    display: flex;
}

.owl-stage-outer {
    overflow-x: clip;
}

a {
    color: unset;
    text-decoration: none;
}

    a:hover, a:focus, a:active, a:active:focus {
        color: unset;
        text-decoration: none;
    }

img {
    width: 100%;
}

p {
    margin: 0;
    text-align: justify;
    color: #515152;
}

ul, ol {
    padding: 0;
    margin: 0;
}

svg path {
    transition: var(--mainTransition);
}

.text-justify {
    text-align: justify;
}

.centering {
    display: flex;
    align-items: center;
    justify-content: center;
}

#mainBg {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background-color: #000;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.separator {
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 15px;
}

.btn__primary {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    background-color: var(--mainWhite);
    color: var(--primary-color);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
}

    .btn__primary.btn__header {
        background-color: #f4f4f4;
        border: 2px solid var(--mainWhite);
    }

    .btn__primary:hover {
        background-color: var(--primary-color);
        color: var(--mainWhite);
    }

    .btn__primary svg {
        width: 20px;
        height: 20px;
    }

        .btn__primary svg path {
            fill: var(--primary-color);
            transition: var(--mainTransition);
        }

    .btn__primary:hover svg path {
        fill: var(--mainWhite);
    }

.btn__secondary {
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    gap: 0 5px;
    border: 2px solid transparent;
    background-color: var(--primary-color);
    color: var(--mainWhite);
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

    .btn__secondary:hover {
        background-color: var(--mainWhite);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
    }

    .btn__secondary svg {
        width: 20px;
        height: 20px;
    }

        .btn__secondary svg path {
            fill: var(--mainWhite);
            transition: var(--mainTransition);
        }

    .btn__secondary:hover svg path {
        fill: var(--primary-color);
    }

.btn__primary.light {
    background-color: var(--secondary-color);
}

.btn__primary.small {
    width: 40px;
    border-radius: 50%;
    padding: 0;
}

.btn__primary.light:hover {
    background-color: var(--primary-color);
}

.btn__primary.light svg {
    width: 20px;
    height: 20px;
}

    .btn__primary.light svg path {
        fill: none;
        transition: var(--mainTransition);
    }

.btn__primary.light:hover svg path {
    stroke: var(--mainWhite);
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.more-product {
    display: flex;
    justify-content: center;
    width: 100%;
}

.more-product-button {
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 40px;
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 20px #832d6ba0;
}

    .more-product-button:hover {
        transform: translatey(-6px);
        color: white;
    }

.gap-15 {
    gap: 15px !important;
}

.breadcrumb__section {
    padding: 16px 0;
}

.breadcrumb__menu::before {
    content: " ";
    margin-left: 5px;
    width: 40px;
    height: 40px;
    background: #f0ebeb url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAMAAADXqc3KAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAT5QTFRFAAAAgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgSxqgS1qgy1qgy1qgy1qgi1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qhC1rgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qgy1qo84CWgAAAGp0Uk5TACRhZy0EfPL/9gwGcf38lKzRErsXDp7BIb4VIsz7DYsmGP6YB9gvQul/A1r57EZA4vp1AWrtVmn11/jk1XKvtrGmjpUFAQFXoGMBrQ8108lfdufPjYDcB7iqidl7SJCIw+6Kh961xc4IeASUMvkAAAFTSURBVHicZdHLS0JREAbw86X3phWJkJskIcgiIcIMrCwIpQghUTLoSdv+rjQqqBAyrMiIiKIokhYm5UJcSKCQGtrjerNzxNfVbzVnfgzMYUCqAU2h9qoUHG0TiPJ8A7QDAk9+uZZCTgJt/DdRptXIEYU8VQcafAkqvJMuWZ50IFEFLVKaz844rXT4SypVsTL0CqluZJOl2b5iMdGD1xIMIMZrES5vYQCiejxTGEZkENlo9QMmiC9DuIcZIWK8JfUZfyIjIiyPhIxeS2Dygc1NAXdNMIYCTBHzTRNY8EG3slZgBmcVCJIacFb8KM6FJrAjSHs2+Bth/lKYxSln8zWCK2C/yjiOp09q4PYzWDxyYG/J59ph0JphsHK4sC2B1YOJCwZr+3oxXAcG2Zvby2DdJzh5YHeZXt1r7M+pPZzTw0A3t0Wk2QjES4faRFrSD2Xocf8BA1OC+3TRQsIAAAAASUVORK5CYII=") no-repeat center;
    border-radius: 50%;
    transition: all 0.3s;
}

.breadcrumb__item {
    font-size: 13px;
    margin-left: 5px;
    color: var(--color-text);
    font-weight: 600;
}

    .breadcrumb__item::after {
        content: "/";
    }

    .breadcrumb__item.active::after {
        content: " ";
    }

    .breadcrumb__item.active {
        color: var(--primary-color);
    }

.checkbox__label::before {
    content: " ";
    width: 16px !important;
    height: 16px !important;
    display: inline-block !important;
    background-color: #fff !important;
    vertical-align: middle !important;
    margin-left: 3px !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 3px !important;
    background-position: center;
    background-repeat: no-repeat;
}

.remember-checkbox:checked ~ .checkbox__label::before, .form__checkbox:checked ~ .checkbox__label::before {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAUklEQVR4nGNgoCv4X/+f6XDk61kHwt9o4lV0KPL13EORryJIV3Q46vWq/dFvZODWRb2efTjqTRCGCSBFhyNf7TkS/lKZoHUgxYciX53CahJNAACIATXz2s/pTQAAAABJRU5ErkJggg==") no-repeat center !important;
}

.checkbox__label {
    font-size: 15px;
    position: relative;
}

.remember-checkbox, .form__checkbox {
    z-index: 10;
    cursor: pointer;
    margin-bottom: 3px;
    opacity: 0;
    position: absolute;
}

.form__row {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.form__input {
    flex-grow: 1;
    height: 40px;
    background-color: var(--color-three) !important;
    padding: 9px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 10px;
}

    .form__input:focus-visible {
        outline: none;
    }

.form__label {
    color: var(--color-text);
    margin-bottom: 0;
    min-width: 130px;
    position: relative;
    font-size: 14px;
}

.form__input:focus {
    border-color: var(--primary-color);
}

.form__textarea {
    min-height: 180px;
    resize: none;
}

.form__send-btn {
    border: 0;
    min-width: 150px;
    display: table;
    margin: auto;
    font-size: 18px;
    cursor: pointer;
    height: 48px;
}

.form__star {
    color: var(--primary-color);
    font-size: 13px;
    position: absolute;
    top: -4px;
}

.form__textarea:focus-visible {
    outline: 0;
}

.form__input:focus {
    border-color: var(--primary-color);
}

.swiper {
    right: 0;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: "" !important;
}

.swiper-button-prev, .swiper-button-next {
    background-color: var(--primary-color);
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    padding: 5px;
}

.swiper-slide img {
    display: block;
}

.header {
    position: relative;
    transition: all 0.2s ease-in-out;
}

.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 0px 7px 4px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.navbar__top--parent {
    background-color: var(--mainWhite);
}

.navbar__top {
    display: grid;
    grid-template-columns: 70px 2fr 380px max-content;
    grid-template-rows: auto;
    column-gap: 1.5rem;
    align-items: center;
}

.navbar__top-logo {
    display: block;
}

.top-text__img img {
    max-width: 250px;
}

.navbar__top-searchbar {
    max-width: 550px;
}

    .navbar__top-searchbar .form-control:focus {
        background-color: #fff;
        border-color: var(--primary-color);
        outline: 0;
        box-shadow: 0 0 1px 2px var(--primary-color);
    }

    .navbar__top-searchbar input {
        display: block;
        padding: 0.5rem;
        border-radius: 1.5rem;
        border-width: 1px;
        border-color: #d1d5db;
        width: 100%;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        background-color: #f4f4f4;
        height: 45px;
    }

input, input::placeholder {
    color: var(--primary-color) !important;
}

.search-btn {
    display: flex;
    position: absolute;
    padding: 0;
    left: 5px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    width: 37px;
    height: 37px;
    background-color: var(--primary-color);
    cursor: pointer;
}

    .search-btn svg {
        width: 22px;
        height: 22px;
    }

.navbar__top-actions {
    display: grid;
    grid-template-columns: 150px auto 1fr;
    grid-template-rows: auto;
    column-gap: 0.5rem;
    align-items: center;
}

.action__btns--parent {
    display: flex;
    gap: 0 7px;
}

    .action__btns--parent .action__btns {
        border: none;
        box-shadow: none;
        background-color: transparent;
    }

.action__btns svg {
    width: 25px;
    height: 25px;
}

    .action__btns svg path {
        fill: var(--primary-color);
    }

.navbar__bottom--parent {
    background-color: var(--primary-color);
    padding: 0.75rem 1rem !important;
}

.navbar__bottom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto;
    column-gap: 1rem;
    align-items: center;
}

    .navbar__bottom .action__btns {
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 0 7px;
        color: var(--primary-color);
        font-size: 1rem;
    }

        .navbar__bottom .action__btns svg {
            width: 28px;
            height: 28px;
        }

            .navbar__bottom .action__btns svg path {
                fill: var(--primary-color);
            }

.main-nav__list {
    display: flex;
    gap: 0 1.5%;
}

.main-nav__item.active .main-nav__link {
    color: var(--primary-color);
    background-color: var(--mainWhite);
    font-weight: bold;
}

.main-nav__link {
    font-size: 0.9rem;
    color: var(--mainWhite);
    transition: var(--mainTransition);
    padding: 4px 0.75rem;
    border-radius: 15px;
}

.main-nav__item:hover .main-nav__link {
    color: var(--primary-color);
    background-color: var(--mainWhite);
}

.main-nav__item .main-nav__link:focus, .main-nav__item .main-nav__link:active {
    color: #000;
}

.main-nav__item .main-nav__link.category svg path {
    fill: var(--mainWhite);
    stroke: var(--mainWhite);
}

.main-nav__item:hover .main-nav__link.category svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0 10px;
    width: 100%;
    max-width: 350px;
    justify-content: end;
}

    .social-links span {
        color: var(--mainWhite);
    }

.social__items {
    display: grid;
    grid-template-columns: repeat(5, 22px);
    gap: 0 5px;
    align-items: center;
}

    .social__items a img {
        transition: var(--mainTransition);
    }

    .social__items a:hover img {
        filter: brightness(0);
    }

.bannerSlider {
    border-radius: 20px;
}

    .bannerSlider .bannerSliderItem img {
        object-fit: cover;
        object-position: bottom;
        max-height: 420px;
        min-height: 180px;
    }

.product-category__parent {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background-color: var(--mainWhite);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 50px 0 #832d6b83;
    position: relative;
    top: -6.25rem;
}

.product-category__item {
    padding: 1rem 0.5rem;
    position: relative;
    z-index: 0;
    cursor: pointer;
}

    .product-category__item::before {
        content: "";
        position: absolute;
        display: block;
        background-color: var(--secondary-color);
        border-radius: 15px;
        width: calc(100% - 10px);
        height: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        transition: var(--mainTransition);
        opacity: 0;
        visibility: hidden;
    }

    .product-category__item:hover::before {
        opacity: 1;
        visibility: visible;
    }

    .product-category__item:not(:nth-child(1)) {
        border-right: 1px solid var(--primary-color);
    }

    .product-category__item .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem 0;
        position: relative;
        z-index: 2;
    }

        .product-category__item .inner img {
            width: 100%;
            height: 65px;
        }

        .product-category__item .inner h2 {
            font-size: 1.1rem;
            line-height: 1.7;
            font-weight: bold;
            text-align: center;
            color: var(--primary-color);
            margin: 0;
            position: relative;
        }

.categories__tabs__tab.active::before {
    opacity: 1;
    visibility: visible;
}

.categories__tabs__content__item {
    display: none;
}

    .categories__tabs__content__item.active {
        display: block !important;
    }

.bg__body__grey {
    background-color: #f2f2f2;
}

.sec__title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #686868;
}

.products-sec {
    padding-bottom: 4.5rem !important;
}

.product__container {
    margin-top: -3rem;
}

.products__center {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product__card {
    display: flex;
    flex-direction: column;
    background-color: var(--mainWhite);
    gap: 0.75rem 0;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
    transition: var(--mainTransition);
}

    .product__card:hover {
        box-shadow: 0 0 20px -3px #832d6b86;
        transform: translateY(-5px);
    }

    .product__card img {
        border-radius: 15px;
    }

    .product__card h3 {
        font-size: 1.25rem;
        text-align: center;
        font-weight: bold;
        color: #686868;
    }

    .product__card .category-name {
        font-size: 0.65rem;
        color: #aaa8a8;
        margin: 1rem 0;
        text-align: center;
        width: 100%;
        display: block;
    }

    .product__card .btns .btn {
        font-size: 14px;
        width: 50%;
        gap: 0 3px;
    }

        .product__card .btns .btn svg path {
            stroke: var(--mainWhite);
            fill: none;
        }

        .product__card .btns .btn:hover svg path {
            stroke: var(--primary-color);
            fill: none;
        }

        .product__card .btns .btn.show-product svg path {
            stroke: var(--primary-color);
            fill: var(--primary-color);
            stroke-width: 0;
        }

        .product__card .btns .btn.show-product:hover svg path {
            stroke: var(--mainWhite);
            fill: var(--mainWhite);
        }

.product__show__more {
    position: absolute;
    height: 50px;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.center__banner {
    position: relative;
    top: 1rem;
}

    .center__banner img {
        border-radius: 20px;
    }

.submenu-products {
    display: none;
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    padding: 10px 0 0;
    background: transparent;
    top: 20px;
    z-index: 99;
    min-width: 700px;
}

    .submenu-products .submenu-products-inner {
        display: flex;
        position: relative;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin: 0;
        background-color: #f5f5f5;
        padding: 1rem;
        border-radius: 20px;
        list-style-type: none;
    }

        .submenu-products .submenu-products-inner > li {
            width: 100%;
            padding: 1rem;
        }

            .submenu-products .submenu-products-inner > li > a {
                display: block;
                width: 100%;
                background-color: #fff;
                padding: 0.75rem;
                border-radius: 20px;
                transition: 0.2s ease-in-out;
                overflow: hidden;
                border-radius: 50px;
                position: relative;
                z-index: 1;
            }

                .submenu-products .submenu-products-inner > li > a:hover {
                    box-shadow: -3px 3px 20px -11px rgba(0, 0, 0, 0.1);
                }

.submenu-products-tabs {
    width: 100%;
    border-radius: 5px 5px 5px 5px;
    display: flex;
}

    .submenu-products-tabs ul#tabs-nav {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        position: relative;
        border-left: 2px solid var(--primary-color);
    }

#SubmenuProductsTabsContent {
    width: 100%;
    padding-right: 1rem;
    max-height: 366px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.submenu-products-tabs ul#tabs-nav li {
    font-weight: bold;
    margin-right: 2px;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    margin-bottom: 0.75rem;
    text-align: right;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.2s ease-in-out;
    margin-left: 10px;
    padding: 0.25rem 0;
}

    .submenu-products-tabs ul#tabs-nav li a {
        text-decoration: none;
        color: #737375;
        gap: 10px;
        display: flex;
        align-items: center;
        transition: var(--mainTransition);
    }

        .submenu-products-tabs ul#tabs-nav li a .img-parent {
            background-color: #d9d9d9;
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: var(--mainTransition);
            outline: 1px solid transparent;
            outline-offset: 2px;
            position: relative;
            z-index: 1;
        }

        .submenu-products-tabs ul#tabs-nav li a img {
            width: 22px;
            height: 22px;
        }

    .submenu-products-tabs ul#tabs-nav li:hover {
        background-color: #fff;
    }

        .submenu-products-tabs ul#tabs-nav li:hover a, .submenu-products-tabs ul#tabs-nav li.active a {
            color: var(--primary-color);
        }

            .submenu-products-tabs ul#tabs-nav li:hover a .img-parent, .submenu-products-tabs ul#tabs-nav li.active a .img-parent {
                background-color: var(--primary-color);
                outline: 1px solid var(--primary-color);
            }

.submenu-products-tab-content {
    border-radius: 15px;
    display: grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
    position: relative;
}

    .submenu-products-tab-content::before {
        content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23832d6a'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
        width: 15px;
        height: 15px;
        position: absolute;
        right: -50px;
        transition: 0.2s ease-in-out;
    }

    .submenu-products-tab-content#tab1::before {
        top: 13px;
    }

    .submenu-products-tab-content#tab2::before {
        top: 68px;
    }

    .submenu-products-tab-content#tab3::before {
        top: 123px;
    }

    .submenu-products-tab-content#tab4::before {
        top: 178px;
    }

    .submenu-products-tab-content#tab5::before {
        top: 233px;
    }

    .submenu-products-tab-content#tab6::before {
        top: 288px;
    }

    .submenu-products-tab-content#tab7::before {
        top: 343px;
    }
/*      .submenu-products-tab-content .tab-content__item {width: max-content;}*/
.ui-menu {
    background-color: white;
}
/*.login-menu, .overlay-title {
    left: 50%;
    transform: translateX(-50%)
}*/
@media only screen and (max-width: 600px) {
    .reserve-modal-content {
        max-width: 100vw
    }

    .modal-content__days-item {
        max-width: 100%
    }
}

.overlay-text {
    bottom: 0;
    width: 100%;
    z-index: 2000000;
    font-size: 13px
}

.overlay-title {
    top: 4px;
    font-size: 16px;
    font-weight: 700;
    width: 80vw
}

.login-menu {
    padding-top: 8px;
    position: absolute;
    min-width: 140px;
    top: 50%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.header__login:hover .login-menu {
    opacity: 1;
    visibility: visible;
    top: 55px;
}

.login-menu__wrapper {
    padding: 10px 0;
    border-radius: 21px;
    background: #fff8f0;
    box-shadow: 0 10px 50px 0 rgba(225,135,27,.4)
}

.header__login {
    cursor: pointer
}

.login-menu a {
    color: #999ba8;
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: -.7px;
    transition: .3s;
    display: flex;
    align-items: center;
    padding: 4px 0;
    margin-left: 12px
}

    .login-menu a svg {
        margin-left: 5px
    }

    .login-menu a:hover {
        color: var(--color-primary)
    }

    .login-menu a:not(.logout):hover svg path {
        fill: var(--color-primary)
    }

.login-menu .logout {
    color: #fd2228 !important;
    border-top: 1px solid #d6d7db;
    margin-top: 5px;
    padding-top: 5px
}

.submenu-products-tab-content .tab-content__item span {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--primary-color);
}

.submenu-products-tab-content .tab-content__item ul {
    display: flex;
    flex-direction: column;
    margin-top: 0.75rem;
    gap: 10px;
}

    .submenu-products-tab-content .tab-content__item ul li {
        position: relative;
        padding-right: 0.5rem;
        display: flex;
        align-items: center;
    }

        .submenu-products-tab-content .tab-content__item ul li::before {
            content: "";
            position: absolute;
            display: block;
            background-color: var(--primary-color);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            right: 0;
            transition: var(--mainTransition);
            opacity: 0;
            visibility: hidden;
        }

        .submenu-products-tab-content .tab-content__item ul li a {
            display: block;
            font-size: 0.85rem;
            color: #737375;
            transition: var(--mainTransition);
        }

        .submenu-products-tab-content .tab-content__item ul li:hover::before {
            opacity: 1;
            visibility: visible;
        }

        .submenu-products-tab-content .tab-content__item ul li:hover a {
            color: var(--primary-color);
            transform: translateX(-5px);
        }

#submenuMobile {
    list-style-type: none;
    width: 100%;
    color: var(--mainGrey);
    display: none;
}

    #submenuMobile.active {
        display: block;
    }

    #submenuMobile li {
        padding: 10px 10px 10px 0;
        cursor: pointer;
        border-bottom: 1px solid #ccc;
        color: var(--mainGrey);
        font-size: 0.9rem;
        transition: var(--mainTransition);
    }

        #submenuMobile li:hover {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

.submenu, .sub-submenu {
    display: none;
    list-style-type: none;
}

.submenu {
    padding-right: 7px;
}

.sub-submenu {
    padding-right: 12px;
    margin-top: 0.5rem;
}

.submenu li {
    border-bottom: 1px solid #ccc;
}

.submenu li {
    padding: 8px !important;
}

.sub-submenu li {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 0.8rem;
    border: none !important;
    padding: 5px 10px 5px 5px !important;
}

    .sub-submenu li::before {
        content: "";
        position: absolute;
        display: block;
        background-color: #737375;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        right: 0;
        transition: var(--mainTransition);
    }

    .sub-submenu li:hover::before {
        background-color: var(--primary-color);
    }

.chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(135deg);
    margin-left: 10px;
    transition: transform 0.3s ease;
    margin-right: auto;
}

.submenu.active > li > .chevron, .sub-submenu.active > li > .chevron {
    transform: rotate(45deg);
    margin-right: auto;
}

.blogs__parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.article-card {
    position: relative;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

    .article-card .card-breadcrumb {
        padding-right: 0.5rem;
        position: relative;
        display: flex;
        align-items: center;
    }

        .article-card .card-breadcrumb p {
            color: var(--primary-color);
        }

        .article-card .card-breadcrumb::before {
            content: "";
            position: absolute;
            display: block;
            background-color: var(--primary-color);
            width: 5px;
            height: 5px;
            right: 0;
            border-radius: 50%;
        }

    .article-card .date svg {
        width: 17px;
        height: 17px;
    }

    .article-card .date p {
        color: var(--primary-color);
    }

    .article-card img {
        height: 350px;
        min-height: 300px;
        max-height: 400px;
        border-radius: 20px;
    }

    .article-card .internal-card {
        padding: 1.5rem;
        background-color: white;
        box-shadow: 0 5px 25px #0000003b;
        border-radius: 20px;
        color: #6c6c6c;
        font-size: 10px;
        position: absolute;
        bottom: 10px;
        width: calc(100% - 20px);
    }

        .article-card .internal-card h4, .article-card .internal-card h2 {
            color: var(--primary-color);
            font-size: 1rem;
            font-weight: bold;
        }

        .article-card .internal-card .read-more {
            color: var(--primary-color);
            font-size: 10px;
            font-weight: bold;
        }

.faq__accordion__parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.faq__accordion__col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq__accordion__item {
    transition: all 0.3s;
}

.faq__accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 20px 20px 20px 1.5rem;
    position: relative;
    z-index: 1;
}

    .faq__accordion__header p {
        margin: 0;
        font-size: 1.1rem;
        color: var(--mainWhite);
        font-weight: bold;
        padding-left: 1rem;
    }

.faq__accordion__parent .chevron {
    margin-left: 0;
    width: 10px;
    height: 10px;
    border-color: var(--mainWhite);
}

.faq__accordion__body {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    font-size: 16px;
    color: #686868;
    padding: 40px 20px 20px 20px;
    margin-top: -25px;
    background-color: #f2f2f2;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.faq__accordion__item.active .faq__accordion__body {
    max-height: 100%;
}

.faq__accordion__body p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq__accordion__item.active .chevron {
    transform: rotate(45deg);
}

.customer__card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    margin: 5px;
    box-shadow: 0 0 20px -3px #832d6b86;
    transition: var(--mainTransition);
}

    .customer__card:hover {
        transform: translateY(-5px);
    }

    .customer__card img {
        width: 100%;
        height: 100%;
    }

.footer {
    background-color: #f2f2f2;
    margin-top: 7rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 3rem 0;
}

.footer__content-about {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

    .footer__content-about a {
        width: 125px;
        margin: -6.5rem auto 0 auto;
    }

    .footer__content-about p {
        line-height: 2;
    }

.footer__content-links {
    display: flex;
    justify-content: space-around;
}

    .footer__content-links .list {
        display: flex;
        flex-direction: column;
        gap: 12px 0;
    }

    .footer__content-links .list__title {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .footer__content-links .list__item {
        position: relative;
        display: flex;
        align-items: center;
        color: #686868;
        padding-right: 1rem;
        transition: var(--mainTransition);
    }

        .footer__content-links .list__item:hover {
            color: var(--primary-color);
        }

        .footer__content-links .list__item::before {
            content: "";
            display: block;
            position: absolute;
            width: 6px;
            height: 6px;
            right: 0;
            background-color: #686868;
            border-radius: 50%;
            transition: var(--mainTransition);
        }

        .footer__content-links .list__item:hover::before {
            background-color: var(--primary-color);
        }

.footer__content-social {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 15px 0;
}

.cetificate__parent {
    background-color: var(--mainWhite);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 20px;
    justify-content: center;
    max-width: 350px;
    padding: 1rem;
}

.footer__cpr {
    background-color: var(--primary-color);
    position: relative;
    border: none;
    padding: 0.5rem 0;
}

    .footer__cpr .cpr__right, .footer__cpr .cpr__left {
        color: var(--mainWhite);
    }

        .footer__cpr .cpr__right a, .footer__cpr .cpr__left a {
            font-weight: bold;
            position: relative;
        }

            .footer__cpr .cpr__right a::after, .footer__cpr .cpr__left a::after {
                content: "";
                position: absolute;
                display: block;
                background-color: var(--mainWhite);
                width: 0;
                height: 2px;
                border-radius: 20px;
                bottom: -3px;
                left: 0;
                right: 0;
                margin: 0 auto;
                transition: var(--mainTransition);
            }

            .footer__cpr .cpr__right a:hover::after, .footer__cpr .cpr__left a:hover::after {
                width: 100%;
            }

@media only screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media only screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .navbar__top {
        grid-template-columns: 70px 2fr 1fr max-content;
    }

    .main-nav__list {
        gap: 0 2px;
    }

    .product-category__item .inner img {
        height: 50px;
    }

    .product-category__item .inner h2 {
        font-size: 1rem;
    }

    .footer__content {
        gap: 25px;
        padding: 2rem 1rem;
    }
}

@media only screen and (max-width: 991px) {
    .navbar__top--parent {
        background-color: #f5f5f5;
    }

    .navbar__top {
        grid-template-columns: max-content 170px auto;
        column-gap: 0.75rem;
    }

    .navbar__top-actions {
        margin-right: auto;
        grid-template-columns: max-content max-content;
        grid-template-rows: auto;
        column-gap: 0.5rem;
    }

    .navbar__bottom--parent {
        position: fixed;
        display: flex;
        width: 280px;
        height: 100%;
        right: -100%;
        top: 0;
        transition: all 0.3s ease-in-out;
        background-color: #f5f5f5;
        z-index: 99;
        border-top-left-radius: 25px;
        overflow-y: auto;
    }

        .navbar__bottom--parent .navbar__top-logo {
            max-width: 190px;
            background-color: #fff;
            padding: 5px;
            border-radius: 7px;
        }

    .navbar__bottom {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem 0;
    }

    .main-nav__list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem 0;
    }

    .main-nav__link {
        display: flex;
        padding: 0.5rem 0.75rem;
        gap: 0 3px;
        width: 100%;
        position: relative;
        align-items: center;
        color: var(--primary-color);
        font-weight: bold;
        border-radius: 7px;
    }

    .mobile__menu-search {
        width: 100%;
        background-color: transparent;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--primary-color) !important;
    }

        .mobile__menu-search:focus {
            border-color: var(--primary-color) !important;
        }

    #openNavBtn svg {
        width: 40px;
        height: 40px;
    }

        #openNavBtn svg path {
            stroke: var(--primary-color);
        }

    .closeNavBtn {
        position: absolute;
        left: 10px;
        top: 12px;
    }

        .closeNavBtn svg {
            width: 25px;
            height: 25px;
        }

            .closeNavBtn svg path {
                fill: var(--primary-color);
            }

    .open__Main__Nav {
        right: 0;
    }

    .search-btn {
        width: 30px;
        height: 30px;
    }

        .search-btn svg {
            width: 15px;
            height: 15px;
        }

    .social__items {
        grid-template-columns: repeat(5, 25px);
        gap: 0 10px;
        background-color: var(--primary-color);
        margin: 0 auto;
        padding: 1rem;
        width: 100%;
        justify-content: space-between;
        border-radius: 7px;
    }

    .bannerSlider {
        border-radius: 15px;
    }

    .product-category__parent {
        width: 90%;
        top: -4.5rem;
        grid-template-columns: repeat(6, 170px);
        overflow-x: auto;
    }

    .product__container {
        margin-top: -2rem;
    }

    .products__center {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .blogs__parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: repeat(1, 100%);
        row-gap: 2rem;
    }

    .footer__content-about {
        align-items: center;
    }

        .footer__content-about p {
            max-width: unset;
        }

    .footer__content-social {
        align-items: center;
    }

    .footer__content-about a {
        margin: -5.5rem auto 0 auto;
    }
}

@media only screen and (max-width: 768px) {
    .product-category__item .inner {
        gap: 1rem 0;
    }

    .products__center {
        gap: 0.75rem;
    }

    .article-card {
        border-radius: 15px;
    }

        .article-card .internal-card {
            padding: 0.75rem;
            bottom: 7.5px;
            width: calc(100% - 15px);
            border-radius: 15px;
        }

        .article-card img {
            min-height: 250px;
            max-height: 300px;
            border-radius: 15px;
        }

    .faq__accordion__parent {
        grid-template-columns: 1fr;
    }

    .footer__cpr .cpr__right, .footer__cpr .cpr__left {
        width: 100%;
        margin: 0.25rem 0;
        text-align: center;
        font-size: 0.75rem;
    }
}

@media only screen and (max-width: 576px) {
    .navbar__top {
        display: grid;
        grid-template-columns: max-content 170px auto;
        column-gap: 0.25rem;
    }

    .navbar__top-actions {
        display: flex;
        column-gap: 0.25rem;
    }

    #openNavBtn svg {
        width: 35px;
        height: 35px;
    }

    .main-nav__link svg, .navbar__bottom .action__btns svg {
        width: 25px;
        height: 25px;
    }

        .main-nav__link svg path {
            fill: var(--primary-color);
        }

    .navbar__bottom .action__btns {
        gap: 0 3px;
    }

    .swiper-button-prev, .swiper-button-next {
        background-color: var(--primary-color);
        width: 27px !important;
        height: 27px !important;
        border-radius: 50%;
        padding: 5px;
        top: var(--swiper-navigation-top-offset, 52%) !important;
    }

    .product-category__parent {
        grid-template-columns: repeat(6, max-content);
        top: 0;
        width: 100%;
        padding: 0.5rem 0.25rem;
        border-radius: 15px;
        scroll-behavior: smooth;
    }

    .product-category__item {
        padding: 1rem;
    }

        .product-category__item .inner h2 {
            font-size: 0.9rem;
        }

        .product-category__item .inner img {
            height: 40px;
        }

    .product__container {
        margin-top: 0;
        padding-top: 2rem !important;
    }

    .products__center {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product__card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 0.25rem;
    }

    .product__card__img {
        grid-area: 1 / 1 / 6 / 2;
        display: flex !important;
    }

    .product__card__caption {
        grid-area: 1 / 2 / 3 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product__card .btns {
        grid-area: 3 / 2 / 6 / 3;
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

        .product__card .btns .btn {
            width: 95%;
        }

    .product__card h3 {
        font-size: 1rem;
    }

    .product__card .category-name {
        margin: 0.25rem 0;
    }

    .center__banner img {
        border-radius: 15px;
    }

    .blogs__parent {
        display: grid;
        grid-template-columns: 1fr;
    }

    .faq__accordion__header p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .customer__card {
        border-radius: 15px;
    }

    .cetificate__parent {
        grid-template-columns: repeat(2, auto);
    }

    .form__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .form__input {
        width: 100%;
        max-width: 100%;
    }

    .banner__slider .slick-list {
        padding-bottom: 1rem !important;
    }
}

#stars {
    display: inline-block;
}

.star-rating {
    cursor: pointer; /* کلیک‌پذیر بودن */
    font-size: 24px; /* سایز آیکون ستاره */
    margin: 0 5px; /* فاصله بین ستاره‌ها */
}

.star i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: gray; /* رنگ پیش‌فرض */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); /* شکل ستاره */
}

/* ستاره‌های پررنگ */
.star.filled i {
    background-color: gold; /* رنگ ستاره‌های انتخاب شده */
}


.rating-stars ul > li.star {
    display: inline-block;
}
