/********************** CSS Reset *********************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
sidebar,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
sidebar,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a,a:focus, a:hover {
    font-size: 100%;
    color: inherit;
    vertical-align: baseline;
    text-decoration: none;
    -webkit-transition: all .3s ease 0;
    transition: all .3s ease 0;
}
a:focus, a:hover {
    outline: 0 none;
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
}

:focus {
    outline: 0;
}

html {
    scroll-behavior: smooth;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{font-weight: 700}

/******************************************** HOME Page and Overal Styles *******************************************/
/********************** Fonts *********************/
@font-face {
    font-family: 'Primary-Light';
    font-style: normal;
    src: url('../fonts/YekanBakh-Light.woff2') format('woff2');
    font-weight: 300;
    Font-display: swap;
}

@font-face {
    font-family: 'Primary-Regular';
    font-style: normal;
    src: url('../fonts/YekanBakh-Regular.woff2') format('woff2');
    font-weight: 400;
    Font-display: swap;
}

@font-face {
    font-family: 'Primary-Medium';
    font-style: normal;
    src: url('../fonts/YekanBakh-Medium.woff2') format('woff2');
    font-weight: 500;
    Font-display: swap;
}

@font-face {
    font-family: 'Primary-Bold';
    font-style: normal;
    src: url('../fonts/YekanBakh-Bold.woff2') format('woff2');
    font-weight: 700;
    Font-display: swap;
}

@font-face {
    font-family: 'Primary-Heavy';
    font-style: normal;
    src: url('../fonts/YekanBakh-Heavy.woff2') format('woff2');
    font-weight: 900;
    Font-display: swap;
}

/********************** Variables *********************/
:root {
    --white: #fff;
    --black: #000;
    --primary-text-color: #595959;
    --primary-color: #d9c17f;
    --transparent: transparent;
    --primary-light: "Primary-Light", tahoma;
    --primary-regular: "Primary-Regular", tahoma;
    --primary-medium: "Primary-Medium", tahoma;
    --primary-bold: "Primary-Bold", tahoma;
    --primary-heavy: "Primary-Heavy", tahoma;
}

/********************** container *********************/
.container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/********************** body *********************/
body {
    background: var(--white);
    font-family: var(--primary-regular);
    font-size: 14px;
    line-height: 24px;
    color: var(--primary-text-color);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::after {
    content: "";
    background: #d9c17f22;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
}

/********************** some overal classes to use *********************/
.transparent-highlight {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
    opacity: 0;
}

.section-margin {
    margin-bottom: 30px;
}

.section-padding--top {
    padding-top: 20px;
}

.section__title {
    margin-bottom: 30px;
    padding-right: 30px;
    font-family: var(--primary-bold);
    font-size: 22px;
    line-height: 26px;
    color: var(--black);
    position: relative;
}

.section__title::before {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/Layer-9.png) no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    right: 0;
}

/********************** Header *********************/
#main-menu {
    background: var(--white);
    position: relative;
    z-index: 99;
    padding-top: 5px;
}

#main-menu::before {
    content: "";
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    position: absolute;
    top: 0;
}

.header-mobile__wrapper {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand__image {
    width: 150px;
    height: auto;
}

.header-brand__text {
    font-family: var(--primary-regular);
    font-size: 100%;
}

.navbar-toggler {
    width: 75px;
    height: 64px;
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    border: 0;
    outline: transparent;
    cursor: pointer;
}

.nav-icon,
.nav-icon::after,
.nav-icon::before {
    position: relative;
}

.nav-icon,
.nav-icon::after,
.nav-icon::before {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    border-radius: 1px;
    background: var(--primary-color);
    backface-visibility: hidden;
    transition: 0.4s ease-in-out;
}

.nav-icon::before {
    position: absolute;
    top: -6px;
}

.nav-icon::after {
    position: absolute;
    top: 6px;
}

.nav-icon.open,
.open.nav-icon::before,
.open.nav-icon::after {
    transform: rotate(45deg);
}

.nav-icon.open::before {
    transform: translate(0px, 5px) rotate(-90deg);
}

.nav-icon.open::after {
    transform: translate(0px, -5px) rotate(-90deg);
}

.main-menu__wrapper {
    display: none;
}

.main-menu__wrapper--mobile {
    width: 320px;
    height: calc(100vh - 114px);
    padding: 32px;
    background: var(--white);
    border-top: 1px solid var(--primary-color);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 60px;
    justify-content: center;
    align-items: start;
    position: fixed;
    right: -320px;
    transition: right .4s ease;
    z-index: 99;
    overflow: auto;
}

.main-menu__wrapper--mobile.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    right: 0;
}

.header__search-bar {
    width: 100%;
    background: #f6f6f6;
    border: 1px solid rgb(210, 210, 210);
    border-radius: 20px;
    position: relative;
    text-align: left;
}

.header__search-bar--input {
    width: 87%;
    background: #f6f6f6;
    font-family: var(--primary-medium);
    font-size: 14px;
    line-height: 32px;
    text-align: right;
    color: var(--black);
    border: 0;
    border-radius: 20px 0px 0px 20px;
}

.header__search-bar--input::placeholder {
    font-family: var(--primary-medium);
    font-size: 14px;
    line-height: 22px;
    text-align: right;
    color: var(--primary-text-color);
}

.header__search-bar--submit {
    border: 0;
    position: absolute;
    top: 9px;
    right: 10px;
}

.main-menu__wrapper--mobile .main-menu__nav {
    align-self: start;
}

.main-menu__list {
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
}

.main-menu__item {
    width: 100%;
    display: block;
}

.main-menu__nav .menu-item-has-children::after {
    content: '';
    position: absolute;
    display: inline-block;
    background: url('../images/submenu-indicator.svg') no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    top: 16px;
    left: 0;
    transform: rotate(0);
    transition: .5s all ease;
    cursor: pointer;
}

.main-menu__nav .menu-item-has-children.expanded::after {
    transform: rotate(180deg);
}

.main-menu__item.menu-item-has-children .sub-menu {
    margin-right: 16px;
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.menu-item-has-children .sub-menu .main-menu__link {
    position: relative;
}

.menu-item-has-children .sub-menu .main-menu__link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 22px;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 100%;
}

.main-menu__link {
    width: 60%;
    height: auto;
    padding: 12px;
    display: flex;
    justify-content: start;
    align-items: center;
    font-family: var(--primary-regular);
    font-size: 14px;
    color: var(--primary-text-color);
}

.main-menu__link:hover {
    color: var(--primary-color);
}

.main-menu__nav .menu-item-has-children.expanded .main-menu__link {
    color: var(--black);
}

.main-menu__wrapper--mobile .header-left {
    align-items: start;
}

.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 10px;
}

.header-left__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.header-cart,
.header-account {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.header-cart__number {
    width: 16px;
    height: 16px;
    background: #2ebe2d;
    border-radius: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 700px;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-align: center;
}

.header-left__search {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/********************** home-hero *********************/
#home-hero {
    padding: 30px 0;
    background: #f5f5f5;
}

.home-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.home-hero__right {
    /* height: 250px; */
}

.home-hero__left {
    display: grid;
    /* grid-template-columns: 1fr; */
    /* grid-template-rows: repeat(3, 250px); */
    gap: 10px;
}

.home-hero__item {
    /* height: 100%; */
    border-radius: 16px;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.home-hero__item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.home-hero__left .home-hero__item:nth-child(1) {
    grid-column: 1/-1;
}

.home-hero__item--img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.home-hero__item--link {
    padding: 10px;
    font-family: var(--primary-bold);
    font-size: 14px;
    line-height: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: start;
    text-align: start;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: #FFF;
}
.home-hero__item--link:hover{color: #FFF}
/********************** best-selling *********************/
.best-selling__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
}

.best-selling__title {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.best-selling__title--heading {
    font-family: var(--primary-heavy);
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
}

.best-selling__title--date {
    font-family: var(--primary-medium);
    font-size: 12px;
    line-height: 22px;
    color: var(--black);
    display: block;
}

.best-selling__title--link {
    object-fit: contain;
}

.best-selling__swiper {
    width: 100%;
}

.product-card__header {
    display: grid;
    border: 1px solid #f4f4f4;
    border-radius: 8px;
}

.product-card__color {
    margin: 10px 0 0 10px;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    z-index: 1;
}

.product-card__color--item {
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-radius: 100%;
}

.product-card__color--item:not(:last-child) {
    margin-bottom: 3px;
}

.product-card__category {
    margin: 10px 10px 0 0;
    padding: 5px 10px;
    background: #eeeeee;
    border-radius: 6px;
    font-family: var(--primary-medium);
    font-size: 14px;
    color: var(--primary-text-color);
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    z-index: 1;
}

.product-card__image--link {
    grid-column: 1;
    grid-row: 1;
}

.product-card__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-card__heading {
    margin: 10px 0;
    font-family: var(--primary-regular);
    font-size: 14px;
    line-height: 28px;
    color: var(--black);
}

.product-card__footer {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.product-card__price {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.product-card__price--first {
    font-family: var(--primary-regular);
    font-size: 12px;
    color: var(--primary-text-color);
}

.product-card__price--sell {
    font-family: var(--primary-regular);
    font-size: 14px;
    color: var(--primary-text-color);
}

.product-card__discount {
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 6px;
    font-family: var(--primary-regular);
    font-size: 14px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--white);
    box-shadow: 0px 5px 15px rgba(88, 88, 88, 0.3);
    border-radius: 6px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px;
    color: var(--primary-text-color);
}

/********************** ctas *********************/
.ctas__list {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
}

.ctas__item {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.ctas__item--link {
    width: 100%;
    height: 100%;
    display: block;
}

.ctas__item--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************** honors *********************/
#honors {
    background: #333333;
    padding: 30px 0;
}

.honors__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-content: center;
    gap: 20px;
}

.honors__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.honors__item--icon {
    width: 30px;
    height: 30px;
}

.honors__item--number {
    font-family: var(--primary-regular);
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: var(--white);
}

.honors__item--title {
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 26px;
    color: var(--white);
}

/********************** home-gallery *********************/
.home-gallery__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.home-gallery__list:not(:last-child) {
    margin-bottom: 20px;
}

.home-gallery__item {
    max-height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.home-gallery__item--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/********************** why-us *********************/
.why-us__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-us__item {
    border-radius: 16px;
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 10px;
    transition: 0.6s all;
}

.why-us__item:hover {
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.why-us__item--img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}

.why-us__item--body {
    padding: 5px 0 5px 5px;
}

.why-us__item--title {
    margin-bottom: 20xp;
    padding-bottom: 20px;
    font-family: var(--primary-bold);
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-text-color);
    position: relative;
}

.why-us__item--title:after {
    content: "";
    width: 30%;
    height: 1px;
    background: #ccc;
    position: absolute;
    bottom: 10px;
    right: 0;
}

/********************** testimonial *********************/
.testimonial__item--padding {
    padding: 0 10px;
}

.testimonial__item--text {
    margin-bottom: 40px;
    padding: 40px 20px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.testimonial__item--text:after {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    background-image: url(../images/double-quotes.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
    border-radius: 100%;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1), 0px 0px 1px 0px rgba(0, 0, 0, 0.1);
}

.testimonial__item--body {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: 20px 20px;
    gap: 6px 15px;
}

.testimonial__item--img {
    grid-column: 1/2;
    grid-row: 1/-1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.testimonial__item--name {
    grid-column: 2/-1;
    grid-row: 1/2;
    font-family: var(--primary-bold);
    font-size: 16px;
}

.testimonial__item--job {
    grid-column: 2/-1;
    grid-row: 2/3;
}

/********************** Footer *********************/
footer {
    padding: 50px 0 20px;
    position: relative;
}

footer::before {
    content: "";
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    position: absolute;
    top: 0;
}

.footer__title {
    margin-bottom: 20px;
    font-family: var(--primary-bold);
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
}

.footer__wrapper {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 20px;
}

.footer__nav--item {
    font-family: var(--primary-bold);
}

.footer__nav--item:not(:last-child) {
    margin-bottom: 10px;
}

.footer__contact {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    font-family: var(--primary-bold);
}

.footer__address_item {
    padding-right: 20px;
    font-family: var(--primary-bold);
    font-size: 14px;
    position: relative;
}

.footer__address_item:not(:last-child) {
    margin-bottom: 10px;
}

.footer__address_item::before {
    content: "";
    position: absolute;
    background: url(../images/location-sign.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 2px;
    right: 0;
}

.footer__col:nth-child(3) {
    grid-column: 1/-1;
}

.enamad {
    width: 140px;
    display: inline-block;
}

.enamad img {
    width: 100%;
}

.newsletter-social {
    display: inline-block;
}

.newsletter--text {
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 28px;
    color: var(--primary-text-color);
}

.newsletter {
    margin: 30px 0;
    border: 1px solid var(--primary-text-color);
    border-radius: 30px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

#newsletter--input {
    width: 90%;
    padding: 0 20px;
    border: 0;
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 46px;
}

.newsletter--submit {
    position: absolute;
    top: 15px;
    left: 10px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    background: #f3f3f3;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

/********************** Login / Sign-up modal *********************/
.search-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.search-modal__content {
    position: absolute;
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.search-modal__close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.search-modal__close:hover,
.search-modal__close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.search-modal__title {
    display: block;
    font-family: var(--primary-medium);
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 20px;
}

#login-form__phone {
    direction: rtl;
    margin-bottom: 10px;
    padding: 0 20px;
    width: 100%;
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 36px;
    border: 2px solid var(--primary-text-color);
    border-radius: 32px;
}

.login-form__remember {
    margin-bottom: 10px;
}

#login-form button {
    width: 100%;
    background: var(--primary-color);
    border: 0;
    padding: 5px 30px;
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 30px;
    border-radius: 30px;
    cursor: pointer;
}

/******************************************** Single Products *******************************************/
#singel-product {
    padding-top: 30px;
}

.singel-product__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    gap: 40px;
}

.singel-product__gallery {
    position: relative;
}

.singel-product__discount {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    font-family: var(--primary-medium);
    font-size: 16px;
    color: #fff;
}

.singel-product__images--display {
    width: 100%;
}

.singel-product__gallery--select-wrapper {
    display: flex;
}

.singel-product__gallery--item {
    cursor: pointer;
}

.singel-product__gallery--image {
    width: 100%;
    height: 100%;
}

.singel-product__gallery--select .swiper-button-prev,
.singel-product__gallery--select .swiper-button-next {
    width: 27px;
    height: 27px;
    top: 80%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: 700;
}

.singel-product__gallery--select .swiper-button-prev {
    right: initial;
    left: 36px;
}

.singel-product__left {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.singel-product__title {
    margin-bottom: 15px;
    font-family: var(--primary-heavy);
    font-size: 22px;
    line-height: 40px;
    color: var(--black);
}

.star-rating {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.star-rating__svg {
    width: 80px;
    height: 20px;
    display: block;
}

.singel-product__id {
    font-family: var(--primary-bold);
}

.singel-product__features {
    margin-bottom: 30px;
}

.singel-product__features--item {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #aaa;
}

.singel-product__features--item span:nth-child(1) {
    font-family: var(--primary-bold);
}

.singel-product__color--wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.singel-product__color {
    height: 30px;
    display: flex;
    gap: 5px;
}

.singel-product__color--item {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: inline-block;
}

.singel-product__calc--title {
    margin-bottom: 20px;
    padding-right: 26px;
    font-family: var(--primary-bold);
    font-size: 18px;
    color: var(--black);
    position: relative;
}

.singel-product__calc--title::before {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    background: url(../images/metrostation-settings-icon-png-clipart.svg) no-repeat center / contain;
    width: 21px;
    height: 21px;
}

.singel-product__calc--text {
    margin-bottom: 5px;
    padding-right: 20px;
    font-family: var(--primary-medium);
    font-size: 15px;
    color: #ef394e;
    position: relative;
}

.singel-product__calc--text::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    mask: url(../images/chevron-down.svg) no-repeat center / contain;
    -webkit-mask: url(../images/chevron-down.svg) no-repeat center / contain;
    background-color: #ef394e;
    background-size: contain;
    width: 20px;
    height: 20px;
}

.singel-product__model {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    font-family: var(--primary-regular);
    font-size: 14px;
    display: block;
}

.singel-product__model-btn {
    padding: 5px 10px;
    border: 1px solid #aaa;
    border-radius: 8px;
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.singel-product__model-btn::before {
    content: "";
    width: 30px;
    background: #dddddd;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.singel-product__model-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    mask: url(../images/triangle.svg) no-repeat center / contain;
    -webkit-mask: url(../images/triangle.svg) no-repeat center / contain;
    background: #292a2a;
    position: absolute;
    top: 12px;
    bottom: 0;
    left: 10px;
}

.singel-product__model-list {
    width: 100%;
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.singel-product__model-list span {
    display: block;
    padding: 10px;
    cursor: pointer;
}

.singel-product__model-list span:hover {
    background-color: #ddd;
}

.singel-product__select--text,
.singel-product__gold--text {
    margin-bottom: 10px;
}

.singel-product__select,
.singel-product__gold {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.singel-product__select--item {
    width: 50px;
    height: 50px;
    border: 1px solid #888;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.singel-product__select--active:after {
    content: "\2714";
    position: absolute;
    background: #4848483d;
    inset: 0;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    color: var(--white);
}

.singel-product__select--item-img {
    width: 100%;
    height: 100%;
}

.singel-product__gold--item {
    width: 50px;
    padding: 7px 0;
    border: 1px solid #888;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    line-height: 16px;
    transition: 0.5s all
}

.singel-product__gold--active {
    background: var(--black);
    color: var(--white);
}

.singel-product__gold-price {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
    font-size: 12px;
}

.singel-product__gold-price td {
    padding: 5px;
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
}

.singel-product__gold-price td:nth-child(1) {
    border-left: 1px solid #c1c1c1;
    text-align: right;
}

.singel-product__gold-price td:nth-child(2) {
    text-align: left;
}

.singel-product__price-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.singel-product__price--amount {
    font-family: var(--primary-regular);
    font-weight: 700;
    font-size: 26px;
    color: rgb(233, 34, 34);
}

.singel-product__price--currency {
    font-family: var(--primary-regular);
    font-weight: 400;
    font-size: 16px;
    color: rgb(233, 34, 34);
}

.singel-product__stock {
    font-family: var(--primary-medium);
    font-size: 16px;
    color: #39878c;
}

#singel-product__add-to-cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.qty__wrapper {
    display: flex;
    align-items: center;
    gap: 2px;
}

.qty__button {
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #f2f2f2;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.qty__input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
}

.singel-product__add-to-cart--button {
    height: 40px;
    padding: 0 8px;
    background-color: #ef394e;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-family: var(--primary-regular);
    font-size: 14px;
    align-content: center;
}

.singel-box__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 5px;
}

.singel-box__item {
    height: 45px;
    padding: 5px;
}

.singel-box__link {
    height: 100%;
    padding: 5px 10px;
    background: var(--primary-color);
    outline: 5px solid #d9c17f43;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    font-family: var(--primary-bold);
    font-size: 14px;
    color: var(--white);
}

.singel-box__instagram--link {
    height: 45px;
    display: block;
}

.singel-box__instagram--img {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    object-fit: contain;
    object-position: center;
}

.singel-product__tabs--wrapper {
    width: 100%;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    align-items: center;
    gap: 20px;
    position: relative;
}

.singel-product__tabs--btn {
    padding: 10px 30px 10px 10px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 16px;
    font-family: var(--primary-medium);
    font-size: 12px;
    color: var(--black);
    transition: 0.4s all;
    position: relative;
    cursor: pointer;
    text-wrap: nowrap;
}

.singel-product__tabs--btn:hover {
    background: var(--black);
    color: var(--white);
}

.singel-product__tabs--btn::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 10px;
    background-color: var(--black);
    background-size: contain;
    width: 16px;
    height: 16px;
    font-size: 16px;
    transition: 0.3s all;
}

.singel-product__tabs--btn:nth-child(1)::before {
    mask: url(../images/1160356.svg) no-repeat center / contain;
    -webkit-mask: url(../images/1160356.svg) no-repeat center / contain;
}

.singel-product__tabs--btn:nth-child(2)::before {
    mask: url(../images/Layer-646.svg) no-repeat center / contain;
    -webkit-mask: url(../images/Layer-646.svg) no-repeat center / contain;
}

.singel-product__tabs--btn:nth-child(3)::before {
    mask: url(../images/Layer67.svg) no-repeat center / contain;
    -webkit-mask: url(../images/Layer67.svg) no-repeat center / contain;
}

.singel-product__tabs--btn:nth-child(4)::before {
    mask: url(../images/Layer68.svg) no-repeat center / contain;
    -webkit-mask: url(../images/Layer-68.svg) no-repeat center / contain;
}

.singel-product__tabs--btn:nth-child(5)::before {
    mask: url(../images/Layer67.svg) no-repeat center / contain;
    -webkit-mask: url(../images/Layer69.svg) no-repeat center / contain;
}

.singel-product__tabs--btn:hover::before {
    background-color: var(--white);
}

.singel-product__tabs--btn.singel-product-info--active {
    background: var(--primary-color);
    color: var(--white);
}

.singel-product-info__panel--box {
    display: none;
}

.singel-product-info__panel--box.singel-product-info--active {
    display: block;
}

.singel-product-info__panel--title {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 24px;
    color: var(--black);
}

.singel-product__attributes {
    width: 100%;
    margin-top: 30px;
    font-family: var(--primary-regular);
    font-size: 16px;
    color: var(--primary-text-color);
    border-spacing: 20px 10px;
    border-collapse: unset;
}

.singel-product__attributes--td {
    padding: 10px 20px;
    font-family: var(--primary-medium);
    font-size: 12px;
    color: var(--primary-text-color);
    border-radius: 3px;
}

.singel-product__attributes--td:nth-child(1) {
    width: 30%;
    background: #f1f1f3;
}

.singel-product__attributes--td:nth-child(2) {
    width: 70%;
    background: #f8f9fb;
}

.singel-product-info__content-panel h1 {
    margin-bottom: 20px;
    font-family: var(--primary-bold);
    font-size: 26px;
}

.singel-product-info__content-panel h2 {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 24px;
}

.singel-product-info__content-panel h3 {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 22px;
}

.singel-product-info__content-panel h4 {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 20px;
}

.singel-product-info__content-panel h5 {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 18px;
}

.singel-product-info__content-panel h6 {
    margin-bottom: 20px;
    font-family: var(--primary-medium);
    font-size: 16px;
}

.singel-product-info__content-panel p {
    margin-bottom: 20px;
    font-family: var(--primary-regular);
    font-size: 16px;
    line-height: 30px;
}

.singel-product-info__content-panel span {
    margin-bottom: 20px;
    font-family: var(--primary-regular);
    font-size: 14px;
}

.singel-product-info__content-panel img {
    margin-bottom: 20px;
    border-radius: 16px;
}

.singel-product__lightbox {
    overflow-x: auto;
    overflow-y: auto;
    white-space: nowrap;
}

.singel-product__lightbox--wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    overflow: hidden;
}

.singel-product__lightbox--item {
    width: 120px;
    height: 110px;
    border-radius: 16px;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.singel-product__lightbox--item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.singel-product__lightbox--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#modal-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.modal-gallery__wrapper {
    border-radius: 8px;
}

.modal-gallery__one,
.modal-gallery__two {
    margin-left: auto;
    margin-right: auto;
}

.modal-gallery__one {
    width: 300px;
    aspect-ratio: 16/9;
    border-radius: 8px;
}

.modal-gallery__one .swiper-button-next,
.modal-gallery__one .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: #002958;
    border-radius: 4px;
}

.modal-gallery__one .swiper-button-next::after,
.modal-gallery__one .swiper-button-prev::after {
    font-size: 16px;
    line-height: 16px;
    color: var(--white);
}

.modal-gallery__two {
    width: 320px;
    box-sizing: border-box;
    padding: 10px 0;
}

.modal-gallery__item {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.modal-gallery__two .modal-gallery__item {
    width: 33.33%;
    aspect-ratio: 1/1;
    opacity: 1;
    overflow: hidden;
}

.modal-gallery__two .swiper-slide-thumb-active {
    display: none;
}

.modal-gallery__item--img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-packaging__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-packaging__item {
    display: grid;
    border-radius: 16px;
    overflow: hidden;
}

.product-packaging__item--img {
    width: 100%;
    height: 100%;
    grid-column: 1;
    grid-row: 1;
    object-fit: cover;
}

.product-packaging__item--title {
    width: calc(100% - 20px);
    margin-bottom: 10px;
    padding: 10px;
    background: #0000007d;
    font-family: var(--primary-regular);
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    color: var(--white);
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: end;
}

#comments {
    margin-top: 64px;
}

.comments__count {
    display: none;
}

#comment__form {
    margin-bottom: 24px;
}

.comment__form--title {
    margin-bottom: 10px;
    font-family: var(--primary-bold);
    font-size: 18px;
    color: var(--black);
}

.comment__form--text {
    margin-bottom: 15px;
}

#comment__form--name,
#comment__form--email,.comment-input {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--white);
    border: 2px solid #d9c17f65;
    border-radius: 8px;
}

#comment__form--textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--white);
    border: 2px solid #d9c17f65;
    border-radius: 8px;
    display: block;
    resize: none;
}

#comment__form label {
    margin-bottom: 5px;
    font-family: var(--primary-regular);
    font-size: 14px;
    line-height: 22px;
    display: block;
}

.comment__form--submit {
    margin: 16px 0;
    padding: 10px 56px;
    background: var(--primary-color);
    border: 0;
    border-radius: 8px;
    font-family: var(--primary-regular);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--white);
}

.comment__list .comment {
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.comment__list .comment:not(:last-child) {
    border-bottom: 1px solid #d9c17f65;
}

.comment__list .comment .children {
    margin-top: 24px;
    margin-right: 16px;
}

.comment__list .comment .children li {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.comment__list .comment-author {
    font-family: var(--primary-regular);
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    font-style: normal;
    color: var(--secondaryTextColor);
}

.comment__list .comment-author .avatar {
    width: 40px;
    height: 40px;
    float: right;
    margin-right: 0;
    margin-left: 20px;
    border-radius: 100%;
    object-fit: contain;
}

.comment__list .comment-author .fn,
.comment-author--time {
    font-size: 100%;
    font-style: normal;
}

.comment-author--time::before {
    content: "|";
    padding: 0 5px;
}

.comment__list span.says {
    display: none;
}

.comment__list p:not(.comment-respond p) {
    margin-top: 8px;
    margin-right: 60px;
    font-family: var(--primary-regular);
    overflow: hidden;
}

.comment__list .reply {
    margin-top: 16px;
    margin-right: 80px;
    text-align: start;
}

.comment__list .reply .comment-reply-link {
    width: min-content;
    border-radius: 5px;
    font-family: var(--primary-regular);
    font-size: 14px;
    line-height: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.comment__list .reply .comment-reply-link::before {
    content: url(../images/arrow-back.svg);
    display: inline-block;
    width: 24px;
    height: 24px;
    font-size: 24px;
}

/******************************************** Archive Products *******************************************/
#archive-hero {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.archive-hero__wrapper {
    text-align: center;
}

.archive-hero__title {
    margin-bottom: 20px;
    font-family: var(--primary-regular);
    font-size: 18px;
    color: var(--white);
}

.archive-hero__subtitle {
    font-family: var(--primary-bold);
    font-size: 24px;
    color: var(--white);
}

.breadcrumb {
    margin-bottom: 30px;
    background: none;
}

.breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
}

.breadcrumb__item {
    position: relative;
}

.breadcrumb__item:not(:last-child)::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../images/Layer-9.png) no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: -20px;
}

.archive-products__sort {
    margin-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.archive-products__sort--right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.archive-products__sort--discount {
    height: 42px;
    padding: 10px;
    background: var(--white);
    border: 0;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
    font-family: var(--primary-bold);
    font-size: 12px;
    color: rgb(210, 22, 22);
    cursor: pointer;
}

.archive-products__sort--left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-products__sort--number {
    padding: 9px 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--black);
    cursor: pointer;
}

.archive-products__sort--dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.archive-products__sort--dropdown-btn {
    padding: 9px 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
    background-color: var(--white);
    font-size: 12px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.archive-products__sort--dropdown-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 200px;
}

.archive-products__sort--dropdown-list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.archive-products__sort--right .archive-products__sort--dropdown-list {
    left: initial;
    right: 0;
}

.archive-products__sort--left .archive-products__sort--dropdown {
    width: 100px;
}

.archive-products__sort--dropdown-list.show {
    display: block;
}

.archive-products__sort--dropdown-list span {
    color: var(--black);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.archive-products__sort--dropdown-list span:hover {
    background-color: #f1f1f1;
}

.archive-products__divide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.archive-products__filter--switch {
    width: 44px;
    height: 24px;
    margin-bottom: 20px;
    margin-left: 5px;
    position: relative;
    display: inline-block;
}

.archive-products__filter--switch-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.archive-products__filter--switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 34px;
    -webkit-transition: .4s;
    transition: .4s;
}

.archive-products__filter--switch-slider:before {
    content: "";
    height: 20px;
    width: 20px;
    position: absolute;
    left: 2px;
    bottom: 2px;
    background-color: var(--white);
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.archive-products__filter--switch-input:checked+.archive-products__filter--switch-slider {
    background-color: #2196F3;
}

.archive-products__filter--switch-input:focus+.archive-products__filter--switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

.archive-products__filter--switch-input:checked+.archive-products__filter--switch-slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

.archive-products__filter--checkbox:not(:last-child) {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0
}

.archive-products__filter--checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0 0 0 5px;
    border-radius: 18px;
}

.archive-products__filter--checkbox-label {
    color: var(--primary-text-color);
}

.archive-products__filter--item {
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    background-color: var(--white);
    font-size: 16px;
    color: var(--black);
    position: relative;
}

.archive-products__filter--item::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 16px;
    mask: url(../images/chevron-left.svg) no-repeat center / contain;
    -webkit-mask: url(../images/chevron-left.svg) no-repeat center / contain;
    background-color: var(--primary-text-color);
    background-size: contain;
    width: 20px;
    height: 20px;
    transform: rotate(0);
    transition: 0.4s all ease;
}

.archive-products__filter--item.filter--active::after {
    transform: rotate(90deg);
}

.archive-products__filter--item:not(:last-child) {
    margin-bottom: 20px;
}

.archive-products__filter--item.filter--active .archive-products__filter--content {
    display: block;
}

.archive-products__filter--btn {
    font-family: var(--primary-medium);
    font-size: 18px;
    cursor: pointer;
}

.archive-products__filter--content {
    display: none;
    padding-top: 20px;
}

.range-price {
    margin: 10px 0 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.range-price__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.range-price__wrapper:nth-child(1) {
    margin-bottom: 20px;
}

.range-price__wrapper label {
    display: inline-block;
}

.range-price__wrapper--from {
    width: 20px;
    font-family: var(--primary-regular);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-text-color);
}

.range-price__wrapper--currency {
    width: 40px;
    font-family: var(--primary-regular);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-text-color);
}

.range-price__wrapper input {
    padding: 10px;
    border-width: 0 0 1px 0px;
    border-color: var(--primary-text-color);
    width: calc(100% - 80px);
    font-family: var(--primary-regular);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-text-color);
    text-align: center;
    letter-spacing: 1px;
}

.range-price__range {
    margin-bottom: 20px;
}

.range-price__range--slider {
    height: 5px;
    position: relative;
    background-color: #e1e9f6;
    border-radius: 2px;
}

.range-price__range--selected {
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    border-radius: 5px;
    background-color: #1b53c0;
}

.range-price__range--inputs {
    position: relative;
}

.range-price__range--inputs input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -7px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.range-price__range--inputs input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 3px solid #1b53c0;
    background-color: #fff;
    pointer-events: auto;
    -webkit-appearance: none;
}

.range-price__range--inputs input::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 3px solid #1b53c0;
    background-color: #fff;
    pointer-events: auto;
    -moz-appearance: none;
}

.archive-products__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.archive-products__item {
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.archive-product__item--image {
    width: 100%;
    aspect-ratio: 1/1;
}

.archive-products__item--body {
    padding: 10px 20px;
}

.archive-products__item--title {
    margin-bottom: 10px;
    font-family: var(--primary-bold);
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.4px;
}

.archive-products__item--sell {
    margin-bottom: 5px;
    font-family: var(--primary-regular);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 1px;
}

.archive-products__item--footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-products__item--discount {
    padding: 5px 6px;
    background: rgb(210, 22, 22);
    border-radius: 8px;
    font-family: var(--primary-regular);
    font-size: 12px;
    line-height: 12px;
    color: var(--white);
}

.archive-products__item--first {
    font-family: var(--primary-regular);
    font-size: 14px;
    letter-spacing: 1px;
    color: rgb(210, 22, 22);
}

.pagination {
    background: var(--white);
    margin: 50px 0 50px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    gap: 6px;
}

.pagination .page-numbers {
    width: 32px;
    height: 32px;
    background: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--primary-regular);
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    color: var(--primary-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all;
}

.pagination .page-numbers:hover {
    background: var(--primary-color);
}

@media only screen and (min-width: 400px) {
    .archive-products__sort {
        justify-content: space-between;
    }
}

@media only screen and (min-width: 576px) {
    .container {
        max-width: 540px;
        width: 540px;
    }

    .home-hero__right {
        height: initial;
    }

    .home-hero__left {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }

    .why-us__list {
        grid-template-columns: repeat(2, 1fr);
    }

    /******************************************** Single Products *******************************************/
    .singel-product__left {
        grid-template-columns: 1fr 0.8fr;
    }

    .singel-box__instagram--img {
        object-position: right;
    }

    .singel-product__tabs--btn {
        font-size: 14px;
    }

    .modal-gallery__one {
        width: 500px;
    }

    /******************************************** Archive Products *******************************************/
    .archive-products__sort--discount {
        padding: 10px 20px;
        font-size: 14px;
    }

    .archive-products__sort--number,
    .archive-products__sort--dropdown-btn {
        font-size: 14px;
    }

    .pagination .page-numbers {
        width: 46px;
        height: 46px;
    }
}

@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
        width: 720px;
    }

    .section-margin {
        margin-bottom: 40px;
    }

    .product-packaging__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .singel-product__attributes--td {
        font-size: 14px;
    }

    .singel-product__attributes--td:nth-child(1) {
        width: 20%;
    }

    .singel-product__attributes--td:nth-child(2) {
        width: 80%;
    }

    .archive-products__divide {
        grid-template-columns: 1fr 2fr;
    }

    .archive-products__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 992px) {
    body.menu-open {
        overflow: auto;
    }

    body.menu-open::after {
        background: initial;
        z-index: -1;
    }

    .container {
        max-width: 960px;
        width: 960px;
    }

    .section-margin {
        margin-bottom: 60px;
    }

    .section__title {
        margin-bottom: 40px;
    }

    /********************** Header *********************/
    #main-menu {
        box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 4px 8px -2px rgba(0, 0, 0, 0.10);
    }

    .header-mobile {
        display: none;
    }

    .main-menu__wrapper {
        width: 100%;
        height: auto;
        padding: 8px 0;
        display: grid;
        grid-template-columns: 0.3fr 1fr 0.3fr;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header-brand__image {
        width: 100%;
    }

    .main-menu__wrapper--mobile,
    .navbar-toggler {
        display: none;
    }

    .main-menu__list {
        padding: 0;
        position: relative;
        top: initial;
        right: initial;
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
        text-align: right;
    }

    .main-menu__item {
        width: initial;
        display: inline-block;
    }

    .main-menu__list>.main-menu__item:not(:last-child) {
        margin-left: 10px;
    }

    .main-menu__item .main-menu__link {
        width: 100%;
        padding: 12px;
    }

    .main-menu__nav {
        text-align: center;
    }

    .main-menu__nav .menu-item-has-children::after {
        top: 17px;
        left: -4px;
    }

    .main-menu__item.menu-item-has-children .sub-menu {
        max-height: initial;
        margin-right: 0;
        padding: 20px 10px;
        position: absolute;
        right: -50px;
        background: #fafafa;
        box-shadow: 0px 24px 32px 4px rgba(167, 174, 186, 0.12);
        border-radius: 16px;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        user-select: none;
        overflow: visible;
        transition: all 0.4s;
        display: flex;
    }

    .main-menu__item.menu-item-has-children .sub-menu::before {
        content: '';
        position: absolute;
        top: -11px;
        right: 80px;
        mask: url(../images/Subtract.svg) no-repeat center / contain;
        -webkit-mask: url(../images/Subtract.svg) no-repeat center / contain;
        background-color: #fafafa;
        background-size: contain;
        width: 25px;
        height: 11px;
    }

    .main-menu__item.menu-item-has-children .sub-menu {
        width: max-content;
    }

    .main-menu__item .sub-menu .main-menu__item {
        padding: 0;
        margin: 9px 0;
        position: relative;
    }

    .main-menu__item .sub-menu .main-menu__item::before {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--primary-color);
        border-radius: 4px;
        top: 5px;
        right: 0;
    }

    .main-menu__item.menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .menu-item-has-children .sub-menu .main-menu__link {
        padding: 0 15px 0 0;
    }

    .menu-item-has-children .sub-menu .main-menu__link::before {
        display: none;
    }

    .main-menu__full {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .main-menu__full--item {
        padding: 16px;
        background: #F2F2F2;
        border-radius: 8px;
        display: grid;
        grid-template-columns: 200px 300px;
        gap: 12px;
    }

    .main-menu__full--item .category__link {
        background: var(--primary-color);
        color: var(--white);
    }

    .main-menu__full--figure {
        width: 300px;
        height: 220px;
        display: grid;
        position: relative;
    }

    .main-menu__full--figure::after {
        content: "";
        position: absolute;
        background: rgba(0, 0, 0, 0.4);
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 4px;
    }

    .main-menu__full--img {
        width: 100%;
        height: 100%;
        grid-column: 1;
        grid-row: 1;
        border-radius: 4px;
        object-fit: cover;
    }

    .header-brand--mobile {
        display: none;
    }

    .header-brand__link {
        display: block;
    }

    /********************** home-hero *********************/
    #home-hero {
        padding: 45px 0;
    }

    .home-hero__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .home-hero__item--link {
        font-size: 16px;
    }

    /********************** best-selling *********************/
    .best-selling__wrapper {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }

    .best-selling__title--heading {
        width: 120px;
        font-size: 22px;
        line-height: 36px;
    }

    .best-selling__title--date {
        width: 120px;
        font-size: 14px;
        line-height: 24px;
    }

    /********************** ctas *********************/
    .ctas__list {
        grid-template-columns: repeat(3, 1fr);
    }

    /********************** home-gallery *********************/
    .home-gallery__list--one,
    .home-gallery__list--two {
        grid-template-columns: 1fr 1fr 2fr;
    }

    .home-gallery__list--three {
        grid-template-columns: 1fr 1fr 1fr;
    }

    /********************** footer *********************/
    .footer__wrapper {
        grid-template-columns: 0.75fr 2fr 2fr;
    }

    .footer__col:nth-child(3) {
        grid-column: 3/-1;
    }

    /******************************************** Single Products *******************************************/
    .singel-product__wrapper {
        grid-template-columns: 350px 1fr;
    }

    .singel-product__features--item {
        font-size: 16px;
    }

    .singel-product__tabs--btn {
        padding: 15px 50px 15px 20px;
        font-size: 16px;
    }

    .singel-product__tabs--btn::before {
        top: 14px;
        right: 20px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    .singel-product__lightbox--item {
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .modal-gallery__one {
        width: 700px;
    }

    .product-packaging__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    #comments {
        margin-top: 80px;
    }

    .comments__count {
        display: block;
    }

    .comment__list .comment-author .avatar {
        width: 60px;
        height: 60px;
    }

    .comment__list .comment-author .avatar {
        margin-left: 16px;
    }

    .comment__list p:not(.comment-respond p) {
        margin-right: 80px;
    }

    .comment__list .comment-author {
        font-size: 14px;
        line-height: 24px;
    }

    .comment__list .comment .children {
        margin-right: 40px;
    }

    /******************************************** Archive Products *******************************************/
    .archive-products__divide {
        grid-template-columns: 1fr 3fr;
        gap: 30px;
    }

    .archive-products__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
        width: 1140px;
    }

    /********************** why-us *********************/
    .why-us__list {
        grid-template-columns: repeat(4, 1fr);
    }

    /******************************************** Single Products *******************************************/
    .singel-product__wrapper {
        grid-template-columns: 450px 1fr;
    }

    .singel-box__list {
        grid-template-columns: repeat(4, 1fr) 160px;
    }

    .singel-box__instagram--img {
        object-fit: initial;
    }
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1340px;
        width: 1340px;
    }
}


.sub-menu .main-menu__link {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px !important;
    margin-bottom: 5px;
}

.sub-menu .main-menu__item {
    margin: 0 15px !important;
}


.sub-menu .sub-menu {
    position: relative !important;
    right: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: start !important;
    box-shadow: unset !important;
    margin: 0 !important;
    background: transparent !important;
}

.sub-menu .sub-menu .main-menu__item {
    margin: 0px !important;
    margin-top: 10px !important;
}

.sub-menu .sub-menu .main-menu__link {
    margin: 0;
    border-bottom: 0;
    padding: 0px !important;
}

.sub-menu .sub-menu .main-menu__item::before {
    content: unset;
}

.sub-menu {
    display: flex;
    flex-wrap: wrap;
    right: 0 !important;
    max-width: 1000px;
}

.no-submenu::before {
    content: unset !important;
}

.no-submenu .main-menu__link {
    border: 0;
}


@media (min-width:992px) and (max-width:1200px) {
    .sub-menu {
        max-width: 100%;
    }

    .sub-menu .main-menu__item {
        margin: 0 !important;
        width: 25%;
        padding: 0 10px !important;
        white-space: nowrap;
    }

    .sub-menu .sub-menu .main-menu__item {
        width: auto;
        margin: 0px !important;
        margin-top: 10px !important;
        white-space: wrap;
    }
}

@media (max-width:991px) {
    .sub-menu .main-menu__item {
        margin: 0 0px !important;
    }

    .sub-menu .main-menu__link {
        border-bottom: 0;
        padding-bottom: 0px !important;
        margin-bottom: 0;
    }

    .sub-menu.active {
        max-height: max-content !important;
        overflow: unset !important;
        background: #f5f5f5;
        padding: 0 10px;
        padding-bottom: 10px;
    }

    .sub-menu .sub-menu .main-menu__link::before {
        content: unset;
    }

    .sub-menu .sub-menu {
        border-right: 1px solid var(--primary-color);
        padding-right: 15px !important;
    }

    .main-menu__link {
        width: 100%;
    }

    .main-menu__wrapper--mobile {
        padding: 15px;
    }

    .main-menu__item {
        position: relative;
    }

    .menu-item-has-children .main-menu__link::after {
        content: '';
        position: absolute;
        display: inline-block;
        background: url(../images/submenu-indicator.svg) no-repeat;
        background-size: contain;
        width: 12px;
        height: 12px;
        top: 16px;
        left: 0;
        transform: rotate(0);
        transition: .5s all ease;
        cursor: pointer;
    }

    .sub-menu .sub-menu .main-menu__link::after {
        content: unset;
    }

    .no-submenu .main-menu__link {
        padding: 5px 10px !important;
        border: 0;
        padding-top: 10px !important;
    }

    .no-submenu .main-menu__link::after {
        content: unset;
    }

}



@media (min-width:992px) {
    .main-menu__nav .menu-item-has-children::after {
        content: unset;
    }

    .menu-item-has-children .main-menu__link {
        color: #cba16d;
        font-weight: 500;
    }

    .sub-menu .sub-menu .main-menu__link {
        color: var(--primary-text-color);
        font-weight: normal;
    }
    .no-submenu .main-menu__link::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--primary-color);
        border-radius: 4px;
        top: 5px;
        right: 0;
    }

}


.main-menu__link:hover {
    color: var(--primary-color) !important;
}
/*autocompelete search*/
#search-list {
    list-style: none;
    padding: 0;
    width: 89%;
    position: absolute;
    z-index: 999;
    text-align: right;
    max-height: 400px;
    overflow-y: scroll;
    direction: ltr;
    margin-right: 5%;
    margin-top: 1px;
}

#search-list li:first-of-type {
    padding-top: 15px;
}

#search-list li {
    padding: 10px;
    background: #4c4c4c;
    direction: rtl;
}

#search-list li a {
    color: #fff;
    font-size: 13px
}

#search-list li a:hover {
    color: #b2935a;
}

.single-product {
    padding: 7px 7px 0;
    position: relative;
    transition: all .3s ease 0;
    border-radius: 3px;
    min-height: 320px;
    border: 1px solid #ccc;
}
.search-products .single-product {
    margin-top: 50px;
    direction: rtl;
    border: 1px solid #ccc;
}
.single-product .product-img {
    display: inline-block;
}
.single-product .product-img .hover-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.single-product .product-img:hover .hover-image {
    display: inline;
}
img {
    max-width: 100%;
    height: auto;
}
.main-area{
    margin-top: 10px;
}
.article .tiny_content {
    font-size: 14px !important;
    text-align: justify !important;
    margin-top: 15px;
    -webkit-box-shadow: 2px 2px 5px 2px rgba(15, 15, 15, 0.28);
    -moz-box-shadow: 2px 2px 5px 2px rgba(15, 15, 15, 0.28);
    box-shadow: 2px 2px 5px 2px rgba(15, 15, 15, 0.28);
    padding: 20px;
    border-radius: 3px;
    line-height: 28px;
}
p {
    margin: 0 0 15px;
}

.m_t_10 {
    margin-top: 10px
}

.m_t_15 {
    margin-top: 15px
}

.m_t_20 {
    margin-top: 20px
}

.m_t_50 {
    margin-top: 50px
}

.m_b_10 {
    margin-bottom: 10px
}

.m_b_15 {
    margin-bottom: 15px
}

.m_b_20 {
    margin-bottom: 20px !important
}

.m_b_25 {
    margin-bottom: 25px !important
}

.m_b_30 {
    margin-bottom: 30px !important
}

.m_r_10 {
    margin-right: 10px
}

.m_r_15 {
    margin-right: 15px
}

.m_r_20 {
    margin-right: 20px
}

.m_l_10 {
    margin-left: 10px
}

.m_l_15 {
    margin-left: 15px
}

.m_l_20 {
    margin-left: 20px
}

.text-justify {
    text-align: justify
}

.p_20 {
    padding: 20px !important
}

.p_50 {
    padding: 50px !important
}

.p_r_10 {
    padding-right: 10px
}

.h_20 {
    height: 20px
}

.pl-5 {
    padding-left: 5px
}

.pt-5 {
    padding-top: 5px
}

.pt-10 {
    padding-top: 10px
}

.pb-5 {
    padding-bottom: 5px
}

.pb-10 {
    padding-bottom: 10px
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-5 {
    margin-bottom: 5px
}

.mr-5 {
    margin-right: 5px
}

.mr-10 {
    margin-right: 10px
}

.ml-5 {
    margin-left: 5px
}

.ml-10 {
    margin-left: 10px
}

.mb-25 {
    margin-bottom: 25px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-50 {
    margin-bottom: 50px !important
}


.section_right_box {
    border: solid thin #efefef;
    overflow: hidden;
    background-color: #fff;
    box-shadow: #e2e2e2 2px 2px 2px;
    display: grid;
    height: 400px;
    max-width: 300px;
    margin: 0 auto;
}

.section_title h4 {
    border-bottom: 2px solid #0083e2;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
    display: inline-block;
    padding-left: 25px
}

.section_right_box img {
    margin: 15px auto 0
}

.section_right_box h2 {
    color: #4b4b4b;
    text-align: right;
    width: 100%;
    height: 30px;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px
}

.section_right_box .content {
    display: inline-block;
    padding: 10px;
    margin-top: 0;
    height: 115px;
    overflow: hidden;
    margin-bottom: 10px;
    color: #4a4a4a !important;
    overflow: hidden;
    text-align: justify
}

.section_right_box .show_date {
    position: absolute;
    left: 10px;
    bottom: 40px;
    color: #fcfcfc;
    font-size: 12px;
    direction: ltr;
    background-color: #7dc1dd;
    padding: 2px 3px;
    border-radius: 2px
}
.title-border {
    border-top: solid thin silver;
    margin-top: -16px
}
.section-aside {
    margin-top: 19px
}
.tag-area, .box_manufacrurer, .tag-area, .usefull-product-slide, .shop-filter {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    z-index: 1000;
    border-top-width: 2px;
    min-height: 131px;
}
.area-title {
    padding: 0 0 10px;
    width: 100%;
    text-align: right;
}
.area-title h3 {
    border-bottom: 1px solid #ddd;
    color: #666;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    padding: 20px;
    text-transform: uppercase;
    direction: rtl;
}

#sidebar {
    width: 100%
}

#sidebar .subcat {
    height: 28px;
    line-height: 28px;
    background: #666 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAICAYAAAAm06XyAAAAyklEQVQYlXVRMQ6EIBDktUtBNCT8wQegjZZa0dFpwhNoaUiUhEcQyrnqzHHnFdPszGxmZxkRYRxHeO8hhAAR/YUQAt57TNMEIgKb5xmlFNRaEUJA3/ePxq7rEEJArRWlFCzLAuacQ631RowRUsrGKKVEjLHROefAOOfY970hruuCUgpEBKUUzvNs+OM4wDkHe2+31jaCnDOGYUDOuZlba+9E7DOeMaYRfsMY05zDvotZ1/XRuG3bT4k/ZiKC1hopJZRSkFKC1vrxAy9rzl+1ndCayAAAAABJRU5ErkJggg==) no-repeat 12px 50%;
    color: #fff;
    text-align: right;
    margin: 1px;
    direction: rtl
}

#sidebar .subcat span {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 12px
}

#sidebar .basedon {
    text-align: right;
    color: #3c3c3c;
    padding: 5px 0 10px
}

#sidebar .basedon span {
    margin-right: 15px;
    vertical-align: middle;
    font-size: 12px;
    text-shadow: 0 0 1px rgba(0, 0, 0, .4)
}

#sidebar .pricelist {
    text-align: center;
    height: 30px;
    padding-top: 7px;
    padding-bottom: 15px
}

#sidebar .pricelist .ui-slider {
    position: relative;
    width: 210px;
    height: 7px;
    margin: 0 auto
}

#sidebar .pricelist .ui-slider #amount {
    position: absolute;
    top: 12px;
    direction: rtl;
    width: 213px;
    right: -2px;
    font-size: 8pt
}

#sidebar .pricelist .ui-slider #amount .minprice {
    float: left;
    text-align: left
}

#sidebar .pricelist .ui-slider #amount .minweight {
    float: left;
    text-align: left
}

#sidebar .pricelist .ui-slider #amount span {
    width: 50%;
    font-family: Vazir-Light
}

#sidebar .pricelist .ui-slider #amount .maxprice {
    float: right;
    text-align: right
}

#sidebar .pricelist .ui-slider #amount . maxweight {
    float: right;
    text-align: right
}

#sidebar .pricelist .ui-slider .ui-slider-handle {
    position: absolute;
    top: -5px;
    margin-left: -.75em;
    width: 14px;
    height: 14px;
    cursor: pointer;
    z-index: 2;
    border: 0
}

#sidebar .pricelist .ui-slider .left {
    background-position: left top
}

#sidebar .pricelist .ui-slider .right {
    background-position: right top;
    margin-left: -16px
}

#sidebar .pricelist .ui-slider .ui-slider-range {
    height: 7px;
    background: url(../images/ui-widget-bg.png) no-repeat 0 -34px;
    border: 0;
    display: block;
    font-size: .7em;
    position: absolute;
    z-index: 1
}

#sidebar .sep {
    height: 1px;
    background-color: #ccc;
    margin: 15px
}

#sidebar li {
    padding: 4px 15px 0 0;
    position: relative;
    margin: 0;
    list-style: none;
    border-width: 0
}

#sidebar .checkbox-wrapper {
    cursor: pointer;
    display: inline-block;
    position: relative;
    white-space: nowrap
}

#sidebar .checkbox-icon {
    height: 20px;
    right: -1px;
    margin-top: -10px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 20px
}

#sidebar .checkbox-wrapper .checkbox-input {
    -moz-appearance: none;
    cursor: pointer;
    height: 100%;
    right: 0;
    opacity: 0;
    outline: 0 none;
    position: absolute;
    top: 0;
    width: 100%;
    vertical-align: middle
}

#sidebar input {
    vertical-align: middle
}

#sidebar .checkbox-label {
    padding: 0 25px;
    cursor: pointer;
    font-size: 8pt;
    font-family: tahoma;
    text-shadow: initial
}

.widget-search input[type="text"] {
    border: 1px solid #DEDEDE;
    border-radius: 0;
    color: #202020;
    outline: none;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 12px 10px;
    width: 96%;
    margin: 0 3px
}

.widget-search input[type="submit"] {
    background-color: rgba(0, 0, 0, 0);
    border: 0 none;
    color: #8d8d8d;
    cursor: pointer;
    display: inline-block;
    float: right;
    font-family: "FontAwesome", sans-serif;
    margin: 0;
    outline: 0 none;
    white-space: nowrap;
    padding: 0 3px;
    text-decoration: none;
    -webkit-transition: all .25s ease 0;
    position: absolute;
    top: 10px;
    right: 10px
}

.section-des {
    box-shadow: 1px 1px 3px 3px #ddd;
    padding: 20px 15px;
    text-align: justify;
    line-height: 2;
    border-radius: 4px;
    margin-top: 5px
}
.pagination2 {
    display: inline-block;
    padding-left: 0;
    margin: 10px 0;
    border-radius: 1px
}

.pagination2 ul li {
    display: inline-block
}

.pagination2 ul li a {
    background: #fff none repeat scroll 0 0;
    display: block;
    height: 30px;
    line-height: 18px;
    text-align: center;
    color: #666;
    border-color: #bfbfbf;
    font-weight: 500
}

.pagination2 .pagination-active a, .pagination2 ul li a:hover {
    background: #5ba3e2 none repeat scroll 0 0;
    color: #fff;
    border-color: #70a2ce
}
.btn-main {
    color: #FFF;
    background-color: #2F2929;
    border: 2px solid #2F2929;
    font-size: 13px;
}
.btn-main:hover {
    opacity: 0.9;
    color: #fff;
    border: 2px solid #2F2929;
    font-size: 13px;
}
.columns-container{margin: 15px 0;}


.search-name-box {
    background-color: black;
    text-align: center;
}

.search-name-box form {
    padding: 50px;
    color: white;
}

.search-name-box form input::-webkit-input-placeholder {
    text-align: center;
}

.search-name-box form input {
    margin: 35px 0px;
    height: 45px;
    border-radius: 5px;
    font-size: 20px;
}

.search-name-box form button {
    width: 100%;
    /*margin: 35px 0px;*/
    height: 45px;
    background-color: #926e28;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    color: #c8c8c8;
}

.search-name-box form h1 {
    margin: 20px;
    font-weight: bolder;
    font-size: 38px;
    line-height: 1.4;
}

@media (max-width: 800px) {
    .search-name-box form h1 {
        font-size: 34px;
    }

    .floatright {
        float: unset;
    }
    .search-name-box #logo{display: none}
}
.archive-products__sort--number select{
    border: 0;
    height: 24px;
    outline: none;
    padding: 0 5px;
    font-family: var(--primary-regular);
    cursor: pointer;
}


.details_fields {
    direction: rtl;
    margin-top: 12px;
    font-size: 6px;
}

.sizes_fields {
    direction: rtl;
    font-size: 30px;
}

.marks_fields {
    direction: rtl;
    font-size: 6px;
}

.models_fields {
    direction: rtl;
    font-size: 14px;
}

.golds_fields {
    direction: rtl;
    font-size: 14px;
}

.details_fields span:first-of-type {
    margin-bottom: 10px;
    font-size: 16px;
}

.sizes_fields span:first-of-type {
    margin-bottom: 10px;
    margin-top: 15px;
    display: block;
    font-size: 16px;
}

.marks_fields span:first-of-type {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
}

.models_fields span:first-of-type {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
}

select#product_model {
    width: 300px !important;
}

.golds_fields span:first-of-type {
    margin-bottom: 10px;
    /* display: block; */
    /* margin-top: 20px; */
    /* font-size: 16px; */
}

input.radio_color, input.radio_mark {
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    position: absolute;
}

.pcolor2 {
    cursor: pointer;
    padding: 0px 13px;
    margin: 0px 3px 6px 0px;
    height: 30px;
    vertical-align: middle;
    border-radius: 4px;
    z-index: 0;
}

.pmark2 {
    cursor: pointer;
    padding: 0px 13px;
    margin: 0px 3px 6px 0px;
    height: 30px;
    vertical-align: middle;
    border-radius: 4px;
    z-index: 0;
}

input.radio_size {
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    position: absolute;
}

.psize2 {
    cursor: pointer;
    padding: 19px 5px;
    margin: 0px 3px 6px 0px;
    vertical-align: middle;
    border-radius: 4px;
    text-align: center;
    color: #2F2F29;
    font-size: 1.15rem;
    border: 1px solid #E5E5E5;
    width: 62px;
    height: 62px;

}

input.radio_gold {
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    position: absolute;
}

.pgold2 {
    cursor: pointer;
    padding: 10px 5px;
    vertical-align: middle;
    border-radius: 4px;
    text-align: center;
    color: #2F2F29;
    font-size: 13px;
    border: 1px solid #E5E5E5;
    width: 66px;
    height: 66px;
    margin-bottom: 7px;
    justify-content: center;
    align-content: center;
}
.golds_fields label {
    vertical-align: middle;
    padding-right: 5px;
}
.golds_fields input[type='radio']:checked + label {
    position: relative;
    background: #2F2929;
    color: #fff;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.sizes_fields input[type='radio']:checked + label {
    position: relative;
    background: #2F2929;
    color: #fff;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.details_fields input[type='radio']:checked + label {
    position: relative;
    color: #fff;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.marks_fields input[type='radio']:checked + label {
    position: relative;
    color: #fff;
    border-color: rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.pelak-text {
    font-size: 14px !important;
    color: #f00;
    display: none
}

.silver-text {
    font-size: 14px !important;
    color: #f00;
    display: none
}

.g-text {
    font-size: 14px !important;
    color: #f00;
    display: none
}

.gold-text {
    display: inline-block !important;
}
.btn-primary{
    background: #BAA772;
    border-color: #BAA772;
}

li.main-menu__item.menu-item-has-children {
    position: relative;
    right: 0;
}

@media only screen and (min-width: 992px) {
    .main-menu__wrapper {
        gap: 0;
    }

    .main-menu__list>.main-menu__item:not(:last-child) {
        margin-left: 5px;
    }

    .menu-item-has-children .main-menu__link:after {

        content: "\f107";
        font: normal normal normal 14px / 1 FontAwesome;
        position: absolute;
        left: 0;
    }

    .sub-menu .main-menu__link:after {
        content: unset;
    }
    /* new  */
    .menu-item-has-children .main-menu__link {
        color: #444;
        font-weight: 500;
    }
}

.zemanat img{}
.zemanat .heading{font-size: 18px;font-weight: 700;color: #000}
.zemanat p{font-size: 15px}
.old-price{color: #666}
.singel-product-desc-box{border: 1px solid #AAA;border-radius:10px;padding: 10px}
.new-box {
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.new-box-title-1 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
}


.new-box-title-2 {
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

.new-box-text {
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.new-box-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}


.new-input {
    width: 100%;
    background: #ececec;
    height: 42px;
    border-radius: 35px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    margin-top: 15px;
    font-size: 15px;
    transition: 0.3s;
}

.new-input:focus {
    background: #f3f3f3;
    border-color: var(--primary-color);
}

.new-textarea {
    width: 100%;
    background: #ececec;
    border-radius: 20px;
    padding: 10px 15px;
    border: 1px solid #ccc;
    margin-top: 15px;
    font-size: 15px;
    transition: 0.3s;
}

.new-textarea:focus {
    background: #f3f3f3;
    border-color: var(--primary-color);
}



.new-check {
    display: flex;
    align-items: center;
    width: max-content;
    margin-top: 20px;
    font-size: 16px;
    cursor: pointer;
}

.new-check input {
    display: none;
}

.new-check div {
    background: #ececec;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
}

.new-check input:checked+div:after {
    content: "\f00c";
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: 20px;
    color: #67b22e;
}

.nc-box {
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.nc-box-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nc-box-star {
    color: #fab600;
    font-size: 16px;
}

i.empty {
    color: #ccc;
}

.nc-box-name {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.nc-box-text {
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    margin-top: 5px;
}

.nc-box-product {
    background: #767676;
    width: max-content;
    color: #fff;
    margin-top: 10px;
    padding: 2px 10px;
    border-radius: 4px;
}

.nc-box:nth-child(even) {
    background: #f2f2f2;
    border: 1px solid #d0d0d0;
}

.new-comment-body {
    margin-bottom: 15px;
}

.new-form-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 25px;
    border-radius: 8px;
    margin-top: 16px;
    transition: 0.3s;
}

.new-form-btn:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: #000;
}



/* rating */


.rating {
    border: none;
    display: flex;
}

.rating>input {
    display: none
}

.rating>label:before {
    margin: 5px;
    font-size: 1.8em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005"
}

.rating>.half:before {
    content: "\f089";
    position: absolute
}

.rating>label {
    color: #ddd;
    width: auto !important
}

.rating>input:checked~label,
.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #FFD700
}

.rating>input:checked+label:hover,
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
.rating>input:checked~label:hover~label {
    color: #FFED85
}

@media (max-width:767px) {
    .new-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .new-box-title-1 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .new-box-text {
        font-size: 14px;
    }

    .new-box-title-2 {
        font-size: 16px;
    }

    .new-box-flex {
        flex-direction: column;
        margin-bottom: 0;
    }

    .new-input {
        font-size: 14px;
    }

    .new-check {
        margin-top: 10px;
        padding-top: 0;
    }

    .nc-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .nc-box-text {
        font-size: 14px;
    }

    .nc-box-name {
        font-size: 15px;
    }

}
@media (max-width:991px) {
    .header-cart .header-cart__number {
        display: none;
    }

    .header-cart .header-left__text {
        display: none;
    }

    .navbar-toggler {
        width: 44px;
        padding: 0;
        height: 20px;
    }

    .header-brand__link.transparent-highlight {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header-mobile__wrapper {
        padding: 10px 0;
    }
    .header__search-bar {
        margin-bottom: 10px;
    }
    .header-mobile {
        position: fixed;
        width: 100%;
        background: #fff;
        z-index: 999;
        top: 0;
    }
    .main-menu__wrapper--mobile {
        height: 100%;
        top: 125px;
    }
    .header-brand__text {
        margin: 0;
    }
}
.p-status-no{color:rgb(233, 34, 34)}
.myCart.empty{background: none !important;}
.testimonial-all{
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    margin-top: -64px;
    left: 0;
}
.testimonial-all:hover{
    font-size: 22px;
}
.singel-product-short-desc{

}
.archive-products__item {
    position: relative;
}

.archive-products__item img {
    transition: 0.5s !important;

}

.archive-products__item:hover img {
    transform: unset !important;
}

.archive-products__item-img-2 {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
}

.archive-products__item:hover .archive-product__item--image {
    opacity: 0;
}

.archive-products__item:hover .archive-products__item-img-2 {
    opacity: 1;
}
.unavailable{
    text-align: center;
    background: #a3a3a3;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 4px;
    font-size: 22px;
}
.snapp-btn{
    padding: 0 !important;
    text-align: right !important;
    margin: 20px 0 !important;
    width: 100% !important;
    background: #eef4f9 !important;
    color: #2e2e2e !important;
    font-weight: 600 !important;
    cursor: default !important;
    /* border: 2px solid #008efa !important; */
    font-size: 15px;
    border-radius: 0;
}
.snapp-btn:active{
    box-shadow: none;
    -webkit-box-shadow: none;
}
.snapp-btn img{
    padding: 0;
}
.snapp-txt{
    padding: 8px 6px;
    display: inline-block;
}
.snapp-desc{
    color: #777;
    font-size: 12px;
}
.trust-product-row {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.trust-product-icon {
    width: 38px;
    margin-left: 5px;
}

.trust-product-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.trust-item-body {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.trust-item {
    width: 100%;
    border-right: 1px solid #bebebe;
    padding-right: 15px;
}

.trust-item:first-child {
    border-right: unset;
    padding-right: 0;
}

.trust-item-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.trust-item-text {
    font-size: 14px;
    color: #838383;
    margin-top: 5px;
    display: block;
}

.btn-telegram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #1d97c9;
    border-radius: 8px;
    padding: 6px;
    margin-top: 30px;
    color: #1d97c9;
    transition: 0.3s;
    font-size: 14px;
}

.btn-telegram-inner {
    display: flex;
    align-items: center;
}

.btn-telegram-icon {
    width: 31px;
    margin-left: 7px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.btn-telegram:hover {
    background: #1d97c9;
    color: #fff;
}

@media (max-width:767px) {
    .trust-product-row {
        margin-top: 5px;
    }

    .trust-product-icon {
        width: 30px;
    }

    .trust-product-title {
        font-size: 16px;
    }

    .trust-item-title {
        font-size: 13px;
    }

    .trust-item-text {
        font-size: 13px;
    }

    .btn-telegram {
        margin-top: 20px;
    }
}


.tab-info-body {
    display: flex;
    flex-wrap: wrap;
}

.tab-info-item {
    display: flex;
    background: #fff;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 4px #00000078;
    border-radius: 6px;
    height: 100%;
    padding: 10px;
    justify-content: center;
    transition: 0.3s;
}

.tab-info-item:hover{
    box-shadow: 0 0 6px #00000078;
}

.tab-info-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.tab-info-item span {
    text-align: center;
}


.mt-tab {
    margin-top: 30px;
}

@media (max-width:767px) {
    .mt-tab {
        margin-top: 20px;
    }

    .tab-info-body {
        margin-bottom: 20px;
    }

    .tab-info-item span {
        font-size: 12px;
    }


    .tab-info-item img {
        width: 60px;
        height: 60px;
    }

}
