@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;
}

*:not(.fa),
*:not(.fa):before,
*:not(.fa):after {
    font-family: 'yekanbakh' !important;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    background-color: #f5f5f5;
}

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: #4a7049;
    --secondary-green: #8cac83;
    --secondary-color: #ffeefa;
    --orange-color: #ffc300;
    --color-three: #f5f5f5;
    --mainWhite: #ffffff;
    --mainGrey: #f5f5f5;
    --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: flex;
    width: 1.5px;
    height: inherit;
    background-color: #909090;
    border-radius: 25px;
}

.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: linear-gradient(90deg, rgba(74, 112, 73, 1) 0%, rgba(140, 172, 131, 1) 100%);
        border-radius: 10px;
        width: unset;
        background-color: var(--secondary-green);
        color: #fff;
    }

    .btn__primary:hover {
        background-color: var(--primary-color);
        color: var(--mainWhite);
    }

    .btn__primary svg {
        width: 28px;
        height: 28px;
    }

        .btn__primary svg path {
            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;
    background-color: var(--primary-color);
    color: var(--mainWhite);
    border: 1px solid transparent;
    border-radius: 25px;
    transition: var(--mainTransition);
    width: max-content;
    min-width: 120px;
}

    .btn__secondary:hover {
        background-color: var(--mainWhite);
        border: 1px 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-green);
}

.btn__primary.green {
    background-color: var(--primary-color);
}

.btn__primary.small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
}

.btn__primary.light:hover {
    background-color: #000;
}

.btn__primary.light svg {
    width: 28px;
    height: 28px;
}

    .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 #4a704998;
}

    .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,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAE7mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgOS4xLWMwMDIgNzkuYjdjNjRjYywgMjAyNC8wNy8xNi0wNzo1OTo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIiB4bXA6Q3JlYXRlRGF0ZT0iMjAyNS0wMS0zMVQyMjo0MToxNyswMzozMCIgeG1wOk1vZGlmeURhdGU9IjIwMjUtMDEtMzFUMjI6NDE6NTQrMDM6MzAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjUtMDEtMzFUMjI6NDE6NTQrMDM6MzAiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZkNGM2NGQyLWVlY2YtZjE0MS04ZTk4LWQwNGEzNzhhZTIwNSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2ZDRjNjRkMi1lZWNmLWYxNDEtOGU5OC1kMDRhMzc4YWUyMDUiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2ZDRjNjRkMi1lZWNmLWYxNDEtOGU5OC1kMDRhMzc4YWUyMDUiPiA8eG1wTU06SGlzdG9yeT4gPHJkZjpTZXE+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjcmVhdGVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjZkNGM2NGQyLWVlY2YtZjE0MS04ZTk4LWQwNGEzNzhhZTIwNSIgc3RFdnQ6d2hlbj0iMjAyNS0wMS0zMVQyMjo0MToxNyswMzozMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDI2LjAgKFdpbmRvd3MpIi8+IDwvcmRmOlNlcT4gPC94bXBNTTpIaXN0b3J5PiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvCym/gAAANRSURBVEiJtZY/iF1VEMZ/35z73mZ3SQxL0oiChRhsggRBoxAiQpBYCaayEsGAglUQxCCIjSBYKQaxtZEogqCIoEmlhZGkU2xsAoYlShI3u+++e+azuPve22T/RItcOM2ZufP9mZnLlW3u5tMAHH/tOKZCiJDAgAIJsiYUIXGS5EWgkfm0G9QPxgvj8fy1Bezsq5VATmpJVveMOPfWD8QdKUgnZMYkZ4DHgEOI9yOjHawOXnLs7MD2APZDxuclPgP+xDyLkSFSPho1fh2sDT5BvgQc/L8ApxG/YY4I3oga9wNfb5B1Pks+3C6MXolxHERcIvQe9qZ6Gy4McAh0GekdxLdK7pP9rrWFQBnER3VXXarDPKvkFPg61pFpfAJgGSmeC8UF4F7CzxueAS5vayGgFHWYf2fkCdvHkGpEnMecjIwZgIr2K+ILzO/qtAf4fKfCt4PIoKLvRuN26eY/Kz9FxpnF6/MHZgDiFIZQPKmiG71h/20/HAYBiGxrXVsZHS5N0K12b8P6Hrj6aCgwXkZA7fdBiMAk2hLOkZTRAMtkrcwvzrN4zyK1q9dioEdnAJn3qCmrQ+YAz1ofQphRbTFGUk/WQIroCjGKXkUBbHJcAa6oxJ4pQDQl0jla5eY6tQ0sYarmdu+jFlxyU8yQuL8MZoarN7M/fTwolC37YRlFEFuvkiY0d/hUmIZC2SFFBEGDyW1zNr59C00hGpo7zJIplPVR2DozppkQE4Mm7DVTuk35iYqynjWtMG3KpAcdsAuDDbIoNJuat93TMMCCLjq6qLgfnq6P9TDXMMPaJFbSZIOrGWuM8WmhFzZVFZB85ZqvO0yUQpqJ6iWhKzMA+AN4QutoiUnqRPq88b7b1UQNxsN2cW33KqVtKKNA2duhor2Gi1OLhp770jaq8VSMRXSiKrEN4k3wfuDWY/bXkq/WSGiNnaSMix+UxfDG8JspQEt7VtKaxPfgx1G/Ka1abG9o9uy4JMPRHPN/LRBdQECUeKRxcyGbZPnA8odTi1aWbnruxvDwcG3wcxZ+XEe+CroObkHbjFKKwlDSbtA+3Ld2vKs71i50K1OAjAS4KLQXeBl4GngA2A0swJbz2t+JFlgGfgHOOfwx+Ori8mKfdLd/W/4FqimEsQC0+yQAAAAASUVORK5CYII=) 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(--mainWhite);
    border: 1px solid #7b7d7e;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    padding: 3px;
}

.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;
}

    .header-fixed .navbar__bottom--parent {
        background-color: var(--mainWhite);
    }

.top__header_line {
    background: linear-gradient(90deg, rgba(140, 172, 131, 1) 0%, rgba(74, 112, 73, 1) 100%);
    padding: 0.5rem;
    color: var(--mainWhite);
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__top--parent {
    background-color: var(--mainGrey);
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.15);
}

.navbar__top {
    display: grid;
    grid-template-columns: 170px 2fr max-content;
    grid-template-rows: auto;
    column-gap: 1rem;
    align-items: center;
}

.navbar__top-logo {
    display: block;
}

.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 1px var(--primary-color);
    }

    .navbar__top-searchbar input {
        display: block;
        padding: 0.5rem 1.5rem;
        border-radius: 10px;
        border: none;
        width: 100%;
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #111827;
        background-color: var(--mainWhite);
        height: 45px;
    }

input,
input::placeholder {
    color: #b0b1b3 !important;
}

.search-btn {
    display: flex;
    position: absolute;
    padding: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 50px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-green) 0%, var(--primary-color) 100%);
    cursor: pointer;
}

.top-text {
    color: #7b7d7e;
    font-size: 1rem;
}

    .top-text a {
        transition: var(--mainTransition);
    }

        .top-text a:hover {
            color: var(--primary-color);
        }

.search-btn svg {
    width: 22px;
    height: 22px;
}

.navbar__top-actions {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: center;
}

.action__btns--parent {
    display: flex;
    gap: 0 7px;
}

.action__btns.cart .number {
    display: block;
    position: absolute;
    top: -7px;
    right: -7px;
    background-color: var(--primary-color);
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--mainWhite);
    font-size: 10px;
    line-height: 1;
    font-weight: bold;
}

.action__btns--parent .action__btns {
    border: none;
    box-shadow: none;
    background-color: var(--mainWhite);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    position: relative;
}

.action__btns svg {
    width: 25px;
    height: 25px;
}

.action__btns.cart svg path {
    stroke: var(--primary-color);
}

.action__btns.favourites svg path {
    stroke: var(--secondary-green);
}

/* .action__btns.cart:hover svg path {
  stroke: var(--primary-color);
}
.action__btns.favourites:hover svg path {
  stroke: var(--orange-color);
} */
.navbar__bottom--parent {
    background-color: var(--mainWhite);
    padding: 0.5rem 1rem !important;
}

.navbar__bottom {
    display: flex;
    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;
    align-items: center;
    width: 100%;
    gap: 0 1.5rem;
}

    .main-nav__list .separator {
        height: 25px;
    }

.main-nav__item.active .main-nav__link {
    color: var(--primary-color);
    font-weight: bold;
}

.main-nav__link {
    font-size: 1rem;
    color: #989898;
    transition: var(--mainTransition);
    padding: 0 0.75rem;
    border-radius: 15px;
    font-size: 13px;
}

    .main-nav__link.category {
        background: linear-gradient(90deg, rgba(140, 172, 131, 1) 0%, rgba(74, 112, 73, 1) 100%);
        height: 36px;
        display: flex;
        align-items: center;
        color: var(--mainWhite) !important;
        border-radius: 8px;
        transition: 0.2s ease-in-out;
        /* font-weight: bold; */
    }

.main-nav__item:hover .main-nav__link.category {
    background: linear-gradient(90deg, rgba(74, 112, 73, 1) 0%, rgba(140, 172, 131, 1) 100%);
}

.main-nav__item:hover .main-nav__link {
    color: var(--primary-color);
}

.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;
    padding: 0.85rem 0.75rem;
    border-radius: 25px;
    background: linear-gradient(-90deg, rgba(138, 198, 76, 1) 0%, rgba(52, 180, 83, 1) 100%);
}

    .social-links span {
        color: var(--mainWhite);
    }

.social__items {
    display: grid;
    grid-template-columns: repeat(4, 18px);
    gap: 0 3px;
    align-items: center;
}

    .social__items a img {
        transition: var(--mainTransition);
    }

    .social__items a:hover img {
        filter: brightness(0);
    }

.bannerSlider .swiper-button-prev,
.bannerSlider .swiper-button-next,
.mainCommentsSlider .swiper-button-prev,
.mainCommentsSlider .swiper-button-next {
    background-color: transparent;
    border: none;
}

.blogSlider {
    padding: 1rem 1rem 5rem 1rem !important;
}

.swiper .swiper-pagination {
    display: flex;
    width: max-content !important;
    margin: 0 auto;
    left: 0 !important;
    right: 0;
}

.bannerSlider .swiper-pagination {
    bottom: 20px !important;
}

.swiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    width: 14px;
    height: 14px;
    border-radius: 20px;
    margin: 0 2px !important;
    opacity: 0.2;
    transition: var(--mainTransition);
}

.swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.bannerSlider .bannerSliderItem img {
    object-fit: cover;
    object-position: bottom;
    /* max-height: 520px; */
    min-height: 180px;
}

@media(max-width:576px) {
    .bannerSlider .bannerSliderItem img {
        object-fit: fill;
    }
}

.sec_between_parent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(220, 225, 220, 0.4) 100%);
}

.sec_between {
    padding-bottom: 8.5rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: #7b7d7e;
}

    .sec_between .why__us__parent {
        display: flex;
        justify-content: space-around;
        background-color: #fff;
        padding: 1.5rem;
        box-shadow: 0 0 50px 0 #8cac837e;
        border-radius: 17px;
        margin-top: -6.5rem;
        position: relative;
        z-index: 1;
    }

        .sec_between .why__us__parent .why__us__item {
            display: flex;
            gap: 0 10px;
            align-items: center;
        }

.product-category__parent {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    column-gap: 0.75rem;
    row-gap: 3rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    position: relative;
    justify-content: space-between;
    justify-items: center;
    top: -6rem;
}

.product-category__item {
    cursor: pointer;
    background-color: #e5ede3;
    border-radius: 20px;
    position: relative;
    /* box-shadow: 0 0 50px 0 #E5EDE3; */
    width: 100%;
    max-height: 195px;
    padding: 1rem 0.5rem 2.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--mainTransition);
}

    .product-category__item .inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        position: relative;
        z-index: 2;
    }

        .product-category__item .inner img {
            width: 100%;
            max-width: 95px;
            height: 80px;
            transition: var(--mainTransition);
        }

        .product-category__item .inner h2 {
            font-size: 0.9rem;
            line-height: 1.7;
            text-align: center;
            color: #000;
            margin: 0;
            position: relative;
            transition: var(--mainTransition);
        }

        .product-category__item .inner h4 {
            font-size: 10px;
            text-align: center;
            color: #7b7d7e;
            margin: 0;
            position: relative;
            transition: var(--mainTransition);
        }

    .product-category__item .product-category__item__arrow {
        position: absolute;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: var(--primary-color);
        bottom: -22.5px;
        transition: var(--mainTransition);
    }

        .product-category__item .product-category__item__arrow svg {
            width: 22px;
            height: 22px;
        }

            .product-category__item .product-category__item__arrow svg,
            .product-category__item .product-category__item__arrow svg path {
                transition: var(--mainTransition);
            }

.categories__tabs__tab.active {
    background: linear-gradient(180deg, rgba(74, 112, 73, 1) 0%, rgba(140, 172, 131, 1) 100%);
    box-shadow: 0 10px 50px 0 #4a704969;
}

    .categories__tabs__tab.active .inner img {
        filter: brightness(0) invert(1);
    }

    .categories__tabs__tab.active .inner h2,
    .categories__tabs__tab.active .inner h4 {
        color: var(--mainWhite);
    }

    .categories__tabs__tab.active .product-category__item__arrow {
        background-color: var(--mainWhite);
    }

        .categories__tabs__tab.active .product-category__item__arrow svg {
            transform: rotate(180deg);
        }

            .categories__tabs__tab.active .product-category__item__arrow svg path {
                fill: var(--primary-color);
            }

.product-category__item:not(.active):hover {
    box-shadow: 0 10px 50px 0 #4a704969;
    transform: translateY(-5px);
}

.categories__tabs__tab.active h2 {
    font-weight: bold;
}

.categories__tabs__content__item {
    display: none;
}

    .categories__tabs__content__item.active {
        display: block !important;
    }

.login-menu__wrapper {
    visibility: hidden;
    background-color: var(--primary-color);
    width: 100%;
    border-radius: 10px;
    transition: all .3s;
}

    .login-menu__wrapper a {
        color: white;
        display: block;
        transition: all .3s;
        margin-bottom: 3px;
    }

.sec__title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #6c7680;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.27);
}

.products-sec {
    padding-bottom: 6.5rem !important;
}

.product__container {
    margin-top: -3.5rem;
}

.products__center {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem 1.25rem;
}

.product__card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-three);
    gap: 0.75rem 0;
    border-radius: 20px;
    height: 100%;
    padding: 0.5rem;
    transition: var(--mainTransition);
    position: relative;
    padding-bottom: 1.75rem;
}

.bestSellerProductsSlider,
.newProductsSlider {
    padding: 2rem 3rem !important;
}

    .bestSellerProductsSlider .product__card,
    .newProductsSlider .product__card {
        background-color: var(--color-three);
        direction: rtl;
    }

.product__card:hover {
    box-shadow: 0 3px 15px 0 #4a704969;
    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 {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
}

.product__show__more {
    position: absolute;
    height: 50px;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-weight: bold;
    font-size: 1rem;
    color: var(--mainWhite) !important;
    background: linear-gradient(90deg, rgba(74, 112, 73, 1) 0%, rgba(140, 172, 131, 1) 100%);
}

    .product__show__more svg {
        width: 28px;
        height: 28px;
    }

/* ------------------------------------------ */
.submenu-products {
    display: none;
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 0px;
    padding: 30px 0 0;
    background: transparent;
    top: 20px;
    z-index: 99;
    min-width: 800px;
}

.categories-section {
    /* width: 26% !important; */
}

.header-fixed .submenu-products {
    top: 23px;
}

.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;
    box-shadow: 0 3px 15px 0 #34b4546a;
}

    .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);
        max-height: fit-content !important;
        max-width: fit-content !important;
    }

#SubmenuProductsTabsContent {
    width: 100%;
    padding-right: 1rem;
    max-height: fit-content !important;
    max-width: fit-content !important;
    overflow-y: hidden !important;
    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: block;
    gap: 15px;
    position: relative;
    list-style-type: none;
    overflow-y: auto;
    overflow-x: hidden;
    height: fit-content;
    max-height: 100%;
    column-count: 3;
}

    .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: fit-content;
        margin-bottom: 1rem;
    }

        .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(--secondary-green);
        font-size: 13px;
        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-right: 5px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.submenu.active > li > .chevron,
.sub-submenu.active > li > .chevron {
    transform: rotate(45deg);
    margin-left: auto;
}

/* -------------------------------------------------- */
.blogs__parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.article-card {
    position: relative;
    background-color: var(--mainWhite);
    padding: 0.75rem;
    padding-bottom: 1.5rem;
    gap: 7px;
    border-radius: 20px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
    transition: var(--mainTransition);
}

    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 3px 20px 0 #4a704969;
    }

.blogSlider .article-card {
    direction: rtl;
}

.article-card .card-breadcrumb {
    padding-right: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
}

    .article-card .card-breadcrumb a {
        display: inline;
    }

    .article-card .card-breadcrumb p {
        color: var(--primary-color);
        font-size: 11px;
        margin: 0;
    }

    .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 p {
    color: #aaa8a8;
    font-size: 12px;
    margin: 0;
}

.article-card img {
    height: auto;
    min-height: 190px;
    max-height: 250px;
    border-radius: 15px;
}

.article-card .internal-card {
    border-radius: 20px;
    color: #6c6c6c;
    font-size: 10px;
    padding: 0.5rem;
}

    .article-card .internal-card .details {
        text-align: right;
    }

        .article-card .internal-card .details p {
            font-size: 0.85rem;
            margin-top: 0.5rem;
            line-height: 1.9;
        }

    .article-card .internal-card h4,
    .article-card .internal-card h2 {
        color: #000;
        font-size: 1.1rem;
        font-weight: bold;
    }

.article-card .btn__secondary.read-more {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 40px;
    font-weight: normal;
    font-size: 13px;
    padding: 0 2.5rem;
    transform: none;
}

/* -------------------------------------------- */
.mainCommentsSlider {
    padding: 1.5rem 3rem !important;
    max-width: 1200px;
}

    .mainCommentsSlider .swiper-button-next {
        right: 0;
    }

    .mainCommentsSlider .swiper-button-prev {
        left: 0;
    }

.mainCommentsSliderItem {
    direction: rtl;
}

.comment__item__parent {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--mainTransition);
}

.comment__text {
    background-color: var(--mainWhite);
    text-align: justify;
    color: #777777;
    border-radius: 20px;
    padding: 1.5rem 1rem 4rem 1rem;
    transition: var(--mainTransition);
}

.comment__details {
    margin-top: -60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
}

    .comment__details img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }

.comment__username {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.comment__usercaption {
    font-size: 12px;
    color: var(--secondary-green);
}

.comment__item__parent:hover {
    transform: translateY(-7px);
}

    .comment__item__parent:hover .comment__text {
        box-shadow: 3px 4px 6px 0 rgba(0, 0, 0, 0.2);
    }

/* -------------------------------------------- */
.faq__accordion__parent {
    display: flex;
    width: 100%;
    gap: 1.25rem;
    justify-content: center;
}

.faq__accordion__col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 1100px;
}

.faq__accordion__item {
    transition: all 0.3s;
}

.faq__accordion__header {
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    background-color: var(--mainWhite);
    border-radius: 12px;
    padding: 15px;
    gap: 0 12px;
    position: relative;
    z-index: 1;
    transition: var(--mainTransition);
}

    .faq__accordion__header .arrow {
        margin-right: auto;
        margin-left: 25px;
        transition: all 0.35s ease-in-out;
        width: 30px;
        height: 30px;
    }

    .faq__accordion__header p {
        margin: 0;
        font-size: 1.1rem;
        color: #6c7680;
        font-weight: bold;
        padding-left: 1rem;
        transition: var(--mainTransition);
    }

.faq__accordion__body {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    font-size: 16px;
    color: #515152;
    padding: 30px 40px 40px 40px;
    margin-top: -25px;
    background-color: #cddec9;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.faq__accordion__item.active {
    transform: translateX(-55px);
}

    .faq__accordion__item.active .faq__accordion__header {
        background-color: #cddec9;
    }

        .faq__accordion__item.active .faq__accordion__header p {
            color: var(--primary-color);
        }

    .faq__accordion__item.active .arrow {
        transform: rotate(-180deg);
    }

    .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);
}

/* ------------------------------------------------ */
.navbar__support {
    display: flex;
    align-items: center;
    gap: 0 12px;
}

.support {
    width: max-content;
    color: var(--secondary-green);
    font-size: 13.5px;
    display: flex;
    flex-direction: column;
    gap: 3px 0;
}

    .support span {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 17px;
    }

.support__svg__parent {
    background-color: #f5f5f5;
    width: max-content;
    border-radius: 10px;
    padding: 12px;
}

    .support__svg__parent svg {
    }

/* -------------------------------------------- */
.footer {
    margin-top: 4.5rem;
}

    .footer .footer__line {
        display: block;
        width: 100%;
        height: 1px;
        background-color: #c1c1c1;
        border-radius: 20px;
    }

.footer__content {
    display: grid;
    grid-template-columns: 3fr 3fr 2fr;
    gap: 20px;
    padding: 1.5rem 0;
}

.footer__content-about {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .footer__content-about a {
        width: 100%;
        height: max-content;
        display: block;
        max-width: 100px;
        min-width: 75px;
    }

    .footer__content-about .about-us-text p {
        font-weight: normal;
        font-size: 0.85rem;
        color: #515152;
        line-height: 2;
    }

.footer__content-links {
    display: flex;
    justify-content: space-around;
    gap: 10px 5px;
}

    .footer__content-links .list {
        display: flex;
        flex-direction: column;
        gap: 12px 0;
    }

.footer .list__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #686868;
    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;
    align-items: center;
    gap: 15px;
    justify-content: end;
}

.cetificate__parent {
    display: grid;
    grid-template-columns: repeat(2, 115px);
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    padding: 0.5rem;
}

.footer__cpr {
    background: linear-gradient(90deg, rgba(74, 112, 73, 1) 0%, rgba(140, 172, 131, 1) 100%);
    position: relative;
    border: none;
    padding: 0.5rem 0;
}

    .footer__cpr .cpr__right,
    .footer__cpr .cpr__left {
        color: var(--mainWhite);
    }

        .footer__cpr .cpr__right a {
            color: #17153b;
        }

        .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: #17153b;
                width: 0;
                height: 2px;
                border-radius: 20px;
                bottom: -3px;
                left: 0;
                right: 0;
                margin: 0 auto;
                transition: var(--mainTransition);
            }

            .footer__cpr .cpr__right a::after {
                background-color: #17153b;
            }

            .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: 1300px) {
    .faq__accordion__col {
        max-width: 900px;
    }

    .faq__accordion__item.active {
        transform: translateX(-30px);
    }
}

@media only screen and (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .navbar__top {
        grid-template-columns: 150px 2fr max-content;
    }

    .main-nav__list {
        gap: 0 1rem;
    }

    .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: var(--mainWhite);
    }

    .action__btns--parent .action__btns {
        background-color: var(--mainGrey);
    }

    .navbar__top {
        grid-template-columns: max-content 120px auto;
        column-gap: 0.75rem;
    }

    .navbar__top-actions {
        margin-right: auto;
        grid-template-columns: max-content max-content;
        grid-template-rows: auto;
    }

    .navbar__bottom--parent {
        position: fixed;
        display: flex;
        width: 280px;
        height: 100%;
        right: -100%;
        top: 0;
        transition: all 0.3s ease-in-out;
        background-color: #ffffff;
        z-index: 10000;
        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;
        padding-top: 2.25rem;
    }

        .main-nav__list > * {
            width: 100%;
        }

    .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;
    }

    .main-nav__item.favourites {
        padding-bottom: 1rem;
    }

    .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;
        border-radius: 5px;
    }

        .search-btn svg {
            width: 15px;
            height: 15px;
        }

    .sec_between .why__us__parent {
        margin-top: -5rem;
    }

        /* .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;
  } */
        .sec_between .why__us__parent .why__us__item {
            font-size: 1rem;
            gap: 0 5px;
        }

            .sec_between .why__us__parent .why__us__item svg {
                width: 40px;
                height: 40px;
            }

    .product-category__parent {
        width: 100%;
        column-gap: 1rem;
        height: 100%;
        grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
        overflow-x: auto;
        border-radius: 0;
        padding: 2rem 0.5rem 2rem 0.5rem;
    }

    .product-category__item {
        box-shadow: none !important;
    }

        .product-category__item .product-category__item__arrow {
            box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
        }

    .product__container {
        margin-top: -5.5rem;
    }

    .products-sec {
        padding-bottom: 6rem !important;
    }

    .sec_between {
        padding-bottom: 5.5rem;
    }

    /* .product__container {
    margin-top: -2rem;
  } */
    .products__center {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 1rem;
    }

    .blogs__parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__content {
        grid-template-columns: repeat(1, 100%);
        row-gap: 2rem;
        justify-items: center;
    }

    .footer__content-about {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

        .footer__content-about .about-us-text {
            text-align: center;
        }

            .footer__content-about .about-us-text p {
                max-width: 550px;
                text-align-last: center;
            }

    /* .footer__content-about p {
    max-width: unset;
  } */
    .footer__content-links {
        width: 100%;
    }

    .footer__content-social {
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

        .footer__content-social .socials__support {
            width: 100%;
            align-items: center;
        }

    .cetificate__parent {
        background-color: var(--mainWhite);
        border-radius: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        justify-content: center;
    }

    .social__items {
        grid-template-columns: repeat(4, 25px);
        gap: 0 7px;
    }

    /* .footer__content-about a {
    margin: -5.5rem auto 0 auto;
  } */
    .faq__accordion__col {
        max-width: 680px;
    }

    .faq__accordion__item.active {
        transform: translateX(-15px);
    }
}

.action__btns--parent .user-menu {
    width: unset;
    height: 40px;
}

@media only screen and (max-width: 768px) {
    .product-category__item .inner {
        gap: 0.35rem 0;
    }

    .products__center {
        gap: 2.75rem 0.75rem;
    }

    .products-sec {
        margin-top: -4.5rem;
    }

    .btn__primary.small {
        width: 40px;
        height: 40px;
    }

    .product__card .btns {
        bottom: -20px;
    }

    /* .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;
    }

    .footer__cpr .cpr__right,
    .footer__cpr .cpr__left {
        width: 100%;
        margin: 0.25rem 0;
        text-align: center;
        font-size: 0.75rem;
    }

    .action__btns--parent .user-menu {
        width: 40px;
        height: 40px;
    }

    .action__btns--parent .action__btns,
    .btn__primary.btn__header {
        width: 40px;
        height: 40px;
    }

    .sec_between .why__us__parent .why__us__item {
        font-size: 1rem;
        gap: 0 5px;
    }

        .sec_between .why__us__parent .why__us__item svg {
            width: 40px;
            height: 40px;
        }

    .sec_between .why__us__parent {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        gap: 1rem;
    }

    .faq__accordion__body {
        padding: 30px 20px 10px 20px;
        margin-top: -25px;
        background-color: #cddec9;
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .faq__accordion__header {
        display: flex;
        justify-content: start;
        align-items: center;
        cursor: pointer;
        background-color: var(--mainWhite);
        border-radius: 12px;
        padding: 10px;
        gap: 0 12px;
        position: relative;
        z-index: 1;
        transition: var(--mainTransition);
    }

        .faq__accordion__header .arrow {
            margin-left: 0;
        }

        .faq__accordion__header svg:not(.arrow) {
            width: 30px;
            height: 30px;
        }

    .faq__accordion__item.active {
        transform: none;
    }

    .mainCommentsSlider {
        padding: 1.5rem 0rem !important;
    }
}

@media only screen and (max-width: 576px) {
    .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;
    }

    .navbar__bottom .action__btns {
        gap: 0 3px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 27px !important;
        height: 27px !important;
    }

    .sec_between .why__us__parent .why__us__item {
        font-size: 12px;
        gap: 0 5px;
        max-width: 150px;
    }

        .sec_between .why__us__parent .why__us__item svg {
            width: 30px;
            height: 30px;
        }

    .sec_between .why__us__parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
        justify-content: space-around;
    }

    .sec_between .why__us__parent {
        margin-top: 0;
    }

    .products-sec {
        padding-bottom: 4rem !important;
    }

    .product-category__parent {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        /* top: 0; */
        width: 100%;
        border-radius: 15px;
        scroll-behavior: smooth;
    }

    .product-category__item .inner h2 {
        font-size: 0.85rem;
    }

    .product-category__item .inner img {
        height: 45px;
    }

    /* .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;
        padding: 1rem;
    }

        .product__card .btns {
            position: relative;
            bottom: unset;
            grid-area: 3 / 2 / 6 / 3;
            align-items: end;
            gap: 10px !important;
        }

    .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 .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%;
    }

    .comment__details {
        margin-top: -45px;
    }

        .comment__details img {
            width: 90px;
            height: 90px;
        }
}

#lblError {
    color: red;
    font-weight: 700;
}

.btn__primary__min {
    min-width: 120px;
}

.nav-link {
    color: var(--primary-color);
}


#formAddress .input-Address {
    max-width: 65%;
    width: 65%;
}

#formAddress .form__lable {
    max-width: 35%;
    width: 35%;
    text-align: right;
}


#formAddress #btn-close {
    color: #fff;
}

#formAddress #AddressReciver {
    width: 175%;
}

@media (max-width: 768px) {
    .sec__title {
        font-size: 1.2rem;
    }
}

user-menu .login-menu__wrapper {
    padding: 18px;
    text-align: right;
}

.user-menu .login-menu__wrapper a {
    margin-bottom: 10px;
}

.user-menu.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: -webkit-left;
}

.btn__primary.btn__header {
    width: fit-content;
}

.btn__primary.btn__header__white {
    width: fit-content;
}

.customers__sec {
    background-color: #a9c7a8;
}

.customersSliderItem {
    background-color: white;
    box-shadow: 0 2px 40px -20px #501524;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    max-height: 210px;
    max-width: 210px;
}

.swiper-slide {
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.user-menu .login-menu__wrapper {
    padding: 18px;
    text-align: right;
    width: max-content;
    position: absolute;
    left: 0;
    z-index: 10;
}

    .user-menu .login-menu__wrapper a {
        margin-bottom: 10px;
    }

.user-menu.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: -webkit-left;
}

.btn__primary.btn__header {
    width: fit-content;
}

@media only screen and (max-width: 600px) {
    .customersSliderItem {
        max-height: 170px;
        max-width: 170px;
        margin: 10px;
    }
}

.customersSliderItem {
    max-height: 170px;
    max-width: 170px;
    margin: 10px;
}

/*brands-section-start*/
.brands .swiper-wrapper {
    height: 180px;
}

.brands .brand-card {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.2s;
    width: 180px;
    background-color: white;
    box-shadow: 0 2px 40px -20px #501524;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

    .brands .brand-card img {
        width: 100px;
    }

.brands .swiper-pagination {
    position: relative;
    bottom: 0;
}

.brands .brands-box {
    background-color: #a9c7a8;
}

/*brands-section-end*/

/* ----------------------- footer-terms-start ------------------- */
.page-title {
    color: var(--primary-color) !important;
}

.footer-terms * {
    font-size: 19px;
    font-weight: 300;
}

.footer-terms p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 30px;
    color: var(--color-text);
    text-align: justify;
}

.footer-terms h1,
.footer-terms h2,
.footer-terms h3,
.footer-terms h4,
.footer-terms h5 {
    color: var(--primary-color);
}

.footer-terms ul,
.footer-terms li {
    font-size: unset;
    color: var(--color-text);
}

.footer-terms ul {
    margin: 10px;
}

.footer-terms img {
    max-width: 100%;
}

.footer-terms ol li {
    list-style: decimal;
}

.footer-terms ol {
    padding-right: 22px;
}

.footer-terms li {
    list-style-position: unset;
    list-style-type: disc;
    margin-bottom: 8px;
}

    .footer-terms li::marker {
        color: #4a7049;
        font-size: 20px;
        font-weight: bold;
    }

.footer-terms a {
    color: #4a7049;
    font-weight: bold;
}

.footer-terms h1 {
    font-size: 30px;
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

.footer-terms h2 {
    font-size: 26px;
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

.footer-terms h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

.footer-terms h4 {
    font-size: 22px;
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

.footer-terms h5 {
    font-size: 20px;
    font-weight: bold;
    margin: 2rem 0 0.2rem;
}

@media (max-width: 576px) {
    .box__tabs__wrapper__contentfooter-termsh3 {
        font-size: 18px;
    }
}

.footer-terms .scroll-table {
    overflow-x: auto;
}

.footer-terms table {
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
}

    .footer-terms table th,
    td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: center;
    }

    .footer-terms table thead tr {
        background-color: #4a7049;
        color: white;
        font-weight: bold;
    }

.footer-terms tabletbody tr:nth-child(even) {
    background-color: #e6e6e6;
}

.footer-terms table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ----------------------- footer-terms-end ------------------- */

@media(min-width: 992px) {
    main {
        min-height: 100vh;
    }
}

/* bottom-navbar-start */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: end;
    padding: 8px 0;
    z-index: 1000;
}

    .bottom-nav a {
        text-decoration: none;
        color: #555;
        text-align: center;
        font-size: 12px;
        flex: 1;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

@media (max-width: 350px) {
    .bottom-nav a {
        font-size: 10px;
    }
}

.bottom-nav a i {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.bottom-nav a:hover,
.bottom-nav a.active {
    font-weight: bold;
}

/* bottom-navbar-end */


.navbar__top {
    grid-template-columns: 170px 500px 2fr;
}

.user-menu.dropdown {
    display: flex;
    align-items: center;
    justify-content: end;
}

.action__btns.cart svg path {
    stroke: #ffffff;
}

@media (max-width: 768px) {
    .navbar__top {
        grid-template-columns: 30px 110px 1fr;
    }

    .action__btns--parent .action__btns,
    .btn__primary.btn__header {
        width: 30px !important;
        height: 30px;
    }
}

.cart-img {
    width: 150px;
    height: 150px;
}

.download-img {
    width: 60px;
    height: 60px;
}

.primary__btn {
    background-color: var(--secondary-green);
    color: white;
    transition: all .3s;
}

    .primary__btn:hover {
        background-color: #686868;
        color: var(--secondary-green);
    }


html,
body {
    width: 100%;
    overflow-x: hidden;
}

.tabel_cart {
    border-collapse: separate;
    border-spacing: 0 13px;
    min-width: auto;
    box-sizing: border-box;
    width: 100%;
}

.cart_shop .tabel_cart th,
.cart_shop .tabel_cart td {
    word-break: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.cart_shop .tabel_cart tbody .desc {
    white-space: normal !important;
}

.cart_shop .tabel_cart tr th,
.cart_shop .tabel_cart tr td {
    width: fit-content;
}

    .cart_shop .tabel_cart tr th:first-child,
    .cart_shop .tabel_cart tr td:first-child {
        width: 30%;
    }

.cart_shop .tabel_cart tr .Total_amount {
    width: 20%;
}

.cart_shop .tabel_cart tr .Unit_amount,
.cart_shop .tabel_cart tr td:last-child {
    width: 10%;
}

.swiperBrands .swiper-wrapper {
    transform: translate(10px, 10px) !important;
    justify-content: center !important;
}

html, body {
    overflow-x: inherit !important;
}

.btn-register-header, .action__btns.cart {
    background: #d3d7da !important;
    color: #4a7049 !important;
    border: 1px solid #4a7049;
}

    .action__btns.cart svg path {
        stroke: #4a7049 !important;
    }

.search-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    color: #393939;
    text-decoration: none;
}

.header-serach {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-bottom: 1px solid #eee;
}

    .header-serach.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.header-search-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

#btnSearch {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    padding: 8px;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .autocomplete-suggestions div {
        padding: 12px 15px;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
    }

        .autocomplete-suggestions div:hover,
        .autocomplete-suggestions div.highlight {
            background: #f5f5f5;
        }

@media screen and (max-width: 1000px) {
    .navbar__top {
        grid-template-columns: 85px 150px 2fr;
    }
}