* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: var(--primary-color);
    font-family: yekan-regular, sans-serif;
    font-size: var(--normal-font-size);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

:root {
    --primary-color: rgba(8, 10, 56, 0.89);
    --scondry-color: #767790;
    --red-color: #FF6A6AFF;
    --blue-color: #377DFFFF;
    --green-color: #66BB6A;
    --orange-color: #FFA726FF;
    --yellow-color: #fff;
    --gray-color: #F1F2F4;
    --purple-color: #B183F8;
    --navy-blue-color: #3c4b6d;
    --sky-blue-color: #4ca7cd;
    --very-small-font-size: 12px;
    --small-font-size: 13px;
    --normal-font-size: 14px;
    --large-font-size: 16px;
    --x-large-font-size: 18px;
    --xx-large-font-size: 20px;
    --xxx-large-font-size: 22px;
    --xxxx-large-font-size: 24px;
    --small-radius: 5px;
    --normal-radius: 10px;
    --large-radius: 15px;
    --x-large-radius: 20px;
    --xx-large-radius: 25px;
    --xxx-large-radius: 30px;
    --xxxx-large-radius: 35px;
    --small-space: 5px;
    --normal-space: 10px;
    --large-space: 15px;
    --x-large-space: 20px;
    --xx-large-space: 25px;
    --xxx-large-space: 30px;
    --xxxx-large-space: 35px;
    --small-width: 375px;
    --medium-width: 736px;
    --large-width: 1024px;
    --x-large-width: 1200px;
    --xx-large-width: 1600px;
}

::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #949494;
}

@font-face {
    font-family: yekan-regular;
    src: url("../fonts/yekan-regular.woff");
}

.main {
    width: 100%;
    max-width: var(--xx-large-width);
    padding: var(--normal-space) 70px;
    margin: 0 auto;
}

.header {
    padding: var(--normal-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header .search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header .search .logo {
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: var(--x-large-space);
}

.header .search .logo img {
    width: 100%;
}

.header .search .search-box {
    width: 600px;
    height: 45px;
    background: var(--gray-color);
    border-radius: var(--normal-radius);
    padding: var(--normal-space) var(--large-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header .search .search-box label {
    margin-left: var(--normal-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header .search .search-box label i {
    color: var(--scondry-color);
}

.header .search .search-box input {
    width: 100%;
    background: transparent;
    outline: none;
    border: none;
}

.header .account {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header .account i {
    font-size: var(--xxx-large-font-size);
}

.header .account .card {
    margin-right: var(--x-large-space);
    position: relative;
}

.header .account .card span {
    display: inline-block;
    text-align: center;
    line-height: 12px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: -2px;
    font-size: 8px;
    color: white;
    background: var(--red-color);
}

.mobile-header {
    display: none;
}

.nav {
    margin: var(--normal-space) 0;
}

.nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
}

.nav > ul > li {
    padding: var(--small-space) var(--normal-space);
    margin-left: var(--small-space);
    position: relative;
}

.nav > ul > li > a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: var(--normal-space);
}

.nav > ul > li a span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.nav > ul > li a i {
    padding-left: var(--small-space);
    font-size: var(--large-font-size);
}

.nav > ul li:nth-child(1) a i {
    color: var(--blue-color);
}

.nav > ul li:nth-child(2) a i {
    color: var(--red-color);
}

.nav > ul li:nth-child(3) a i {
    color: var(--orange-color);
}

.nav > ul li:nth-child(4) a i {
    color: var(--green-color);
}

.nav > ul li:nth-child(5) a i {
    color: var(--purple-color);
}

.nav li ul {
    display: none;
    min-width: 170px;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    z-index: 9;
    border-radius: 0 0 var(--normal-radius) var(--normal-radius);
    -webkit-box-shadow: 0 8px 10px rgb(0 0 0 / 10%);
            box-shadow: 0 8px 10px rgb(0 0 0 / 10%);
    overflow: hidden;
}

.nav li:hover ul {
    display: block;
}

.nav li ul li a {
    padding: var(--normal-space) var(--small-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid var(--gray-color);
}

.nav li ul li:last-child a {
    border-bottom: none;
}

.nav li ul li a:hover {
    background: var(--gray-color);
}

.nav li ul li a img {
    margin-left: var(--small-space);
}

.slider {
    width: 100%;
    margin-top: var(--xx-large-space);
    direction: ltr;
}

.slider .owl-stage-outer {
    border-radius: var(--xxx-large-radius);
    overflow: hidden;
    cursor: -webkit-grab;
    cursor: grab;
}

.slider .item img {
    width: 100%;
}

.slider .item {
    width: 100% !important;
    overflow: hidden;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider .item img {
    display: block;
    width: 1600px !important;
    height: auto !important;
}

.slider:hover .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slider .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    display: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 !important;
}

.slider .owl-nav button.owl-prev, .slider .owl-nav button.owl-next {
    width: 70px !important;
    height: 40px !important;
    background: #fff !important;
    padding: 0 var(--large-space) !important;
    border-radius: var(--normal-radius);
    text-align: left !important;
    font-size: var(--xx-large-font-size);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
            box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.slider .owl-nav button.owl-prev {
    margin: 0 0 0 -10px !important;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
}

.slider .owl-nav button.owl-next {
    margin: 0 -10px 0 0 !important;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}

.slider .owl-nav button.owl-prev span, .slider .owl-nav button.owl-next span {
    color: var(--primary-color);
    line-height: var(--x-large-font-size);
    font-family: 'Font Awesome 5 Pro', sans-serif;
}

.slider .owl-dots {
    width: 100%;
    position: absolute;
    bottom: 7px;
    left: 0;
}

.slider .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 2px;
    background: rgba(255, 255, 255, 0.5);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.slider .owl-dots .active span {
    width: 18px;
    background: #fff !important;
}

.categories {
    max-width: 100%;
    margin-top: var(--xxxx-large-space);
    cursor: -webkit-grab;
    cursor: grab;
    position: relative;
}

.categories .item {
    width: 150px;
    margin: var(--large-space);
    text-align: center;
}

.categories .item img {
    width: 100%;
    margin-bottom: var(--normal-space);
}

.categories .item span {
    font-size: var(--normal-font-size);
}

.categories .gradient-left {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(95%, rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
}

.categories .gradient-right {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 10%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(95%, rgba(255, 255, 255, 1)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 95%);
}

.offer {
    margin: var(--xxxx-large-space) 0;
}

.section-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--large-space);
    border-radius: var(--normal-radius);
}

.section-header h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.section-header h3 i {
    color: white;
    font-size: var(--xx-large-font-size);
    margin-left: var(--normal-space);
}

.section-header h3 a {
    color: white;
    font-size: var(--large-font-size);
}

.section-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.section-header > a span {
    color: white;
    font-size: var(--small-font-size);
    margin-left: var(--small-space);
}

.section-header > a i {
    color: white;
    font-size: var(--small-font-size);
}

.offer .section-header {
    background: var(--red-color);
}

.product-slider {
    position: relative;
    margin: var(--x-large-space) 0;
}

.product-slider .item {
    display: block;
    width: 300px;
    margin-left: var(--x-large-space);
    direction: rtl;
    background: white;
}

.product-slider .owl-item:last-child .item {
    margin-left: 0;
}

.product-slider .item .img {
    width: 100%;
    aspect-ratio: 3/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--gray-color);
    border-radius: var(--x-large-radius);
}

.product-slider .item .img img {
    width: 50%;
    aspect-ratio: 1/1;
    mix-blend-mode: darken;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.product-slider .item:hover .img img {
    width: 55%;
    aspect-ratio: 1/1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.product-slider .item .content {
    width: 100%;
    aspect-ratio: 3/1.5;
    padding: var(--large-space) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product-slider .item .content h2 {
    font-size: var(--normal-font-size);
    line-height: var(--xxxx-large-font-size);
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-slider .item .content .price {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product-slider .item .content .price .p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    direction: rtl;
}

.product-slider .item .content .price .p s {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
    margin-left: var(--small-space);
}

.product-slider .item .content .price .p b {
    font-size: var(--xx-large-font-size);
}

.product-slider .item .content .price .p span {
    font-size: var(--small-font-size);
}

.product-slider .item .content .price .percent {
    padding: 2px 5px;
    background: var(--red-color);
    border-radius: var(--normal-radius);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.product-slider .item .content .price .percent span {
    color: white;
    font-size: var(--very-small-font-size);
}

.product-slider .item .content .rate {
    margin-top: var(--large-space);
    text-align: left;
}

.product-slider .item .content .rate i {
    color: var(--orange-color);
    font-size: var(--large-font-size);
}

.product-slider .item .content .rate span {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

.product-slider .more {
    width: 200px;
    height: 380px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 20px;
}

.product-slider .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

.product-slider .more a i {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: var(--xxxx-large-font-size);
    color: var(--scondry-color);
    border: 2px solid var(--scondry-color);
    border-radius: 50%;
    margin-bottom: var(--large-space);
}

.nav-style .owl-nav button.owl-next, .nav-style .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.nav-style .owl-nav button.owl-next {
    left: -20px;
}

.nav-style .owl-nav button.owl-prev {
    right: -20px;
}

.nav-style .owl-nav button.owl-next span, .nav-style .owl-nav button.owl-prev span {
    font-size: var(--large-font-size);
    font-family: 'Font Awesome 5 Pro', sans-serif;
    color: var(--scondry-color);
}

.nav-style .owl-nav .disabled {
    visibility: hidden !important;
}

.most-sell {
    margin: var(--xxxx-large-space) 0;
    border-radius: 50px;
}

.most-sell .section-header {
    background: var(--navy-blue-color);
}

.most-sell-slider {
    width: 100%;
}

.most-sell-slider .item {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 40px;
    margin-left: 20px;
    padding: 20px;
    background: var(--gray-color);
}

.most-sell-slider .item img {
    mix-blend-mode: darken;
}

.poster {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: var(--xxx-large-space) 0;
}

.poster .item {
    width: 50%;
}

.poster .item img {
    width: 100%;
    border-radius: var(--x-large-radius);
}

.poster .item:first-child {
    margin-left: var(--x-large-space);
}

.poster .item-desktop-full {
    display: block;
    width: 100%;
}

.poster .item-mobile-full {
    display: none;
    width: 100%;
}

.poster .item-desktop-full img, .poster .item-mobile-full img {
    width: 100%;
    border-radius: var(--x-large-radius);
}

.recommend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: var(--xxx-large-space) 0;
    padding: var(--large-space) 0;
}

.recommend .category {
    width: 25%;
    padding: 0 var(--x-large-space);
    border-left: 1px solid var(--gray-color);
}

.recommend .category:last-child {
    border-left: none;
}

.recommend .category > h2 {
    font-size: var(--large-font-size);
    margin-bottom: var(--small-space);
}

.recommend .category > p {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
    margin-bottom: var(--large-space);
}

.recommend .category > a {
    margin: var(--x-large-space) auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.recommend .category > a span, .recommend .category > a i {
    font-size: var(--very-small-font-size);
    color: var(--blue-color);
}

.recommend .category > a i {
    margin-right: var(--small-space);
}

.recommend .category .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.recommend .category .product .item {
    width: 50%;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.recommend .category .product .item:nth-child(1) {
    border-bottom: 1px solid var(--gray-color);
    border-left: 1px solid var(--gray-color);
}

.recommend .category .product .item:nth-child(2) {
    border-bottom: 1px solid var(--gray-color);
}

.recommend .category .product .item:nth-child(3) {
    border-left: 1px solid var(--gray-color);
}

.recommend .category .product .item img {
    width: calc(100% - var(--xxxx-large-space));
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.recommend .category .product .item:hover img {
    width: calc(100% - var(--xx-large-space));
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.review {
    margin: var(--xxxx-large-space) 0;
}

.review .section-header {
    margin-bottom: var(--xx-large-space);
    padding: 0 var(--small-space);
}

.review .section-header h3 i {
    font-size: var(--xxx-large-font-size);
    margin-left: var(--small-space);
    color: var(--red-color);
}

.review .section-header h3 a {
    color: var(--scondry-color);
}

.review .section-header a i,
.review .section-header a span {
    color: var(--blue-color);
}

.review .item {
    width: 300px;
    min-height: 250px;
    display: block;
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    overflow: hidden;
    cursor: pointer;
    margin-left: var(--large-space);
}

.review .owl-item:last-child .item {
    margin-left: 0;
}

.review .item img {
    width: 100%;
    aspect-ratio: 16/9;
}

.review .item h2 {
    padding: var(--large-space);
    font-size: var(--very-small-font-size);
    font-weight: normal;
    line-height: var(--xxxx-large-font-size);
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-top: 75px;
    background: #fafafa;
    padding: var(--xxx-large-space);
    border-radius: var(--xx-large-space);
    position: relative;
}

.footer .top {
    width: 40px;
    height: 40px;
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    background: white;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
            box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: var(--small-space);
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    cursor: pointer;
}

.footer .top i {
    font-size: var(--large-font-size);
    font-family: 'Font Awesome 5 Pro', sans-serif;
    color: var(--scondry-color);
}

.footer .about {
    width: 100%;
    max-width: 1000px;
}

.footer .about > img {
    width: 120px;
}

.footer .about .item {
    margin: var(--large-space) 0;
}

.footer .about .item:last-child {
    margin-bottom: 0;
}

.footer .about .item b {
    display: inline-block;
    font-size: var(--small-font-size);
}

.footer .about .item h1 {
    margin: var(--normal-space) 0;
}

.footer .about .item .about-text {
    line-height: 2;
}

.footer .about .item p, .footer .about .item span, .footer .about .item a {
    text-align: justify;
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.footer .left {
    margin-right: var(--xxxx-large-space);
    text-align: center;
    height: 100%;
}

.footer .left .enamad {
    display: inline-block;
    padding: var(--normal-space) 0;
    border-radius: var(--normal-radius);
    background: white;
}

.footer .left .social {
    margin-top: var(--large-space);
}

.footer .left .social h2 {
    font-size: var(--small-font-size);
    margin-bottom: var(--normal-space);
    color: var(--scondry-color);
}

.footer .left .social i {
    font-size: var(--xx-large-font-size);
    color: var(--scondry-color);
    margin-left: var(--small-space);
}

.footer .left .social a:last-child i {
    margin-left: 0;
}

.copy-right {
    font-size: var(--very-small-font-size);
    text-align: center;
    margin-top: var(--xxxx-large-space);
    color: var(--scondry-color);
}

/****************************** Store ***********************************/

.breadcrumb {
    margin-bottom: var(--xx-large-space);
}

.breadcrumb .item {
    font-size: var(--small-font-size);
    color: var(--scondry-color);
    margin-left: var(--small-space);
}

.breadcrumb .item::after {
    content: "/";
    margin-right: var(--small-space);
}

.breadcrumb .item:last-child::after {
    content: "";
}

.store {
    margin-top: var(--xx-large-space);
}

.store .sidebar {
    width: 260px;
    margin-left: var(--xx-large-space);
    border-radius: 20px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    /*float: right;*/
    display: inline-block;
    vertical-align: top;
}

.store .sidebar .sidebar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 var(--small-space);
    margin-bottom: var(--x-large-space);
}

.store .sidebar .sidebar-header h3 i {
    margin-left: var(--small-space);
    font-size: var(--x-large-font-size);
}

.store .sidebar .sidebar-header h3 .fa-close {
    display: none;
}

.store .sidebar .sidebar-header h3 .fa-filter-list {
    font-weight: 300;
}

.store .sidebar .sidebar-header h3 span {
    font-size: var(--large-font-size);
}

.store .sidebar .sidebar-header a {
    font-size: var(--very-small-font-size);
    color: var(--blue-color);
    cursor: pointer;
}

.store .sidebar .sidebar-section {
    padding: var(--large-space);
    /*background: var(--gray-color);*/
    margin-bottom: var(--normal-space);
    border-radius: var(--large-radius);
    border: 1px solid var(--gray-color);
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 3%);
            box-shadow: 0 0 10px rgb(0 0 0 / 3%);
}

.store .sidebar .filtered label {
    display: inline-block;
    padding: var(--small-space) var(--normal-space);
    background: white;
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    font-size: var(--very-small-font-size);
    margin-bottom: var(--normal-space);
    cursor: pointer;
}

.store .sidebar .filtered label:before {
    content: '\00D7';
    display: inline-block;
    margin-left: var(--small-space);
    font-size: var(--large-font-size);
}

/*.store .sidebar .sidebar-section:last-child{*/
/*    border-bottom: none;*/
/*}*/

.store .sidebar .sidebar-section h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    cursor: pointer;
}

.store .sidebar .sidebar-section ul {
    display: none;
    list-style: none;
    margin-top: var(--normal-space);
    max-height: 600px;
    overflow-y: auto;
    position: relative;
}

.store .sidebar .open ul {
    display: block;
}

.store .sidebar .open ul .search {
    background: white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
}

.store .sidebar .sidebar-section ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--large-space) var(--normal-space);
    position: relative;
}

.store .sidebar .sidebar-section ul li:last-child {
    border-bottom: none;
}

.store .sidebar .sidebar-section ul li input[type=text] {
    width: 100%;
    height: 40px;
    padding-right: 40px;
    border: none;
    outline: none;
    border-radius: var(--normal-radius);
    background: var(--gray-color);
}

.store .sidebar .sidebar-section ul li .sidebar-search {
    position: absolute;
    right: 20px;
}

.store .sidebar .sidebar-section ul li input[type=checkbox] {
    width: 15px;
    height: 15px;
    margin-left: var(--normal-space);
    cursor: pointer;
}

.store .sidebar .sidebar-section ul li label {
    color: var(--scondry-color);
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.store .body {
    /*width: 100%;*/
    display: inline-block;
    vertical-align: top;
    width: calc(100% - (265px + var(--xx-large-space)));
}

.store .body .filter {
    display: none;
}

.store .body .sort {
    margin-bottom: var(--large-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.store .body .sort div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.store .body .sort div h3 {
    margin-left: var(--x-large-space);
}

.store .body .sort div h3 i {
    font-weight: 300;
    margin-left: var(--small-space);
}

.store .body .sort div h3 .fa-close {
    display: none;
}

.store .body .sort div h3 b {
    font-size: var(--small-font-size);
}

.store .body .sort ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.store .body .sort ul li {
    margin-left: var(--x-large-space);
    cursor: pointer;
}

.store .body .sort ul li a {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.store .body .sort ul .selected a {
    color: var(--blue-color);
}

.store .body .sort p span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.store .body .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-top: var(--xx-large-space);
}

.store-item {
    display: block;
    width: calc(25% - var(--xxx-large-space));
    margin: 0 var(--large-space);
    margin-bottom: var(--xxx-large-space);
    direction: rtl;
    background: white;
}

.store-item .img {
    width: 100%;
    aspect-ratio: 3/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--gray-color);
    border-radius: var(--x-large-radius);
}

.store-item .img img {
    width: 60%;
    aspect-ratio: 1/1;
    mix-blend-mode: darken;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.store-item:hover .img img {
    width: 65%;
    aspect-ratio: 1/1;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.store-item .content {
    width: 100%;
    height: 160px;
    aspect-ratio: 3/1.85;
    padding: var(--large-space) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.store-item .content h2 {
    font-size: var(--small-font-size);
    line-height: 2;
    font-weight: 500;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-item .content .price {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.store-item .content .price .p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    direction: rtl;
}

.store-item .content .price .p s {
    font-size: var(--very-small-font-size);
    margin-top: 2px;
    color: var(--scondry-color);
    margin-left: var(--small-space);
}

.store-item .content .price .p b {
    font-size: var(--x-large-font-size);
}

.store-item .content .price .p span {
    font-size: var(--very-small-font-size);
}

.store-item .content .price .percent {
    padding: 2px 5px;
    background: var(--red-color);
    border-radius: var(--normal-radius);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
}

.store-item .content .price .percent span {
    color: white;
    font-size: var(--very-small-font-size);
}

.store-item .content .rate {
    margin-top: var(--large-space);
    text-align: left;
}

.store-item .content .rate i {
    color: var(--orange-color);
    font-size: var(--normal-font-size);
}

.store-item .content .rate b {
    font-size: var(--small-font-size);
}

.store-item .content .rate span {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

/************************** product ***********************************/

.product {
    margin-top: var(--large-space);
}

.product .product-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product .product-header .img {
    width: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product .product-header .img .main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--gray-color);
    border-radius: var(--x-large-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.product .product-header .img .tools {
    position: absolute;
    bottom: var(--normal-space);
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    background: white;
    padding: var(--small-space);
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2;
}

.product .product-header .img .tools .item {
    margin: 0 var(--normal-space);
}

.product .product-header .img .tools .item i {
    font-size: var(--xx-large-font-size);
    color: var(--scondry-color);
    cursor: pointer;
}

.product .product-header .img .main-image img {
    width: 80%;
    max-width: 350px;
    aspect-ratio: 1/1;
    mix-blend-mode: darken;
}

.product .product-header .img .main-image img:hover {
    width: 90%;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.product .product-header .img .main-image .status {
    position: absolute;
    top: var(--large-space);
    left: var(--large-space);
    padding: var(--small-space) var(--normal-space);
    color: white;
    border-radius: var(--large-radius);
    font-size: var(--very-small-font-size);
}

.product .product-header .img .image-slider {
    margin-top: var(--normal-space);
    position: relative;
}

.product .product-header .img .image-slider .item {
    width: 80px;
    height: 80px;
    border-radius: var(--large-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid var(--gray-color);
    cursor: pointer;
    margin-left: var(--normal-space);
}

.product .product-header .img .image-slider .item img {
    width: 80%;
    aspect-ratio: 1/1;
}

.product .product-header .img .image-slider .owl-nav {
    margin: 0;
}

.product .product-header .img .image-slider .owl-nav .owl-next {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: var(--small-radius);
    -webkit-box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: -10px;
    margin: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.product .product-header .img .image-slider .owl-nav .owl-prev {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: var(--small-radius);
    -webkit-box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    right: -10px;
    margin: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.product .product-header .img .image-slider .owl-nav span {
    font-family: 'Font Awesome 5 Pro', sans-serif;
    line-height: 20px;
    color: var(--scondry-color);
    font-size: 10px;
}

.product .product-header .img .image-slider .owl-nav .disabled {
    display: none;
}

.product .product-header .detail {
    width: calc(100% - 650px);
    margin: 0 var(--xxx-large-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product .product-header .detail .title {
    font-size: var(--xx-large-font-size);
    padding: var(--large-space) 0;
    line-height : 2;
}

.product .product-header .detail .sub-title {
    width: 100%;
    height: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: var(--gray-color);
    margin: var(--normal-space) 0;
}

.product .product-header .detail .sub-title h1 {
    color: var(--scondry-color);
    padding-left: var(--normal-space);
    background: white;
}

.product .product-header .detail .sub-title p {
    color: var(--scondry-color);
    padding-right: var(--normal-space);
    background: white;
}

.product .product-header .detail .rate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: var(--x-large-space) 0;
}

.product .product-header .detail .rate a {
    font-size: var(--small-font-size);
    color: var(--blue-color);
}

.product .product-header .detail .rate div {
    text-align: left;
}

.product .product-header .detail .rate div span {
    font-size: var(--small-font-size);
    color: var(--scondry-color);
}

.product .product-header .detail .rate div i {
    color: var(--orange-color);
    font-size: var(--large-font-size);
}

.product .product-header .detail .feature h3 {
    margin-bottom: var(--large-space);
    font-size: var(--large-font-size);
}

.product .product-header .detail .feature ul {
    overflow: hidden;
}

.product .product-header .detail .feature ul li {
    padding: var(--small-space) 0;
    margin-bottom: var(--small-space);
    list-style-position: inside;
    color: var(--scondry-color);
}

.product .product-header .detail .feature ul li span {
    color: var(--scondry-color);
    margin-left: var(--small-space);
    font-weight: 500;
}

.product .product-header .detail .feature .show-more {
    margin-top: var(--normal-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
}

.product .product-header .detail .feature a span {
    color: var(--blue-color);
    font-size: var(--very-small-font-size);
    margin-left: var(--small-space);
}

.product .product-header .detail .feature a i {
    color: var(--blue-color);
    font-size: var(--very-small-font-size);
}

.product .product-header .detail .description {
    margin-top: var(--xx-large-space);
    padding: var(--large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
}

.product .product-header .detail .description i {
    color: var(--scondry-color);
    margin-left: var(--small-space);
    font-size: var(--small-font-size);
}

.product .product-header .detail .description span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
    line-height: 2;
}

.product .product-header .price {
    width: 300px;
    padding: var(--large-space);
    border-radius: var(--large-radius);
    border: 1px solid var(--gray-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: sticky;
    top: 50px;
}

.product .product-header .price .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--large-space) 0;
    border-bottom: 1px solid var(--gray-color);
    list-style: none;
}

.product .product-header .price .item i {
    font-size: var(--x-large-font-size);
    margin-left: var(--normal-space);
    color: var(--scondry-color);
}

.product .product-header .price .item p {
    font-weight: bold;
}

.product .product-header .price .p {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: var(--large-space) 0;
    min-height: 50px;
}

.product .product-header .price .p div {
    direction: rtl;
}

.product .product-header .price .p s {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.product .product-header .price .p b {
    font-size: var(--xx-large-font-size);
}

.product .product-header .price .p div p span {
    font-size: var(--small-font-size);
}

.product .product-header .price .p .percent {
    padding: 2px 5px;
    background: var(--red-color);
    border-radius: var(--normal-radius);
    margin-bottom: var(--small-space);
}

.product .product-header .price .p .percent span {
    color: white;
    font-size: var(--very-small-font-size);
}

.product .product-header .price .add {
    display: block;
    width: 100%;
    color: white;
    background: var(--red-color);
    font-size: var(--small-font-size);
    text-align: center;
    padding: var(--normal-space) 0;
    border-radius: var(--normal-radius);
    margin-top: var(--x-large-space);
}

.product .similar {
    margin-top: var(--xx-large-space);
}

.product .section-header {
    padding: var(--large-space) 0;
    border-radius: 0;
    border-bottom: 2px solid var(--gray-color);
}

.product .section-header h3 i {
    color: var(--scondry-color);
}

.product .section-header h3 a {
    color: var(--scondry-color);
}

.product .section-header a i {
    color: var(--scondry-color);
}

.product .section-header a span {
    color: var(--scondry-color);
}

.product .similar .product-slider .item {
    width: 250px;
}

.product .similar .product-slider .item .content {
    aspect-ratio: 3/1.85;
}

.product .similar .product-slider .item .content h2 {
    font-weight: normal;
}

.product .product-detail {
    margin-top: var(--xx-large-space);
}

.product .product-detail .product-detail-header {
    border-bottom: 2px solid var(--gray-color);
    background: white;
    position: sticky;
    top: 0;
    z-index: 3;
}

.product .product-detail .product-detail-header a {
    display: inline-block;
    padding: var(--large-space) var(--normal-space);
    margin-left: var(--small-space);
    cursor: pointer;
}

.product .product-detail .product-detail-header a:last-child {
    padding-left: 0;
    margin-left: 0;
}

.product .product-detail .product-detail-header .selected {
    color: var(--red-color);
    border-bottom: 3px solid var(--red-color);
}

.product .product-detail-content-main {
    width: calc(100% - 335px);
    margin-left: var(--xxx-large-space);
    display: inline-block;
    vertical-align: top;
}

.product .product-detail-content-main > section {
    position: relative;
}

.product .product-detail-content-main .title {
    margin-bottom: var(--x-large-space);
    padding-top: 70px;
}

.product .product-detail-content-main .title a {
    display: inline-block;
    font-size: var(--large-font-size);
}

.product .product-detail-content-main .description .text {
    color: var(--scondry-color);
    line-height: 2;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    position: relative;
    margin-top: var(--xxxx-large-space);
}

.product .product-detail-content-main .description .open {
    max-height: unset;
}

.product .product-detail-content-main .show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: var(--large-space);
    cursor: pointer;
}

.product .product-detail-content-main .show-more span {
    color: var(--blue-color);
}

.product .product-detail-content-main .show-more i {
    color: var(--blue-color);
    margin-right: var(--small-space);
}

.product .product-detail-content-main .videos .video-slider {
    width: 100%;
    margin-top: var(--xxxx-large-space);
}

.product .product-detail-content-main .videos .video-slider .owl-stage {
    padding-right: 0 !important;
}

.product .product-detail-content-main .videos .video-slider .owl-dots {
    margin-top: var(--large-space);
}

.product .product-detail-content-main .videos .video-slider .item {
    width: 100%;
}

.product .product-detail-content-main .videos .video-slider .item video {
    width: 100%;
    border-radius: var(--large-space);
}

.product .product-detail-content-main .specifications .table {
    margin: var(--x-large-space) 0;
    overflow: hidden;
}

.product .product-detail-content-main .specifications .open {
    height: auto;
}

.product .product-detail-content-main .specifications .table th {
    padding: var(--large-space);
    text-align: right;
    min-width: 150px;
    font-weight: normal;
    color: var(--scondry-color);
    line-height: 2;
}

.product .product-detail-content-main .specifications .table td {
    padding: var(--large-space);
    text-align: right;
    min-width: 150px;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-color);
    line-height: 2;
}

.product .product-detail-content-main .specifications .show-more {
    margin-top: var(--x-large-space);
}

.product .product-detail-content-main .comments .create form {
    width: 100%;
}

.product .product-detail-content-main .comments .create form textarea {
    width: 100%;
    height: 120px;
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    padding: var(--large-radius);
    outline: none;
}

.product .product-detail-content-main .comments .create form textarea::-webkit-input-placeholder {
    opacity: 0.6;
}

.product .product-detail-content-main .comments .create form textarea::-moz-placeholder {
    opacity: 0.6;
}

.product .product-detail-content-main .comments .create form textarea:-ms-input-placeholder {
    opacity: 0.6;
}

.product .product-detail-content-main .comments .create form textarea::-ms-input-placeholder {
    opacity: 0.6;
}

.product .product-detail-content-main .comments .create form textarea::placeholder {
    opacity: 0.6;
}

.product .product-detail-content-main .comments .create form button {
    padding: var(--normal-space) var(--xx-large-space);
    border: none;
    outline: none;
    background: var(--blue-color);
    color: white;
    border-radius: var(--normal-radius);
    margin-top: var(--small-space);
    cursor: pointer;
}

.product .product-detail-content-main .comments .comments-list {
    margin-top: var(--xx-large-space);
}

.product .product-detail-content-main .comments .comments-list .item {
    padding: var(--xx-large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    margin-bottom: var(--large-space);
}

.product .product-detail-content-main .comments .comments-list .item:last-child {
    margin-bottom: 0;
}

.product .product-detail-content-main .comments .comments-list .item .text {
    padding-bottom: var(--xxx-large-space);
    line-height: 2;
    font-weight: bold;
}

.product .product-detail-content-main .comments .comments-list .item .sender {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.product .product-detail-content-main .comments .comments-list .item .sender .name span {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

.product .product-detail-content-main .comments .comments-list .item .sender .reply {
    cursor: pointer;
}

.product .product-detail-content-main .comments .comments-list .item .sender .reply span {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
    margin-left: var(--small-space);
}

.product .product-detail-content-main .comments .comments-list .item .sender .reply i {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

.product .product-detail-content-main .comments .comments-list .item .reply-form {
    margin-top: var(--xx-large-space);
    display: none;
}

.product .product-detail-content-main .comments .comments-list .item .reply-form form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.product .product-detail-content-main .comments .comments-list .item .reply-form input {
    width: 100%;
    height: 40px;
    padding: var(--small-space) var(--large-space);
    border: none;
    outline: none;
    background: var(--gray-color);
    border-radius: var(--normal-radius);
    margin-left: var(--small-space);
}

.product .product-detail-content-main .comments .comments-list .item .reply-form button {
    width: 60px;
    height: 40px;
    border: none;
    outline: none;
    text-align: center;
    line-height: 40px;
    background: var(--blue-color);
    border-radius: var(--normal-radius);
    color: white;
    font-size: var(--small-font-size);
}

.product .product-detail-content-main .comments .comments-list .item .answer h6 {
    margin: var(--xx-large-space) 0;
}

.product .product-detail-content-main .comments .comments-list .item .answer > div {
    margin: var(--xx-large-space) var(--xxxx-large-space);
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: var(--normal-space);
}

.product .product-detail-content-main .comments .comments-list .item .answer > div:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product .product-detail .product-detail-content .price {
    width: 300px;
    padding: var(--large-space);
    border-radius: var(--large-radius);
    border: 1px solid var(--gray-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: sticky;
    top: 70px;
    vertical-align: top;
    z-index: 2;
    margin-top: var(--xx-large-space);
}

.product .product-detail .product-detail-content .price .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--large-space) 0;
    border-bottom: 1px solid var(--gray-color);
    list-style: none;
}

.product .product-detail .product-detail-content .price .item div {
    width: 85px;
    height: 85px;
    background: var(--gray-color);
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: var(--normal-space);
}

.product .product-detail .product-detail-content .price .item div img {
    width: 90%;
    mix-blend-mode: darken;
}

.product .product-detail .product-detail-content .price .item h2 {
    width: calc(100% - 100px);
    font-size: var(--small-font-size);
    font-weight: normal;
    line-height: 2;
}

.product .product-detail .product-detail-content .price .item i {
    font-size: var(--x-large-font-size);
    margin-left: var(--normal-space);
    color: var(--scondry-color);
}

.product .product-detail .product-detail-content .price .item p {
    font-weight: bold;
}

.product .product-detail .product-detail-content .price .p {
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: var(--large-space) 0;
    min-height: 50px;
}

.product .product-detail .product-detail-content .price .p div {
    direction: rtl;
}

.product .product-detail .product-detail-content .price .p s {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.product .product-detail .product-detail-content .price .p b {
    font-size: var(--xx-large-font-size);
}

.product .product-detail .product-detail-content .price .p div p span {
    font-size: var(--small-font-size);
}

.product .product-detail .product-detail-content .price .p .percent {
    padding: 2px 5px;
    background: var(--red-color);
    border-radius: var(--normal-radius);
    margin-bottom: var(--small-space);
}

.product .product-detail .product-detail-content .price .p .percent span {
    color: white;
    font-size: var(--very-small-font-size);
}

.product .product-detail .product-detail-content .price .add {
    display: block;
    width: 100%;
    color: white;
    background: var(--red-color);
    font-size: var(--small-font-size);
    text-align: center;
    padding: var(--normal-space) 0;
    border-radius: var(--normal-radius);
    margin-top: var(--x-large-space);
}

.login {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.login main {
    width: 350px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
    border-radius: var(--xx-large-radius);
    padding: var(--xx-large-space) var(--large-space);
    margin-top: 40px;
}

.login .logo {
    display: block;
    width: 100px;
}

.login main h1 {
    font-size: var(--x-large-font-size);
    margin-top: var(--large-space);
    text-align: center;
}

.login main > p {
    font-size: var(--very-small-font-size);
    margin-top: var(--xxxx-large-space);
}

.login main form {
    margin-top: var(--large-space);
}

.login main form input {
    display: block;
    width: 100%;
    height: 45px;
    padding: var(--small-space) var(--normal-space);
    border-radius: var(--normal-radius);
    background: var(--gray-color);
    margin-bottom: var(--normal-space);
    border: none;
    outline: none;
}

.login main form .input-error {
    border: 1px solid var(--red-color);
    background: white;
}

.login main form .error {
    color: var(--red-color);
    font-size: var(--very-small-font-size);
    margin: var(--normal-space) 0;
}

.login main form button {
    display: block;
    width: 100%;
    height: 45px;
    padding: var(--small-space) var(--normal-space);
    border-radius: var(--normal-radius);
    background: var(--red-color);
    color: white;
    border: none;
    outline: none;
    margin-top: var(--xx-large-space);
    cursor: pointer;
}

.login main form button span {
    color: white;
}

.login main .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: var(--xx-large-space);
}

.login main .link span {
    font-size: var(--very-small-font-size);
    color: var(--blue-color);
    margin-left: var(--small-space);
}

.login main .link i {
    font-size: var(--very-small-font-size);
    color: var(--blue-color);
}

.user {
    width: 100%;
    margin: var(--xxxx-large-space) auto;
}

.user .sidebar {
    display: inline-block;
    width: 300px;
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    padding: var(--large-space) 0;
    margin-left: var(--xxxx-large-space);
}

.user .sidebar .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 var(--large-space);
}

.user .sidebar .profile .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80px;
    position: relative;
}

.user .sidebar .profile .img .profile-image {
    width: 100%;
    border-radius: 50%;
}

.user .sidebar .profile .img .rank-image {
    width: 20px;
    position: absolute;
    bottom: -5px;
    right: 0px;
}

.user .sidebar .profile > div {
    width: 100%;
    margin: 0 var(--normal-space);
}

.user .sidebar .profile > div h2 {
    width: 100%;
    font-size: var(--large-font-size);
    line-height: 2;
}

.user .sidebar .profile > div p {
    color: var(--scondry-color);
}

.user .sidebar .profile > a i {
    font-size: var(--x-large-font-size);
    color: var(--blue-color);
}

.user .sidebar .rank {
    margin: var(--large-space) 0;
    padding: 0 var(--large-space);
}

.user .sidebar .rank .progress {
    width: 100%;
    height: 12px;
    border-radius: var(--large-radius);
    border: 1px solid var(--gray-color);
    overflow: hidden;
    margin: 0 var(--small-space);
    direction: ltr;
}

.user .sidebar .rank .progress .fill {
    width: 70%;
    min-width: 10%;
    height: 100%;
    border-radius: var(--large-radius);
    background: var(--blue-color);
}

.user .sidebar .rank > p {
    text-align: center;
    margin-top: var(--small-space);
}

.user .sidebar .rank > p span {
    font-size: 11px;
    color: var(--scondry-color);
}

.user .sidebar .rank > p span {
    font-size: 11px;
    color: var(--scondry-color);
}

.user .sidebar .rank .about {
    margin-top: var(--large-space);
    text-align: justify;
}

.user .sidebar .rank .about span {
    font-size: 11px;
    color: var(--scondry-color);
}

.user .sidebar .rank .about i {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

.user .sidebar .mobile-items {
    display: none;
}

.user .sidebar .sidebar-menu {
    margin-top: var(--large-space);
    list-style: none;
}

.user .sidebar .sidebar-menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: var(--large-space) var(--x-large-space);
    border-bottom: 1px solid var(--gray-color);
}

.user .sidebar .sidebar-menu li:last-child a {
    border-bottom: none;
}

.user .sidebar .sidebar-menu li:hover {
    background: var(--gray-color);
}

.user .sidebar .sidebar-menu li a p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.user .sidebar .sidebar-menu li a p i {
    font-size: var(--large-font-size);
    margin-left: var(--normal-space);
}


.user .content {
    display: inline-block;
    width: calc(100% - 340px);
    vertical-align: top;
}

.user .content .content-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
}

.user .content .content-items .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: var(--large-space);
    margin-bottom: var(--large-space);
    padding: var(--normal-space);
}

.user .content .content-items .item > img {
    width: 65px;
    margin-left: var(--large-space);
}

.user .content .content-items .item div b {
    display: block;
    white-space: nowrap;
    margin-bottom: var(--normal-space);
}

.user .content .content-items .item div span {
    color: var(--scondry-color);
}

.user .content .content-items .item div > span {
    white-space: nowrap;
}

.user .content .content-section {
    padding: var(--large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    margin-top: var(--xxxx-large-space);
}

.user .content .content-section .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.user .content .content-section h2 {
    display: block;
    width: 100%;
    padding: var(--large-space);
    font-size: var(--large-font-size);
}

.user .content .content-section .form .item {
    width: 50%;
    padding: var(--large-space);
}

.user .content .content-section .form .item label {
    display: block;
    color: var(--scondry-color);
    margin-bottom: var(--small-space);
    font-size: var(--small-font-size);
}

.user .content .content-section .form .item input {
    display: block;
    width: 100%;
    height: 40px;
    padding: var(--normal-space) var(--large-space);
    border: 1px solid var(--gray-color);
    outline: none;
    font-weight: bold;
    color: var(--primary-color);
    border-radius: var(--normal-radius);
}

.user .content .content-section .form .item .invalid-input {
    border: 1px solid var(--red-color);
}

.user .content .content-section .form .item input::-webkit-input-placeholder {
    font-weight: normal;
    color: var(--scondry-color);
}

.user .content .content-section .form .item input::-moz-placeholder {
    font-weight: normal;
    color: var(--scondry-color);
}

.user .content .content-section .form .item input:-ms-input-placeholder {
    font-weight: normal;
    color: var(--scondry-color);
}

.user .content .content-section .form .item input::-ms-input-placeholder {
    font-weight: normal;
    color: var(--scondry-color);
}

.user .content .content-section .form .item input::placeholder {
    font-weight: normal;
    color: var(--scondry-color);
}

.user .content .content-section .form .item .error {
    color: var(--red-color);
    font-size: var(--very-small-font-size);
    margin-top: var(--small-space);
    line-height: 1.5;
}

.user .content .content-section .form .item select {
    display: block;
    width: 100%;
    height: 40px;
    padding: var(--normal-space) var(--large-space);
    border: 1px solid var(--gray-color);
    outline: none;
    font-weight: bold;
    color: var(--primary-color);
    border-radius: var(--normal-radius);
}

.user .content .content-section .form .item select {
    display: block;
    width: 100%;
    height: 40px;
    padding: var(--normal-space) var(--large-space);
    border: 1px solid var(--gray-color);
    outline: none;
    font-weight: bold;
    color: var(--primary-color);
    border-radius: var(--normal-radius);
}

.user .content .content-section .form .item .upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100px;
    height: 100px;
    margin-top: var(--normal-space);
    border: 1px dashed var(--gray-color);
}

.user .content .content-section .form .item .link {
    display: inline-block;
    font-size: var(--very-small-font-size);
    color: var(--blue-color);
    margin-top: var(--normal-space);
    cursor: pointer;
}

.user .content .content-section .form .full {
    width: 100%;
}

.user .content .content-section .form textarea {
    display: block;
    width: 100%;
    height: 100px;
    padding: var(--normal-space) var(--large-space);
    border: 1px solid var(--gray-color);
    outline: none;
    font-weight: bold;
    color: var(--primary-color);
    border-radius: var(--normal-radius);
}

.user .content .content-section .form textarea::-webkit-input-placeholder {
    font-weight: normal;
}

.user .content .content-section .form textarea::-moz-placeholder {
    font-weight: normal;
}

.user .content .content-section .form textarea:-ms-input-placeholder {
    font-weight: normal;
}

.user .content .content-section .form textarea::-ms-input-placeholder {
    font-weight: normal;
}

.user .content .content-section .form textarea::placeholder {
    font-weight: normal;
}

.user .content .content-section .form .item .btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 var(--x-large-space);
    border: none;
    outline: none;
    color: white;
    background: var(--blue-color);
    border-radius: var(--normal-radius);
    cursor: pointer;
}

.user .content .content-section .address {
    padding: var(--large-space);
    margin: var(--large-space) 0;
    border-bottom: 1px solid var(--gray-color);
}

.user .content .content-section .address:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.user .content .content-section .address .address-header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: var(--large-space);
    line-height: 2;
}

.user .content .content-section .address .address-header i {
    font-size: var(--x-large-font-size);
    margin-right: var(--normal-space);
}

.user .content .content-section .address .address-item {
    margin-bottom: var(--normal-space);
}

.user .content .content-section .address .address-item i {
    font-size: var(--x-large-font-size);
    color: var(--scondry-color);
    margin-left: var(--normal-space);
}

.user .content .content-section .address .address-item span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.user .content .content-section .section-nav {
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: var(--large-space);
}

.user .content .content-section .section-nav .item {
    display: inline-block;
    padding: var(--normal-space);
    margin: 0 var(--small-space);
}

.user .content .content-section .section-nav .item b {
    display: inline-block;
    text-align: center;
    line-height: 22px;
    width: 20px;
    height: 20px;
    border-radius: var(--small-radius);
    background: var(--gray-color);
    font-size: var(--small-font-size);
    margin-right: 3px;
    font-weight: normal;
}

.user .content .content-section .section-nav .selected {
    border-bottom: 2px solid var(--red-color);
}

.user .content .content-section .section-nav .selected span {
    color: var(--red-color);
}

.user .content .content-section .section-nav .selected b {
    background: var(--red-color);
    color: white;
}

.user .content .content-section .order {
    padding: var(--large-space) var(--xx-large-space);
    border: 1px solid var(--gray-color);
    margin: var(--xx-large-space) 0;
    border-radius: var(--normal-radius);
}

.user .content .content-section .order .order-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 2;
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: var(--large-space);
}

.user .content .content-section .order .order-info li {
    padding: var(--small-space) 0;
    margin-left: var(--large-space);
    list-style: inside;
    color: var(--scondry-color);
}

.user .content .content-section .order .order-info li:after {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--scondry-color);
    border-radius: 50%;
    margin-left: var(--small-space);
}

.user .content .content-section .order .order-info li > span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.user .content .content-section .order .order-slider {
    padding: var(--xx-large-space) 0;
    border-bottom: 1px solid var(--gray-color);
}

.user .content .content-section .order .order-slider .item {
    display: inline-block;
    width: 70px;
    aspect-ratio: 1/1;
    margin-left: var(--xxxx-large-space);
    position: relative;
}

.user .content .content-section .order .order-slider .item img {
    width: 100%;
    border-radius: var(--x-large-radius);
}

.user .content .content-section .order .order-slider .item b {
    display: inline-block;
    text-align: center;
    line-height: 22px;
    width: 20px;
    height: 20px;
    border-radius: var(--small-radius);
    background: var(--scondry-color);
    color: white;
    font-size: var(--small-font-size);
    font-weight: normal;
    position: absolute;
    bottom: 0;
    right: 0;
}

.user .content .content-section .order .factor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: var(--xx-large-space);
    margin-bottom: var(--normal-space);
}

.user .content .content-section .order .factor a span {
    color: var(--blue-color);
    font-size: var(--small-font-size);
}

.user .content .content-section .order .factor a i {
    color: var(--blue-color);
    font-size: var(--small-font-size);
}

.user .content .content-section .product-slider .item {
    width: 250px;
}

.user .content .content-section .product-slider .item .content {
    aspect-ratio: 3/1.9;
}

.user .content .content-section .product-slider .item h2 {
    padding: var(--normal-space) 0;
    font-size: var(--small-font-size);
    font-weight: normal;
}

.user .content .content-section .product-slider .item .p s {
    font-size: var(--very-small-font-size);
}

.user .content .content-section .product-slider .item .p b {
    font-size: var(--large-font-size);
}

.user .content .content-section .product-slider .item .p span {
    font-size: var(--very-small-font-size);
}

.user .content .content-section .section-header {
    padding: var(--large-space);
}

.user .content .content-section .section-header h3 a {
    color: var(--primary-color);
    font-size: var(--large-font-size);
}

.user .content .content-section .section-header a span {
    color: var(--blue-color);
}

.user .content .content-section .section-header a i {
    color: var(--blue-color);
}

.user .content .content-section .remove-list {
    text-align: left;
    padding: 0 var(--large-space) var(--large-space) var(--large-space);
}

.user .content .content-section .remove-list a i {
    color: var(--blue-color);
}

.user .content .content-section .remove-list a span {
    font-size: var(--small-font-size);
    color: var(--blue-color);
}

.user .user-back{
    display: none;
}

.main > .list {
    margin: var(--xxxx-large-space) auto;
    padding: var(--xx-large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
}

.main > .list .list-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: var(--xx-large-space);
    border-bottom: 1px solid var(--gray-color);
}

.main > .list .list-header h1 {
    font-size: var(--large-font-size);
    line-height: 2;
}

.main > .list .list-header a {
    white-space: nowrap;
    margin-right: var(--normal-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.main > .list .list-header a span {
    font-size: var(--small-font-size);
    color: var(--blue-color);
}

.main > .list .list-header a i {
    color: var(--blue-color);
    font-size: var(--large-font-size);
    margin-left: var(--small-space);
}

.main > .list .list-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: var(--xxxx-large-space);
}

.main > .list .list-content .store-item .content {
    aspect-ratio: 3/1.75;
}

.main > .list .list-content .store-item .rate {
    position: relative;
}

.main > .list .list-content .store-item .rate .remove {
    font-size: var(--xx-large-font-size);
    color: var(--scondry-color);
    position: absolute;
    bottom: 0;
    right: var(--small-space);
}

.cart {
    max-width: 1200px;
    margin: auto;
}

.cart .sidebar {
    display: inline-block;
    width: 300px;
    vertical-align: top;
    position: sticky;
    top: 20px;
    padding: var(--large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
}

.cart .sidebar .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: var(--normal-space) 0;
}

.cart .sidebar .item:last-child {
    padding-bottom: 0;
}

.cart .sidebar .item > span {
    font-size: var(--small-font-size);
    color: var(--scondry-color);
}

.cart .sidebar .item > b {
    font-size: var(--normal-font-size);
}

.cart .sidebar .item > div b {
    font-size: var(--large-font-size);
}

.cart .sidebar .item > div span {
    font-size: var(--very-small-font-size);
    color: var(--scondry-color);
}

.cart .sidebar .btn {
    display: block;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: none;
    outline: none;
    cursor: pointer;
    background: var(--red-color);
    color: white;
    text-align: center;
    border-radius: var(--normal-radius);
}

.cart .content {
    display: inline-block;
    width: calc(100% - 335px);
    vertical-align: top;
    margin-left: var(--xx-large-space);
}

.cart .content .item {
    padding: var(--large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    margin-bottom: var(--large-space);
}

.cart .content .item .item-content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cart .content .item .item-content img {
    width: 120px;
    height: 120px;
}

.cart .content .item .item-content .item-detail {
    width: calc(100% - 120px);
    margin-right: var(--xx-large-space);
}

.cart .content .item .item-content h1 {
    font-size: var(--large-font-size);
    line-height: 2;
}

.cart .content .item .item-content ul {
    margin-top: var(--large-space);
    list-style: none;
}

.cart .content .item .item-content ul li {
    padding: var(--small-space) 0;
    margin-left: var(--xx-large-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cart .content .item .item-content ul li i {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
    margin-left: var(--small-space);
}

.cart .content .item .item-content ul li span {
    color: var(--scondry-color);
    font-size: var(--very-small-font-size);
}

.cart .content .item .item-price {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cart .content .item .item-price .count {
    width: 120px;
    height: 45px;
    border: 1px solid var(--gray-color);
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 var(--small-space);
}

.cart .content .item .item-price .count span {
    padding: var(--small-space);
    font-size: var(--large-font-size);
    font-weight: bold;
    text-align: center;
    display: inline-block;
}

.cart .content .item .item-price .count span .max {
    display: block;
    font-size: 10px;
    color: var(--red-color);
    font-weight: normal;
    padding: 0;
}

.cart .content .item .item-price .count i {
    cursor: pointer;
}

.cart .content .item .item-price .count .fa-trash-alt {
    color: var(--red-color);
}

.cart .content .item .price .p s {
    display: inline-block;
    color: var(--scondry-color);
    font-size: var(--small-font-size);
    margin-bottom: var(--small-space);
}

.cart .content .item .price .p b {
    font-size: var(--x-large-font-size);
}

.cart .content .item .price .p div {
    margin-top: var(--small-space);
}

.cart .content .item .price .p div span {
    color: var(--scondry-color);
    font-size: var(--small-font-size);
}

.cart .content .item .price .percent {
    display: inline-block;
    margin-right: var(--small-space);
    padding: 2px 8px;
    background: var(--red-color);
    border-radius: var(--large-radius);
}

.cart .content .item .price .percent span {
    font-size: 11px;
    color: white;
}

.cart .order > h1 {
    margin-top: var(--xx-large-space);
    margin-bottom: var(--large-space);
}

.cart .order > h1:first-child {
    margin-top: 0;
}

.cart .order .order-slider {
    width: 100%;
    margin: var(--xx-large-space) 0;
}

.cart .order .order-slider .order-slider-item {
    display: inline-block;
    width: 70px;
    margin-left: var(--large-space);
    position: relative;
}

.cart .order .order-slider .order-slider-item img {
    width: 100%;
}

.cart .order .order-slider .order-slider-item span {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--scondry-color);
    font-size: var(--very-small-font-size);
    color: white;
    border-radius: var(--small-space);
    position: absolute;
    bottom: 0;
    right: 0;
}


.cart .order .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: var(--large-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    margin: var(--large-space) 0;
}

.cart .order .address:has(> input[type=radio]:checked) {
    border: 1px solid var(--blue-color);
}

.cart .order .address input[type=radio] {
    width: 20px;
    cursor: pointer;
}

.cart .order .address > div {
    width: 100%;
    margin-right: var(--large-space);
}

.cart .order .address label {
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}

.cart .order .address p {
    color: var(--scondry-color);
    margin-top: var(--large-space);
    font-size: var(--small-font-size);
}

.cart .order .address > div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: var(--large-space);
}

.cart .order .address select {
    padding: var(--normal-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--normal-radius);
    outline: none;
    font-size: var(--small-font-size);
    cursor: pointer;
}

.cart .order .address .add-address i {
    color: var(--blue-color);
    font-size: var(--very-small-font-size);
}

.cart .order .address .add-address span {
    color: var(--blue-color);
    font-size: var(--very-small-font-size);
}

.cart .order .error {
    width: 100%;
    color: var(--red-color) !important;
    font-size: var(--very-small-font-size) !important;
    margin-top: var(--large-space) !important;
}

.cart .order .discount > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cart .order .discount input[type=text] {
    display: block;
    width: 100%;
    border: 1px solid var(--gray-color);
    border-radius: var(--normal-radius);
    outline: none;
    padding: var(--normal-space);
    margin-left: var(--normal-space);
    font-size: var(--small-font-size);
}

.cart .order .discount .btn {
    background: var(--blue-color);
    color: white;
    border: none;
    border-radius: var(--normal-radius);
    padding: var(--normal-space);
    cursor: pointer;
    font-size: var(--small-font-size);
}

.cart .order .payment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cart .order .payment .payment-item {
    width: 50%;
    margin-left: var(--normal-space);
    padding: var(--large-space) var(--normal-space);
    border: 1px solid var(--gray-color);
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cart .order .payment .payment-item:last-child {
    margin-left: 0;
}

.cart .order .payment .payment-item label {
    margin-right: var(--normal-space);
    font-size: var(--small-font-size);
    line-height: 1.8;
    cursor: pointer;
}

.cart .order .payment .payment-item input {
    cursor: pointer;
}

.cart .order .payment .payment-item:has(> input:checked) {
    border: 1px solid var(--blue-color);
}

.compare {
    width: 100%;
    overflow-x: auto;
    margin-top: var(--large-space);
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.compare:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.compare table {
    display: table;
}

.compare table tr {
    display: table-cell;
}

.compare table tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 250px;
    height: 120px;
    padding: var(--large-space) 0;
    border-bottom: 1px solid var(--gray-color);
}

.compare table tr td p {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-left: 1px solid var(--gray-color);
    padding: var(--normal-space);
    line-height: 2;
}

.compare table tr:first-child td {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 150px;
}

.compare table tr:last-child td p {
    border: none;
}

.compare table tr td:last-child {
    border: none;
}

.compare table tr .img{
    position: relative;
}

.compare table tr .img .remove{
    position: absolute;
    top: 10px;
    left: 10px;
}

.compare table tr .img .remove i{
    font-size: var(--large-font-size);
}

.compare table tr td img {
    height: 100%;
}

.compare table .add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
}

.compare table .add td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px dashed var(--gray-color) !important;
    border-radius: var(--normal-radius);
    margin-right: var(--xx-large-space);
    cursor: pointer;
}

.compare table .add td i {
    font-size: var(--xxxx-large-font-size);
    color: var(--scondry-color);
    margin-bottom: var(--normal-space);
}

.compare table .add td span {
    color: var(--scondry-color);
}

.dialog {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.dialog-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dialog .dialog-main {
    background: white;
    padding: var(--large-space);
    border-radius: var(--large-radius);
    width: 300px;
}

.dialog .dialog-main .close {
    cursor: pointer;
}

.dialog .dialog-main .add {
    margin-top: var(--xx-large-space);
}

.dialog .dialog-main label {
    display: block;
    font-size: var(--small-font-size);
    color: var(--scondry-color);
    margin-bottom: var(--normal-space);
}

.dialog .dialog-main .select2 {
    display: block;
    width: 100% !important;
}

.dialog .dialog-main .select2 .select2-selection--single {
    height: 40px !important;
}

.dialog .dialog-main .select2 .select2-selection__arrow {
    height: 38px !important;
}

.dialog .dialog-main .select2 .select2-selection__rendered {
    line-height: 40px !important;
}

.dialog .dialog-main .btn {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: var(--small-font-size);
    color: white;
    background: var(--red-color);
    margin-top: var(--xx-large-space);
    border-radius: var(--small-radius);
}


.reviews .review-item {
    display: block;
    width: calc(25% - var(--xxx-large-space));
    margin: 0 var(--large-space);
    margin-bottom: var(--xxx-large-space);
    direction: rtl;
    background: white;
    border: 1px solid var(--gray-color);
    border-radius: var(--large-radius);
    overflow: hidden;
}

.reviews .review-item .img {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--normal-radius)
}

.reviews .review-item .img img {
    width: 100% !important;
    height: 100%;
}

.reviews .review-item .content {
    padding: var(--normal-space) var(--large-space);
}

.reviews .review-item div h2 {
    font-weight: bold;
    min-height: 40px;
    margin-top: var(--small-space);
}

.reviews .review-item .date {
    font-size: var(--small-font-size);
    color: var(--scondry-color);
    text-align: left;
    margin-top: var(--small-space);
}

.review-main {
    max-width: 1200px;
    margin: auto;
}

.review-main .title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 var(--normal-space);
}

.review-main .title h1 {
    font-size: var(--x-large-font-size);
}

.review-main .title p {
    color: var(--scondry-color);
}

.review-main > video {
    display: block;
    width: 100%;
    margin: var(--xxxx-large-space) auto;
    border-radius: var(--xx-large-radius);
}

.review-main .text {
    margin: var(--large-space) var(--normal-space);
}

.menu{
    display: none;
}

@media screen and (max-width: 1366px) {
    .recommend .category {
        padding: 0 var(--large-space);
    }

    .store-item {
        width: calc(33% - var(--xxx-large-space));
    }

    .product .product-header .detail .feature ul {
        min-height: 105px;
    }

    .user .content .content-items .item {
        margin-left: var(--normal-space);
    }

    .user .content .content-items .item > img {
        width: 55px;
        margin-left: var(--normal-space);
    }
}

@media screen and (max-width: 1280px) {
    .recommend .category {
        padding: 0 var(--normal-space);
    }

    .recommend .category .product .item img {
        width: calc(100% - var(--xx-large-space));
    }

    .recommend .category .product .item:hover img {
        width: calc(100% - var(--large-space));
    }

    .store .sidebar {
        width: 240px !important;
    }

    .store .body {
        width: calc(100% - (245px + var(--xx-large-space)));
    }

    .store-item {
        width: calc(33% - var(--x-large-space));
        margin: 0 calc(var(--x-large-space) / 2);
    }

    .reviews .review-item {
        width: calc(33% - var(--x-large-space));
        margin: 0 calc(var(--x-large-space) / 2);
    }

    .product .product-header {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .product .product-header .img {
        width: 300px;
        margin-left: var(--xx-large-space);
        margin-top: var(--x-large-space);
    }

    .product .product-header .img .image-slider .item {
        width: 90px;
        height: 90px;
        margin-left: var(--large-space);
    }

    .product .product-header .detail {
        width: calc(100% - 325px);
        margin: 0;
    }

    .product .product-header .price {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-top: var(--large-space);
        min-height: unset;
    }

    .product .product-header .price > ul {
        width: 100%;
        margin-left: var(--xxxx-large-space);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .product .product-header .price > ul .item {
        width: 50%;
        padding: 0;
        border: none;
    }

    .product .product-header .price > div {
        width: 500px;
    }

    .product .product-header .price > div .p {
        margin-top: 0;
        min-height: unset;
    }

    .product .product-header .price > div .p div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .product .product-header .price > div .p div s {
        margin-left: var(--normal-space);
    }

    .product .product-detail .product-detail-content .product-detail-content-main {
        width: 100%;
        margin-left: 0;
    }

    .product .product-detail .product-detail-content .price {
        display: none;
    }

    .user .content .content-items .item {
        width: 255px;
    }
}

@media screen and (max-width: 1024px) {
    .main {
        padding: var(--normal-space) var(--xxxx-large-space);
    }

    .header .search .search-box {
        width: 450px;
    }

    .nav > ul > li {
        padding: var(--small-space);
    }

    .nav > ul a span {
        font-size: var(--very-small-font-size);
    }

    .nav > ul a i {
        font-size: var(--normal-font-size);
    }

    .slider {
        margin-top: var(--x-large-space);
    }

    .slider .item img {
        width: 1200px !important;
    }

    .slider .owl-nav button.owl-prev, .slider .owl-nav button.owl-next {
        width: 60px !important;
        height: 35px !important;
    }

    .categories .item {
        width: 120px;
    }

    .categories .item span {
        font-size: var(--normal-font-size);
    }

    .recommend {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .recommend .category {
        width: 50%;
        padding: 0 var(--xxxx-large-space);
        margin-bottom: var(--xxxx-large-space);
    }

    .recommend .category:nth-child(even) {
        border-left: none;
    }

    .recommend .category > h2 {
        font-size: var(--normal-font-size);
    }

    .recommend .category > p {
        font-size: 10px;
        color: var(--scondry-color);
        margin-bottom: var(--large-space);
    }

    .recommend .category .product .item img {
        width: calc(100% - var(--xxxx-large-space));
    }

    .recommend .category .product .item:hover img {
        width: calc(100% - var(--xx-large-space));
    }

    .footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .footer .about {
        max-width: 100%;
    }

    .footer .left {
        margin-right: 0;
        margin-top: var(--xx-large-space);
    }

    .store .sidebar {
        width: 210px !important;
    }

    .store .body {
        width: calc(100% - (215px + var(--xx-large-space)));
    }

    .store .body .sort ul li {
        margin-left: var(--normal-space);
    }

    .store .body .sort ul li a {
        font-size: var(--very-small-font-size);
    }

    .store .body .sort ul li b {
        font-size: var(--very-small-font-size);
    }

    .store .body .sort p {
        display: none;
    }

    .store-item {
        width: calc(50% - var(--x-large-space));
        max-width: 300px;
        margin: 0 calc(var(--x-large-space) / 2);
        margin-bottom: var(--large-space);
    }

    .store-item .content {
        aspect-ratio: 3/1.9;
    }

    .reviews .review-item {
        width: calc(50% - var(--x-large-space));
        max-width: 300px;
        margin: 0 calc(var(--x-large-space) / 2);
        margin-bottom: var(--large-space);
    }

    .breadcrumb {
        margin: var(--xx-large-space) 0;
    }

    .product {
        margin: 0;
    }

    .product .product-header {
        -ms-flex-wrap: unset;
            flex-wrap: unset;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .product .product-header .img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .product .product-header .img .image-slider .item {
        width: 80px;
        height: 80px;
        margin-left: var(--normal-space);
    }

    .product .product-header .detail {
        width: 100%;
        margin-top: var(--large-space);
    }

    .product .product-header .detail .title {
        font-size: var(--large-font-size);
        padding: var(--normal-space) 0;
        line-height: 2;
    }

    .product .product-header .detail .sub-title h1 {
        font-size: var(--very-small-font-size);
    }

    .product .product-header .detail .sub-title p {
        font-size: var(--very-small-font-size);
    }

    .product .product-header .detail .rate a {
        font-size: var(--very-small-font-size);
    }

    .product .product-header .detail .rate div span {
        font-size: var(--very-small-font-size);
    }

    .product .product-header .detail .rate div i {
        font-size: var(--normal-font-size);
    }

    .product .product-header .detail .rate div b {
        font-size: var(--small-font-size);
    }

    .product .product-header .detail .feature h3 {
        font-size: var(--normal-font-size);
    }

    .product .product-header .detail .feature ul {
        min-height: 135px;
        overflow: hidden;
    }

    .product .product-header .detail .feature ul li span {
        font-size: var(--small-font-size);
    }

    .product .product-header .detail .feature ul li b {
        font-size: var(--small-font-size);
    }

    .product .product-header .detail .description i {
        font-size: var(--very-small-font-size);
    }

    .product .product-header .detail .description span {
        font-size: var(--very-small-font-size);
    }

    .user .sidebar {
        display: none;
        width: 100%;
    }

    .user .sidebar-show{
        display: block!important;
    }

    .user .content {
        width: 100%;
        display: block;
    }

    .user .content .content-items {
        display: none;
    }

    .user .sidebar .mobile-items {
        display: none;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: var(--xx-large-space) var(--large-space);
        border-top: 1px solid var(--gray-color);
        border-bottom: 1px solid var(--gray-color);
        padding-top: var(--large-space);
    }

    .user .mobile-items-show{
        display: -webkit-box!important;
        display: -ms-flexbox!important;
        display: flex!important;
    }

    .user .user-back{
        display: inline-block;
    }

    .user .sidebar .mobile-items .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: var(--large-space);
        width: 150px;
    }

    .user .sidebar .mobile-items .item img {
        width: 45px;
    }

    .user .sidebar .mobile-items .item > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-right: var(--small-space);
        margin-top: var(--small-space);
    }

    .user .sidebar .mobile-items .item span {
        font-size: 11px;
    }

    .user .sidebar .mobile-items .item b {
        font-size: 11px;
        margin-bottom: var(--small-space);
    }

    .user .content .content-section .form .item {
        width: 100%;
    }

    .cart .sidebar {
        display: block;
        background: white;
        width: 100%;
        position: fixed;
        top: unset;
        bottom: 0;
        left: 0;
        padding: var(--large-space);
        border: none;
        border-top: 1px solid var(--gray-color);
        border-radius: var(--large-radius) var(--large-radius) 0 0;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    .cart .sidebar .item {
        display: none;
    }

    .cart .sidebar .item:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        margin-top: var(--normal-space);
    }

    .cart .sidebar .item:nth-last-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .cart .content {
        display: block;
        width: 100%;
        vertical-align: top;
        margin-left: 0;
        margin-top: var(--large-space);
    }

    .menu{
        display: none;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background: rgba(0,0,0,0.1);
    }

    .menu .menu-list{
        width: 80%;
        max-width: 300px;
        height: 100%;
        position: fixed;
        right: 0;
        top: 0;
        background: white;
        padding: var(--normal-space);
        overflow-y: auto;
        -webkit-animation: menu 0.3s;
                animation: menu 0.3s;
    }

    .menu .menu-list > a img{
        width: 100px;
        margin: var(--normal-space);
    }

    .menu .menu-list ul{
        width: 100%;
        padding: var(--normal-space);
        margin-top: var(--normal-space);
        border-top: 1px solid var(--gray-color);
        list-style: none;
    }

    .menu .menu-list ul li a{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 10px 0;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .menu .menu-list ul li a div{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .menu .menu-list ul li a div img{
        margin-left: var(--normal-space);
    }
}

@-webkit-keyframes menu {
    from{
        right: -1000px;
    }

    to{
        right: 0;
    }
}

@keyframes menu {
    from{
        right: -1000px;
    }

    to{
        right: 0;
    }
}

@media screen and (max-width: 736px) {
    .main {
        padding: var(--normal-space) var(--large-space);
    }

    .header {
        padding: var(--small-space) 0;
    }

    .header .search .logo {
        display: none;
    }

    .header .search {
        width: 100%;
        margin-left: var(--xx-large-space);
    }

    .header .search .search-box {
        width: 100%;
        height: 45px;
        padding: var(--small-space) var(--large-space);
        border-radius: var(--large-radius);
    }

    .header .account i {
        font-size: var(--xxx-large-font-size);
    }

    .header .account .card {
        margin-right: var(--large-space);
    }

    .mobile-header {
        padding: var(--small-space) 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .mobile-header .logo {
        width: 100px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .mobile-header .logo img {
        width: 100%;
    }

    .mobile-header .menu-icon i {
        font-size: var(--xxx-large-font-size);
    }

    .mobile-header .support i {
        font-size: var(--xxx-large-font-size);
    }

    .nav {
        display: none;
    }

    .slider {
        margin-top: var(--large-space);
    }

    .slider .owl-stage-outer {
        border-radius: var(--x-large-radius);
    }

    .slider:hover .owl-nav {
        display: none;
    }

    .slider .owl-dots {
        bottom: 0;
    }

    .slider .item img {
        width: 736px !important;
    }

    .categories {
        margin-top: var(--large-space);
    }

    .categories .item {
        width: 90px;
        margin: var(--normal-space);
    }

    .categories .item span {
        font-size: var(--small-font-size);
    }

    .offer {
        margin: var(--large-space) 0;
    }

    .section-header {
        padding: var(--large-space) var(--normal-space);
        border-radius: var(--normal-radius);
    }

    .section-header h3 i {
        font-size: var(--x-large-font-size);
        margin-left: var(--normal-space);
    }

    .section-header h3 a {
        font-size: var(--normal-font-size);
    }

    .section-header > a span {
        font-size: var(--very-small-font-size);
    }

    .section-header > a i {
        font-size: var(--very-small-font-size);
    }

    .product-slider .item {
        width: 200px;
    }

    .product-slider .item .img {
        border-radius: var(--large-radius);
    }

    .product-slider .item .content {
        aspect-ratio: 3/2.4;
        padding: var(--large-space) 0;
    }

    .product-slider .item .content h2 {
        font-size: var(--small-font-size);
        line-height: var(--xx-large-font-size);
        font-weight: 500;
    }

    .product-slider .item .content .price {
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: end;
    }

    .product-slider .item .content .price .p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .product-slider .item .content .price .p s {
        font-size: var(--very-small-font-size);
        margin-top: 2px;
    }

    .product-slider .item .content .price .p b {
        font-size: var(--large-font-size);
    }

    .product-slider .item .content .price .p span {
        font-size: var(--very-small-font-size);
    }

    .product-slider .item .content .price .percent span {
        color: white;
        font-size: var(--very-small-font-size);
    }

    .product-slider .item .content .rate b {
        font-size: var(--very-small-font-size);
    }

    .product-slider .item .content .rate i {
        font-size: var(--normal-font-size);
    }

    .product-slider .item .content .rate span {
        font-size: var(--very-small-font-size);
        color: var(--scondry-color);
    }

    .nav-style .owl-nav {
        display: none;
    }

    .nav-style .owl-nav button.owl-next, .nav-style .owl-nav button.owl-prev {
        display: none;
    }

    .poster {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 0;
    }

    .poster .item {
        width: 100%;
    }

    .poster .item img {
        border-radius: var(--normal-space);
    }

    .poster .item:first-child {
        margin-left: 0;
        margin-bottom: var(--normal-space);
    }

    .poster .item-desktop-full {
        display: none;
    }

    .poster .item-mobile-full {
        display: block;
    }

    .poster .item-desktop-full img, .poster .item-mobile-full img {
        width: 100%;
        border-radius: var(--normal-radius);
    }

    .most-sell {
        margin: var(--large-space) 0;
        padding-top: var(--large-space);
    }

    .recommend {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: var(--large-space) 0;
        padding: 0;
    }

    .recommend .category {
        width: 100%;
        padding: 0 var(--normal-space);
        margin-bottom: var(--large-space);
        border-left: none;
        border-bottom: 1px solid var(--gray-color);
    }

    .recommend .category:last-child {
        margin-bottom: 0;
    }

    .recommend .category:last-child {
        border-bottom: none;
    }

    .recommend .category .product {
        max-width: 350px;
        margin: auto;
    }

    .review .item {
        width: 250px;
        min-height: 220px;
    }

    .footer {
        padding: var(--x-large-space);
    }

    .footer .about .item b {
        font-size: var(--very-small-font-size);
    }

    .footer .about .item h1 {
        margin: var(--normal-space) 0;
    }

    .footer .about .item .about-text {
        line-height: 1.8;
    }

    .footer .about .item p, .footer .about .item span, .footer .about .item a {
        font-size: var(--very-small-font-size);
        line-height: 1.8;
    }

    .copy-right {
        margin-top: var(--large-space);
        font-size: 10px;
    }

    .breadcrumb {
        margin: var(--large-space) 0;
    }

    .breadcrumb .item {
        font-size: var(--very-small-font-size);
        line-height: 2;
    }

    .store {
        margin-top: var(--x-large-space);
    }

    .store .sidebar {
        display: none;
        width: 100% !important;
        height: 100vh;
        margin-left: 0;
        background: white;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
        padding: var(--normal-space);
        overflow-y: auto;
    }

    .store .show-sidebar {
        display: block;
    }

    .store .sidebar .sidebar-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: var(--normal-space) var(--large-space);
        margin-bottom: var(--large-space);
    }

    .store .sidebar .sidebar-header h3 i {
        margin-left: var(--large-space);
        font-size: var(--x-large-font-size);
    }

    .store .sidebar .sidebar-header h3 .fa-close {
        display: inline-block;
    }

    .store .sidebar .sidebar-header h3 .fa-filter-list {
        display: none;
    }

    .store .sidebar .sidebar-header h3 span {
        font-size: var(--large-font-size);
    }

    .store .sidebar .sidebar-header a {
        font-size: var(--very-small-font-size);
        color: var(--blue-color);
        cursor: pointer;
    }

    .store .sidebar .sidebar-section {
        padding: var(--large-space);
        /*background: var(--gray-color);*/
        margin-bottom: var(--normal-space);
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--gray-color);
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .store .sidebar .sidebar-section:last-child {
        border-bottom: none;
    }

    .store .sidebar .sidebar-section h3 .fa-angle-down {
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }

    .store .body {
        width: 100%;
    }

    .store .body .sort {
        width: 100%;
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        background: white;
        margin-bottom: 0;
        padding: var(--large-space);
        border-radius: var(--xxxx-large-radius) var(--xxxx-large-radius) 0 0;
        z-index: 9;
        -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    }

    .store .body .show-sort {
        display: block;
    }

    .store .body .sort div {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .store .body .sort div h3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: var(--small-space) var(--large-space);
    }

    .store .body .sort div h3 b {
        font-size: var(--large-font-size);
    }

    .store .body .sort div h3 .fa-bars-sort {
        display: none;
    }

    .store .body .sort div h3 .fa-close {
        display: inline-block;
        font-size: var(--x-large-font-size);
        margin-left: var(--xx-large-space);
    }

    .store .body .sort ul {
        width: 100%;
        display: block;
        margin-top: var(--large-space);
    }

    .store .body .sort ul li {
        width: 100%;
        padding: var(--large-space);
        border-bottom: 1px solid var(--gray-color);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .store .body .sort ul li:last-child {
        border-bottom: none;
    }

    .store .body .sort ul .selected:after {
        content: "\2713";
        font-size: var(--normal-font-size);
    }

    .store .body .sort ul li a {
        font-size: var(--normal-font-size);
    }

    .store .body .filter {
        display: block;
    }

    .store .body .filter a {
        margin-left: var(--x-large-space);
        cursor: pointer;
    }

    .store .body .filter .filter-btn i {
        font-size: var(--large-font-size);
    }

    .store .body .filter .sort-btn i {
        font-size: var(--large-font-size);
    }

    .store-item {
        width: 100%;
        max-width: 100%;
        margin: 0 0 var(--xxx-large-space) 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        max-height: 130px;
    }

    .store-item .img {
        width: 130px;
        height: 130px;
        margin-left: var(--large-space);
    }

    .store-item .img img {
        width: 80%;
    }

    .store-item:hover .img img {
        width: 85%;
    }

    .store-item .content {
        width: calc(100% - (130px + var(--large-space)));
        height: 130px;
        aspect-ratio: unset;
        padding: 0;
    }

    .store-item .content .rate {
        margin-top: var(--normal-space);
    }

    .reviews {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .reviews .review-item {
        width: 100%;
        max-width: 350px;
        margin: 0;
        margin-bottom: var(--xxxx-large-space);
    }

    .product .product-header .price {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: var(--large-space);
        min-height: unset;
    }

    .product .product-header .price > ul {
        width: 100%;
        margin-left: 0;
        display: block;
        -ms-flex-wrap: unset;
            flex-wrap: unset;
    }

    .product .product-header .price > ul .item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: var(--large-space) 0;
        border-bottom: 1px solid var(--gray-color);
        list-style: none;
    }

    .product .product-header .price .item p {
        font-size: var(--small-font-size);
    }

    .product .product-header .price .item i {
        font-size: var(--large-font-size);
    }

    .product .product-header .price > div {
        width: 100%;
        margin-top: var(--large-space);
    }

    .product .product-header .price > div .p {
        margin-top: 0;
        min-height: unset;
    }

    .product .product-header .price > div .p div {
        display: block;
    }

    .product .product-header .price > div .p div s {
        margin-left: 0;
    }

    .product .similar .product-slider .item {
        width: 220px;
    }

    .product .similar .product-slider .item .content {
        aspect-ratio: 3/2;
    }

    .product .product-detail .product-detail-header a {
        padding: var(--large-space) var(--small-space);
        margin-left: 0;
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main {
        width: 100%;
        margin-left: 0;
        display: block;
    }

    .product .product-detail .product-detail-content .product-detail-content-main .title a {
        font-size: var(--normal-font-size);
        line-height: 2;
    }

    .product .product-detail .product-detail-content .product-detail-content-main .description .text {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .show-more span {
        font-size: var(--very-small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .show-more i {
        font-size: var(--very-small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .specifications .table th {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .specifications .table td {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea::-webkit-input-placeholder {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea::-moz-placeholder {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea:-ms-input-placeholder {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea::-ms-input-placeholder {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form textarea::placeholder {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .create form button {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item {
        padding: var(--large-space);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item:last-child {
        margin-bottom: 0;
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item .text {
        font-size: var(--small-font-size);
        font-weight: normal;
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item .reply-form input {
        height: 35px;
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item .reply-form button {
        height: 35px;
        line-height: 35px;
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item .answer h6 {
        font-size: var(--small-font-size);
    }

    .product .product-detail .product-detail-content .product-detail-content-main .comments .comments-list .item .answer > div {
        margin: var(--x-large-space);
    }

    .product .product-detail .product-detail-content .price {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        top: unset;
        width: 100%;
        background: white;
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    .product .product-detail .product-detail-content .price .p {
        margin: 0;
        min-height: unset;
    }

    .product .product-detail .product-detail-content .price .p div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .product .product-detail .product-detail-content .price .p div s {
        margin-left: var(--normal-space);
    }

    .product .product-detail .product-detail-content .price ul {
        display: none;
    }

    .main > .list {
        margin-top: var(--normal-space);
        padding: 0;
        border: none;
    }

    .main > .list .list-header {
        padding-bottom: var(--large-space);
    }

    .main > .list .list-header h1 {
        font-size: var(--normal-font-size);
        line-height: 2;
    }

    .main > .list .list-header a span {
        display: none;
    }

    .main > .list .list-content .store-item .content {
        aspect-ratio: 3/1.85;
    }

    .main > .list .list-content .store-item .rate .remove {
        font-size: var(--large-font-size);
    }

    .user {
        margin: var(--large-space) 0;
    }

    .user .sidebar {
        padding: 0;
        border: none;
    }

    .user .sidebar .profile {
        padding: 0;
    }

    .user .sidebar .profile .img {
        margin: 0;
    }

    .user .sidebar .rank {
        padding: 0;
    }

    .user .sidebar .mobile-items {
        margin: var(--xx-large-space) 0;
    }

    .user .sidebar .mobile-items .item {
        width: 50%;
    }

    .user .sidebar .mobile-items .item:nth-child(even) {
        padding-right: var(--normal-space);
    }

    .user .content .content-section h2 {
        padding: var(--xx-large-space) var(--large-space);
    }

    .user .content .content-section .form .item label {
        margin-bottom: var(--normal-space);
    }

    .user .content .content-section .section-nav .item {
        margin: 0 var(--small-space);
        padding: var(--normal-space) var(--small-space);
    }

    .user .content .content-section .section-nav {
        white-space: nowrap;
        overflow-x: auto;
    }

    .user .content .content-section .section-nav .item span{
        font-size: var(--small-font-size);
    }

    .user .content .content-section .order .order-info li span{
        font-size: var(--very-small-font-size);
    }

    .user .content .content-section .order .order-info li b{
        font-size: var(--small-font-size);
    }

    .user .content .content-section .product-slider .item {
        width: 220px;
    }

    .cart .content .item .item-content img {
        width: 100px;
        height: 100px;
    }

    .cart .content .item .item-content .item-detail {
        width: calc(100% - 100px);
        margin-right: var(--large-space);
    }

    .cart .content .item .item-content h1 {
        font-size: var(--small-font-size);
    }

    .cart .content .item .item-content ul {
        margin: var(--small-space) 0;
    }

    .cart .content .item .item-content ul li {
        padding: 0;
        padding-bottom: var(--small-space);
        margin-left: 0;
    }

    .cart .content .item .item-content ul li i {
        font-size: var(--very-small-font-size);
    }

    .cart .content .item .item-content ul li span {
        font-size: 11px;
    }

    .cart .content .item .item-price .count {
        width: 100px;
    }

    .cart .content .item .price .p s {
        display: inline-block;
        color: var(--scondry-color);
        font-size: var(--small-font-size);
        margin-bottom: var(--small-space);
    }

    .cart .content .item .price .p b {
        font-size: var(--x-large-font-size);
    }

    .cart .content .item .price .p div {
        margin-top: var(--small-space);
    }

    .cart .content .item .price .p div span {
        color: var(--scondry-color);
        font-size: var(--small-font-size);
    }

    .cart .content .item .price .percent {
        display: inline-block;
        margin-right: var(--small-space);
        padding: 2px 8px;
        background: var(--red-color);
        border-radius: var(--large-radius);
    }

    .cart .content .item .price .percent span {
        font-size: 11px;
        color: white;
    }

    .cart .order .order-slider .order-slider-item {
        width: 60px;
    }

    .cart .order .address > div div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .cart .order .address select {
        width: 100%;
    }

    .cart .order .address .add-address {
        margin-top: var(--large-space);
    }

    .cart .order .payment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .cart .order .payment .payment-item {
        width: 100%;
        margin-bottom: var(--normal-space);
        margin-left: 0;
    }

    .compare table tr td {
        width: 150px;
        height: 120px;
        padding: var(--normal-space) 0;
    }

    .compare table tr td img {
        height: 90%;
    }

    .compare table tr td p {
        font-size: var(--small-font-size);
    }

    .compare table tr:first-child td {
        font-size: var(--small-font-size);
        width: 100px;
    }

    .compare table .add td i {
        font-size: var(--xx-large-font-size);
    }

    .compare table .add td span {
        font-size: var(--small-font-size);
    }


    .review-main .title {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .review-main .title h1 {
        font-size: var(--normal-font-size);
    }

    .review-main .title p {
        font-size: var(--small-font-size);
        text-align: left;
        margin-top: var(--normal-space);
    }

    .review-main > video {
        display: block;
        width: 100%;
        margin: var(--xx-large-space) auto;
        border-radius: var(--large-radius);
    }

    .review-main .text {
        margin: var(--large-space) var(--normal-space);
    }

    .user .content .content-section .order {
        padding: var(--large-space);
    }

}

@media screen and (max-width: 600px){
    .slider .item img {
        width: 600px !important;
    }
}

.waiting {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    z-index: 99;
}

.waiting-main {
    background: white;
    width: 250px;
    height: 130px;
    border-radius: var(--large-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.waiting-main .logo {
    width: 120px;
    margin-top: var(--normal-space);
}

.temp-dialog {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 8;
}

.not-found {
    width: 100%;
    min-height: 60vh;
    margin: 10px auto;
    text-align: center;
}

.not-found img {
    width: 30%;
    min-width: 250px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    opacity: 0.3;
}

.not-found p {
    margin-top: -50px;
    color: var(--scondry-color);
}

.products > nav {
    display: none;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.pagination .page-item {
    margin: 0 3px;
}

.pagination .page-item a, .pagination .page-item span {
    width: 35px;
    height: 35px;
    border-radius: var(--normal-radius);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
}

.pagination .active {
    background: var(--gray-color);
    border-radius: var(--normal-radius);
}

.pagination .page-item:hover a {
    border: 3px solid var(--gray-color);
}

.store .loading {
    text-align: center;
    display: none;
}

.store .loading img {
    width: 50px;
}

.table{
    overflow-x: auto ;
    padding: var(--normal-space);
}

.table table {
    width: 100%;
}

.table table td, .table table th {
    text-align: center;
    font-size: var(--small-font-size);
    padding: var(--large-space);
    border-bottom: 1px solid var(--gray-color);
    white-space: nowrap;
}

.table table tr:last-child td{
    border-bottom: none;
}