/*
Theme Name: tiama
Theme URI: https://tiama.ir
Author: reza nikbakht
Author URI: https://tiama.ir
Description: made in reza
Requires PHP: 7.0
Version: 1.3
Text Domain: twentytwentyfour
Tags: tiama
*/

* {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
}
@font-face {
    font-family: "yekanbakh";
    src: url("fonts/YekanBakhFaNum-VF.woff");
    src: url("fonts/YekanBakhFaNum-VF.woff2");
}
:root {
    --main-color : #F93423;
    --second-color : #1BD2A3;
}
a {
    transition: border-bottom .2s ease-in-out;
    text-decoration: none;
    color: #303030;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
}
input[type="date"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
textarea {
    font-family: "yekanbakh";
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    width: 100%;
    padding: 8px;
    height: 48px;
}
textarea {
    height: auto;
}
input {
    font-family: "yekanbakh";
}
button {
    font-family: "yekanbakh";
}

.button, input[type="submit"] {
    background: var(--main-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px !important;
    font-family: 'yekanbakh';
    font-weight: 400 !important;
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease-in-out;
    line-height: 2;
    font-size: 14px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}
body {
    direction: rtl;
    font-size: 14px;
    text-align: right;
    color: #303030;
    font-family: "yekanbakh";
    font-weight:400;
    font-style: normal;
}
/*  header  */
.header {
    background: #fff;
    box-shadow: 0px 4px 10px 0px #0000000D;
    margin-bottom: 20px;
    z-index: 5;
    position: relative;
}
.hero-top-header {

}
.container {
    width: 1440px;
    margin:auto;
    max-width: 100%;
}
.top-header {
    display: flex;
    justify-content: space-between;
    color: #7E7E7E;
    padding: 7px 0;
    font-size: 13px;
    font-weight: 350;
}
.top-header .t-h-right .bullet-notic {
    width: 8px;
    height: 8px;
    background: #5C9DFF;
    display: inline-block;
    border-radius: 50%;
    margin-left: 6px;
    animation: on-off 1s infinite;
}
@keyframes on-off {
    50% {
        opacity: 0;
    }
}
.top-header .t-h-left .contact-header {
    color: var(--main-color);
    margin-right: 20px;
    font-weight: 450;
}
.top-header .t-h-left .contact-header i {
    font-size: 18px;
    margin-right: 6px;
}
.main-header {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}
.m-h-right {
    display: flex;
    width: 57%;
    align-items: center;
}
.m-h-right .logo {
    max-width: 130px;
}
.m-h-right .logo a {
    display: flex;
}
.m-h-right .logo a img {
    max-width: 100%;
}
.m-h-right .search-main {
    width: 100%;
    margin-right: 71px;
    position: relative;
}
.overlay {
    position: fixed;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(5px);
    opacity: 0;
    z-index: 4;
    visibility: hidden;
    transition: all .2s ease-in-out;
}
/* ajax */
.content-ajax-search {
    position: absolute;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 10;
    border: 1px solid #ddd;
    border-top: 0;
    border-bottom: 0;
    padding: 0 10px;
    opacity: 0;
    visibility: visible;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    pointer-events: none;
}
.show {
    opacity: 1 !important;
    visibility: visible !important;
    transition: all .2s ease-in-out;
    pointer-events: visible !important;
}
.loader-ajax-search {
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    z-index: 9;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 0;
    border-bottom: 0;
    padding: 15px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/*  loder  */
.loader-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    height: 40px;
}
.loader-ajax-search .loader-search span {
    width: 15px;
    height: 15px;
    background: orange;
    border-radius: 50%;
    animation: pulse 1s infinite ease-in-out;
    animation-delay: calc(var(--i) * 0.2s);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
.loader-search .loader-search span:nth-child(1) {
    --i: 0;
}
.loader-ajax-search .loader-search span:nth-child(2) {
    --i: 1;
}
.loader-ajax-search .loader-search span:nth-child(3) {
    --i: 2;
}
.loader-ajax-search .loader-search span:nth-child(4) {
    --i: 3;
}
.loader-ajax-search .loader-search span:nth-child(5) {
    --i: 4;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        background: orange;
    }
    50% {
        transform: scale(1.5);
        background: pink;
    }
}
.content-ajax-search ul {
    max-height: 300px;
    overflow-y: auto;
    padding-left: 10px;
    margin: 10px 0;
}
.content-ajax-search ul li a {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.content-ajax-search ul li:last-child a {
    border-bottom: 0;
}
.content-ajax-search ul li a img {
    width: 55px;
    height: max-content;
    margin-left: 5px;
}
.content-ajax-search ul li a div h3 {
    font-size: 14px;
    margin: 1px 0 8px;
    font-weight: 600;
    height: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
}
.content-ajax-search ::-webkit-scrollbar {
    width: 6px;
}
.content-ajax-search ul li a div {
    font-size: 14px;
    font-weight: 500;
}
.content-ajax-search ul li a div del {
    color: #7E7E7E;
    font-size: 13px;
    font-weight: 400;
}
.content-ajax-search ul li a div ins {
    text-decoration: none;
    margin-right: 5px;
}
.content-ajax-search ul li a div del .woocommerce-Price-currencySymbol,
.content-ajax-search div .woocommerce-Price-amount:first-of-type > bdi > span.woocommerce-Price-currencySymbol {
    display: none;
}
/*.content-ajax-search .woocommerce-Price-amount {
    font-size: 13px;
}*/
.not-found-search {
    text-align: center;
}
.not-found-search img {
    max-width: 42%;
    margin: 10px 0;
}
.not-found-search p {
    color: var(--main-color);
    font-weight: bold;
    padding: 10px 0 20px;
    font-size: 16px;
}

.m-h-right .search-main form {
    position: relative;
}
.m-h-right .search-main form input[type="search"] {
    background: #F3F4F6;
    border-radius: 7px;
    font-family: "yekanbakh";
    font-size: 13px;
    padding: 15px;
    width: 100%;
    padding-right: 50px;
}
.search-main form button {
    position: absolute;
    right: 8px;
    top: 10px;
    background: transparent;
    cursor: pointer;
}
.m-h-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.m-h-left .cart-btn-header {
    position: relative;
}
.m-h-left .cart-btn-header:hover .cart-content {
    opacity: 1;
    visibility: visible;
    top: 60px;
}
.cart-btn-header .cart-content:before {
    content: "";
    top: -20px;
    left: 0;
    position: absolute;
    height: 30px;
    width: 100%;
}
.cart-btn-header .cart-content {
    background: #ffffff;
    position: absolute;
    width: 300px;
    left: 0;
    top: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
}
.cart-btn-header .cart-content ul li {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.cart-btn-header .cart-content ul li  a ,
.cart-btn-header .cart-content p.woocommerce-mini-cart__buttons  a{
    transition: none !important;
}
.cart-btn-header .cart-content ul li > a {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 450;
}
.cart-btn-header .cart-content ul li > a img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-left: 4px;
}
.cart-btn-header .cart-content ul li .mini-cart-detail {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 0 10px;
    color: #6c6c6c;
    align-items: center;
    min-height: 33px;
}
.cart-btn-header .cart-content ul li .mini-cart-detail a.remove {
    color: red !important;
    font-size: 24px;
}
.woocommerce a.remove:hover {
    background: unset;
}
.cart-btn-header .cart-content .mini-cart-detail span {
    font-size: 13px;
    width: auto;
    height: auto;
}
.cart-btn-header .cart-content p.woocommerce-mini-cart__total {
    text-align: center;
    margin-bottom: 10px;
}
.cart-btn-header .cart-content p.woocommerce-mini-cart__buttons {
    display: flex;
    justify-content: space-between;
}
.cart-btn-header .cart-content p.woocommerce-mini-cart__buttons a:first-of-type {
    background: #fff !important;
    color: var(--second-color) !important;
    border: 1px solid var(--second-color);
    font-size: 13px;
}
.cart-btn-header .cart-content p.woocommerce-mini-cart__buttons a.button.checkout  {
    background: var(--second-color);
    color: #fff;
    font-size: 13px;
}
.m-h-left .cart-btn-header > a {
    background: var(--second-color);
    color: #fff;
    text-decoration: none;
    padding: 13.8px;
    border-radius: 7px;
    display: flex;
}
.m-h-left .cart-btn-header a .cart-btn-text {
    font-weight: 450;
    border-left: 1px solid #fff;
    padding-left: 15px;
    margin-left: 15px;
}
.m-h-left .favorite-btn-header a {
    text-decoration: none;
    padding: 13px;
    border-radius: 7px;
    display: flex;
    color: #303030;
    border: 1px solid #7E7E7E;
}
.m-h-left .favorite-btn-header a i {
    font-size: 19px;
    margin-left: 8px;
}
.down-header {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    margin-top: 8px;
}
.main-menu {
    display: flex;
}
.megamenu-box {
    border-left: 1px dotted #333;
    padding-left: 20px;
    margin-left: 9px;
}
.megamenu-box .t-m {
    font-weight: 450;
    cursor: pointer;
}
.menu-header > ul > li {
    display: inline-block;
    margin: 0 11px;
    position: relative;
}
.menu-header ul li a {
    color: #7E7E7EE7;
    font-weight: 350;
    padding: 14px 0;
    font-size: 14px;
    position: relative;
}
.menu-header > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 38px;
    border-radius: 7px;
}
.menu-header ul li ul:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 20px;
    top: -15px;
}
.menu-header > ul > li > a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--main-color);
    bottom: 0px;
    right: 50%;
    transition: all .3s ease-in-out;
}
.menu-header > ul > li:hover > a:before  {
    width: 100%;
    right:0;
}
.menu-header ul li ul {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 7px 0;
    width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: top .2s ease-in-out;
    z-index: 99;
}
.menu-header ul li ul li {

}
.menu-header ul li ul li a {
    padding: 7px 14px;
    display: block;
    font-size: 13px;
}
.register-btn {
    color: #161A1DE7;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.register-btn i {
    font-size: 20px;
}
.pishro-megamenu {
    position: relative;
}
.megamenu-box:hover > .pishro-megamenu > ul {
    visibility: visible;
    opacity: 1;
    top: 16px;
}
.pishro-megamenu > ul:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 24px;
    top: -20px;
}
.pishro-megamenu > ul {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    top: 25px;
    right: 0px;
    width: 222px;
    visibility: hidden;
    opacity: 0;
    transition: visibility,opacity .2s ease-in-out;
    z-index: 99;
}
.pishro-megamenu > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pishro-megamenu > ul > li:hover {
    background: #f7f7f8;
}
.pishro-megamenu > ul > li:hover > a {
    color: var(--main-color);
}
.pishro-megamenu > ul > li > a {
    padding: 12px;
    font-weight: 450;
    transition: none;
}
.pishro-megamenu > ul > li.menu-item-has-children:after {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 9px;
    margin-left: 12px;
}
.pishro-megamenu > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.pishro-megamenu > ul > li > ul {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    top: 0;
    right: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    padding: 12px;
    border-right: 2px solid #ddd;
    visibility: hidden;
    opacity: 0;
    transition: visibility, opacity .2s ease-in-out;
}
.pishro-megamenu > ul > li > ul > li {
    min-width: 25%;
    margin-bottom: 15px;
}
.pishro-megamenu > ul > li > ul > li > a {
    font-weight: 450;
    color: #000;
    border-right: 3px solid var(--main-color);
    padding-right: 5px;
    margin-bottom: 7px;
    display: inline-block;
}
.pishro-megamenu > ul > li > ul > li > ul li a {
    color: #666;
    font-size: 13px;
    font-weight: 400;
    padding: 4px;
    display: inline-block;
}
.main-slider {

}
.main-slider .owl-stage-outer {
    border-radius: 15px;
}
.main-slider .owl-theme .owl-dots {
    position: absolute;
    bottom: 0px;
    width: 100%;
}
.account-btn {
    position: relative;
}
.account-btn label {
    font-size: 15px;
    cursor: pointer;
}
.account-btn label i {
    font-size: 13px;
    margin-right: 3px;
    transition: transform .3s ease-in-out;
}
.account-btn .ac-access {
    position: absolute;
    top: 40px;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    width: 200px;
    border-top: 0;
    z-index: 9;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all .5s ease-in-out;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.account-btn .ac-access ul li a {
    padding: 8px;
    display: block;
    color: #6d6d6d;
    transition: none !important;
}
.account-btn .ac-access ul li a:before {
    color: #999;
}
.account-btn .ac-access ul li a:hover {
    background: #f3f5f6;
}
.account-btn input[type="checkbox"]:checked +label + .ac-access {
    visibility: visible;
    max-height: 1000px;
    transition: max-height .3s ease-in-out;
}
.account-btn input[type="checkbox"]:checked +label > i {
    transform: rotate(180deg);
}

/*    index    */
.main-slider .owl-theme .owl-dots button.owl-dot span {
    background: #000;
    opacity: .3;
    width: 7px;
    height: 7px;
    margin: 2px 3px;
}
.main-slider .owl-theme .owl-dots button.active span {
    background: #fff;
    opacity: 1;
    width: 18px;
}
.main-slider .owl-carousel .owl-nav button.owl-prev:before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.main-slider .owl-carousel .owl-nav button.owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.main-slider .owl-carousel .owl-nav button.owl-next {
    right: 80px;
}
.main-slider .owl-carousel .owl-nav button.owl-prev {
    right: 35px;
}
.main-slider .owl-carousel .owl-nav button {
    position: absolute;
    bottom: 5px;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    z-index: 10;
}
.main-slider:hover .owl-carousel .owl-nav button {
    opacity: 1;
}
.main-slider .owl-carousel .owl-nav button:hover {
    background: #fff;
    color: #333;
}
.title-pro {
    margin-bottom: 32px;
}
.title-pro h4 {
    font-size: 18px;
    font-weight: 450;
    border-bottom: 1px solid #f93524;
    display: inline-block;
    padding-bottom: 14px;
}
.hero-product .product-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 5px #00000008;
    margin: 13px 8px;
    padding: 10px 15px 15px;
}
.hero-product .product-item .color-dis {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20px;
    position: relative;
}
.hero-product .product-item .color-dis .color ul li {
    float: right;
}
.hero-product .product-item .color-dis .color ul li small {
    border: 1px solid #ddd;
    margin-left: 5px;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
}
.hero-product .product-item .color-dis .color ul {
    margin: 0;
}
.hero-product .product-item .color-dis .color ul li span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    float: right;
    position: relative;
}
.hero-product .product-item .color-dis .color ul li span:hover > b {
    visibility: visible;
    opacity: 1;
    bottom: 17px;
}
.hero-product .product-item .color-dis .color ul li span b {
    background: #303030;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    border-radius: 4px;
    padding: 2px 4px;
    position: absolute;
    bottom: 0px;
    right: -10px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}
.hero-product .product-item .color-dis .discount {
    background: var(--main-color);
    color: #fff;
    padding: 0 3px;
    border-radius: 5px;
    position: absolute;
    left: 0;
}
.hero-product .product-item figure a {
    max-width: 200px;
    display: block;
    margin: 7px auto 0;
    position: relative;
}


.hero-product .product-item figure a img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: opacity .5s ease;
}
.hero-product .product-item figure a img.second-thumbnail {
    position: absolute;
    top: 0;
    opacity: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.hero-product .product-item:hover figure a img.main-img {
    opacity: 0;
}
.hero-product .product-item:hover figure a img.second-thumbnail {
    opacity: 1;
}


.hero-product .product-item h2 {
    margin-top: 15px;
    height: 55px;
    line-height: 23px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.hero-product .product-item span.end_sale {
    text-align: center;
    display: block;
    color: red;
    font-weight: 600;
}
.amazing-product .product-item .down {
    margin-top: 15px;
}
.hero-product .product-item h2 a {
    color: #313131;
    font-size: 14px;
    font-weight: 450;
}
.hero-product .product-item .down {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 50px;
    gap: 5px;
}
.hero-product .product-item .down .addtocart_button a {
    font-size: 34px;
    color: var(--second-color) !important;
    display: flex;
    background: none !important;
    padding: 0 !important;
}
.hero-product .product-item .down .addtocart_button a:after {
    display: none;
}
.hero-product .product-item .down .addtocart_button a.added {
    display: none;
}
.hero-product .product-item .down .addtocart_button a.added_to_cart {
    background: var(--second-color) !important;
    color: #fff !important;
    font-size: 13px;
    padding: 6px 5px !important;
    border-radius: 4px;
    transition: all 1.5s ease-in-out;
    max-height: 32px;
    text-align: center;
}
.hero-product .product-item .down .price {
    font-size: 16px;
    position: relative;
    text-align: left;
}
.hero-product .product-item .down .price:has(> del) {
    margin-left: 10px;
}
.hero-product .product-item .down .price del {
    color: #7E7E7E;
    font-size: 14px;
}
.hero-product .product-item .down .price del .woocommerce-Price-currencySymbol {
    display: none;
}
.hero-product .product-item .down .price > span > bdi {
    font-weight: 725;
}
.hero-product .product-item .down .price:has(> span:nth-of-type(1):only-child) {
    font-size: 18px !important;
}
.hero-product .product-item .down .price > span > bdi .woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    display: block;
    position: absolute;
    left: 0;
    bottom: 26px;
}
.hero-product .product-item .down .price ins {
    color: #313131;
    font-size: 18px;
    font-weight: 725;
    text-decoration: none;
    display: block;
}
.hero-product .product-item .down .price ins .woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    rotate: 270deg;
    display: block;
    position: absolute;
    top: 14px;
    left: -25px;
}

/****** down-two *******/
.hero-product .product-item .down-two {
    display: block;
    height: auto;
    text-align: center;
}
.hero-product .product-item .down-two .price {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.hero-product .product-item .down-two .price ins span.woocommerce-Price-currencySymbol {
    position: unset;
    margin-right: 5px;
}
.hero-product .product-item .down-two .price ins {
    display: inline-block;
}
.hero-product .product-item .down-two .price > span > bdi > .woocommerce-Price-currencySymbol {
    bottom: 0px;
    left: -35px;
}
.hero-product .product-item .down-two .price ins span.woocommerce-Price-currencySymbol {
    display: inline-block;
    rotate: unset;
}
.down-two .not_stock {
    display: inline-flex;
    padding: 3px 5px;
    margin-top: -5px;
}
.hero-product .product-item .down-two .wish-add {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    align-items: center;
}
.hero-product .product-item .down-two .wish-add .wishlist-button {
    display: flex;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button {
    background: transparent;
    cursor: pointer;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button span.add,
.hero-product .product-item .down-two .wish-add .wishlist-button button span.added
{
    display: none;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button i {
    font-size: 26px;
    color: #7E7E7E;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button span {
    font-size: 26px;
    color: #7E7E7E;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button.woosw-added i {
    color: red;
}
.hero-product .product-item .down-two .wish-add .wishlist-button button.woosw-added span {
    color: red;
}
.hero-product .product-item .down-two .wish-add .add-to-cart {

}
.hero-product .product-item .down-two .wish-add .add-to-cart a {
    background: none;
    padding: 5px 8px;
    font-size: 12px;
    color: #7E7E7E;
    border: 1px solid #7E7E7E;
    font-weight: 450;
    line-height: 2;
}
.hero-product .product-item .down-two .wish-add .add-to-cart a.added {
    display: none;
}
.hero-product .product-item .down-two .wish-add .add-to-cart a.added:after {
    content: "";
    width: 10px;
    height: 10px;
    background: red;
}
.hero-product .product-item .down-two .wish-add .add-to-cart .added_to_cart {
    border-radius: 5px;
    display: inline-flex;
    line-height: 2;
}
.hero-product .product-item .down-two .wish-add .add-to-cart a.added_to_cart {
    color: #fff;
    background: var(--second-color);
    border: var(--second-color);
}
/****** End down-two *******/
.hero-product .owl-nav button.owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.hero-product .owl-nav button.owl-prev:before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.product-slider .owl-nav button , .special-slider .owl-nav button {
    position: absolute;
    top: -77px;
    background: #fff !important;
    border: 1px solid #d9d9d9 !important;
    width: 37px;
    height: 37px;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #636363 !important;
}
.product-slider .owl-nav button.owl-prev, .special-slider .owl-nav button.owl-prev {
    left: 45px;
}
.product-slider .owl-nav button.owl-next, .special-slider .owl-nav button.owl-next {
    left: 0px;
}

.contact_us_price {
    margin: 0 auto;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
}
.not_stock {
    background: #ffdbdb;
    padding: 6px 10px;
    margin: 0 auto;
    border-radius: 5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 3px;
}
.not_stock i {
    color: #e94646;
    font-size: 18px;
}
.hero-product {
}
.amazing-product {
    background: var(--main-color);
    border-radius: 15px;
    box-shadow: 17px 17px 40px 0px #e5383b12;
}
.amazing-product .amazing-thumbnail img {
    max-width: 228px;
    margin: 15px auto;
}
.amazing-product .amazing-btn {
    text-align: center;
}
.amazing-product .amazing-btn a {
    background: #fff;
    border-radius: 25px;
    padding: 13px 29px;
    display: inline-flex;
    align-items: center;
}
.amazing-product .amazing-btn a i {
    font-size: 13px;
    margin-right: 6px;
}
.amazing-product .countdown-timer {
    display: flex;
    justify-content: center;
    direction: ltr;
}
.amazing-product .countdown-timer .number {
    background: var(--main-color);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.amazing-product .countdown-timer span.dot {
    font-size: 24px;
    color: var(--main-color);
    margin: auto 2px;
}
.amazing-slider .owl-nav {
    display: none;
}
.poster {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-bottom: 50px;
}
.poster a img {
    border-radius: 15px;
}
.hero-special {
}
.special-box {
    position: relative;
    padding: 0 30px 30px 0;
}
.special-box:before {
    content: "";
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    left: 55%;
    right: 0;
    border-radius: 30px;
    transform: translate(-22%, 0px) skew(-24deg, 0deg);
}
.special-box:after {
    content: "";
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 70%;
    right: 0;
    border-radius: 30px;
    z-index: -1;
}
.special-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 450;
    padding: 25px 0;
}
.special-box .owl-stage-outer {
    background: #fff;
    border: 1px solid #EAEAEA;
    box-shadow: 0px 5px 10px 5px #00000008;
    border-radius: 10px;
    width: 71.2%;
}
.special-box .special-item {
    display: flex;
    padding: 25px;
    width: 1003px;
    position: relative;
}
.special-box .special-item .color {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.special-item .color ul li small {
    border: 1px solid #ddd;
    margin-left: 5px;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
}
.special-box .special-item figure {
    width: 23.5%;
}
.special-box .special-item figure img {
    max-width: 247px;
}
.special-box .special-item .color ul li {
    float: right;
}
.special-box .special-item .color ul li span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    float: right;
    position: relative;
}
.special-box .special-item .color ul li span:hover > b {
    visibility: visible;
    opacity: 1;
    bottom: 17px;
}
.special-box .special-item .color ul li span b {
    background: #303030;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    border-radius: 4px;
    padding: 2px 4px;
    position: absolute;
    bottom: 0px;
    right: -10px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}
.special-box .special-item .det-special {
    width: 73.5%;
}
.special-box .special-item .det-special h2 {
    font-size: 21px;
    font-weight: 650;
    margin-bottom: 19px;
    width: 90%;
    line-height: 1.4;
}
.special-box .special-item .det-special .additional-product {
    display: flex;
    flex-direction: column;
    max-height: 144px;
    flex-wrap: wrap;
    overflow: hidden;
    font-size: 13px;
    font-weight: 350;
    gap: 7px 0;
    margin-right: 10px;
    margin-bottom: 30px;
}
.special-box .special-item .det-special .additional-product .property-item:nth-child(n+11) {
    display: none;
}
.special-box .special-item .det-special .additional-product .property-item {
    display: flex;
    gap: 5px;
    min-width: 47%;
}
.special-box .special-item .det-special .additional-product .property-item i {
    color: var(--main-color);
    font-size: 10px;
    margin-left: 3px;
    margin-right: 1px;
}
.special-box .special-item .det-special .down {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.special-box .special-item .det-special .down a {
    background: var(--second-color);
    padding: 12px;
    color: #fff;
    border-radius: 7px;
}
.special-box .special-item .det-special .down .price {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #303030;
}
.special-box .special-item .det-special .down .price del {
    color: #7E7E7E;
    font-size: 16px;
    font-weight: 500;
}
.special-box .special-item .det-special .down .price ins {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.special-box .special-item .det-special .down .price span.woocommerce-Price-currencySymbol {
    font-size: 14px;
}
.price > .woocommerce-Price-amount:first-of-type > bdi > span.woocommerce-Price-currencySymbol {
    display: none;
}
.special-box .special-item .det-special .down .price del span.woocommerce-Price-currencySymbol {
    display: none;
}
.special-box .special-item .discount {
    position: absolute;
    background: #FDC830;
    left: 15px;
    top: 0;
    width: 60px;
    height: 65px;
    border-radius: 0 0 12px 12px;
    text-align: center;
    padding-top: 10px;
}
.special-box .special-item .discount b {
    display: block;
    font-size: 18px;
    font-weight: 700;
}
.special-box .special-item .countdown-timer {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
}
.special-box .special-item .countdown-timer .number {
    background: var(--main-color);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.special-box .special-item .countdown-timer span.dot {
    font-size: 24px;
    color: var(--main-color);
    margin: 0 2px;
}
.special-slider {
    display: flex !important;
    justify-content: space-between;
}
.special-slider .owl-dots {
    width: 27%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
    max-height: 335px;
    margin: 0 !important;
    padding-left: 7px;
    overflow: auto;
}
.special-slider .owl-dots::-webkit-scrollbar {
    height: 6px;
    width: 8px;
}
.special-slider .owl-nav {
    display: none;
}
.special-slider .owl-dot {
    background: #F2F2F2;
    border-radius: 10px;
    padding: 10px;
    width: 95%;
    text-align: right;
    transition: all .2s ease-in-out;
}
.special-slider .owl-dots button {
    font-family: 'yekanbakh';
    background: transparent;
    cursor: pointer;
}
.special-slider .owl-dot .list-special {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}
.special-slider .owl-dot .list-special figure {
    padding: 7px 7px 0;
    background: #fff;
    border-radius: 10px;
}
.special-slider .owl-dot .list-special figure img {
    max-width: 70px;
}
.special-slider .owl-dots .active {
    background: var(--main-color);
    width: 100%;
}
.special-slider .list-special b {
    max-height: 80px;
    overflow: hidden;
}
.special-slider .active .list-special b {
    color: #fff;
}
.hero-sell {
}
.box-sell {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.box-sell .best-sell {
    background: var(--main-color);
    border-radius: 15px;
    padding: 15px 24px 30px;
    position: relative;
    flex-shrink: 0;
    height: 395px;
    width: 19.1%;
    min-width: 275px;
}
.box-sell .best-sell .head {
    display: flex;
    justify-content: space-between;
    color: #fff;
}
.box-sell .best-sell .head div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.box-sell .best-sell .head span {
    font-size: 18px;
    font-weight: 450;
}
.box-sell .best-sell figure {
    border-radius: 50%;
    background: #fff;
    width: 170px;
    height: 170px;
    margin: 25px auto !important;
    padding: 15px;
    overflow: hidden;
    animation: pulse-white 1.5s infinite;
}
@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.box-sell .best-sell figure img {
    max-width: 140px;
    margin: auto;
    display: block;
}
.box-sell .best-sell h2 {
    line-height: 23px;
    height: 45px;
    overflow: hidden;
}
.box-sell .best-sell h2 a {
    font-size: 14px;
    color: #fff;
    font-weight: 450;
}
.box-sell .best-sell .price {
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: #fff;
    justify-content: space-between;
    margin: 13px 0;
    font-size: 16px;
}
.box-sell .best-sell .price del {
    font-size: 14px;
    font-weight: 400;
}
.box-sell .best-sell .price ins {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.box-sell .best-sell .price ins span.woocommerce-Price-currencySymbol {
    font-size: 14px;
}
.box-sell .best-sell .price del span.woocommerce-Price-currencySymbol {
    display: none;
}
.box-sell .best-sell .add-cart {
    position: absolute;
    bottom: -34px;
    left: 40%;
}
.box-sell .best-sell .add-cart i {
    font-size: 40px;
    background: #fff;
    color: var(--main-color);
    border-radius: 50%;
    border: 12px solid #fff;
}
.other-sell {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    align-content: start;
}
.other-sell .product-item:hover .down .number {
    background: var(--main-color);
    color: #fff;
}
.other-sell .product-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 5px #00000008;
    padding: 15px;
    flex-grow: 1;
    height: 125px;
    width: 45%;
    min-width: 280px;
}
.other-sell .product-item figure {
    float: right;
    margin-left: 5px !important;
}
.other-sell .product-item figure img {
    max-width: 100px;
}
.other-sell .product-item h2 {
    line-height: 20px;
    height: 45px;
    overflow: hidden;
    margin-top: 5px;
}
.other-sell .product-item h2 a {
    font-size: 14px;
    font-weight: 450;
}
.other-sell .product-item .down {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: end;
}
.other-sell .product-item .down .number {
    background: #ECF0F1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #95A5A6;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 3px;
    transition: color, background .2s ease-in-out;
}

.other-sell .product-item .down .price {
    position: relative;
    text-align: left;
}
.other-sell .product-item .down .price:has(> del) {
    margin-left: 10px;
}
.other-sell .product-item .down .price del {
    color: #7E7E7E;
    font-size: 14px;
}
.other-sell .product-item .down .price del .woocommerce-Price-currencySymbol {
    display: none;
}
.other-sell .product-item .down .price > span > bdi {
    font-size: 16px;
    font-weight: 725;
}
.other-sell .product-item .down .price > span > bdi span.woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    display: block;
    position: absolute;
    left: 0;
    bottom: 26px;
}
.other-sell .product-item .down .price ins {
    color: #313131;
    font-size: 16px;
    font-weight: 725;
    text-decoration: none;
    display: block;
}
.other-sell .product-item .down .price ins span.woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    rotate: 270deg;
    display: block;
    position: absolute;
    top: 14px;
    left: -25px;
}

section.hero-blog {
}
.box-blog {
    display: flex;
    justify-content: space-between;
    gap: 12.5px;
}
.box-blog .big-post {
    width: 41%;
    position: relative;
}
.box-blog .big-post:hover img {
    transform: scale(1.1);
}
.box-blog .big-post a figure {
    overflow: hidden;
    border-radius: 15px;
}
.box-blog .big-post a figure img {
    width: 588px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform .2s ease-in-out;
}
.box-blog .big-post a .title {
    position: absolute;
    bottom: 25px;
    width: 100%;
}
.box-blog .big-post a .title h2 {
    background: #fff;
    box-shadow: 4px 4px 25px 0px #38383840;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 450;
    padding: 10px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-blog .big-post a .title h2 i {
    background: var(--second-color);
    padding: 12px;
    color: #fff;
    border-radius: 5px;
}
.box-blog .small-post {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 59%;
    flex-wrap: wrap;
}
.box-blog .small-post .post-item {
    width: 49%;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000008;
    border-radius: 10px;
    height: 145px;
    padding: 10px;
    min-width: 331px;
    flex-grow: 1;
}
.box-blog .small-post .post-item:hover img {
    transform: scale(1.1);
}
.box-blog .small-post .post-item a figure {
    float: right;
    margin-left: 10px !important;
    overflow: hidden;
    border-radius: 10px;
}
.box-blog .small-post .post-item a figure img {
    width: 125px;
    height: 125px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform .2s ease-in-out;
}
.box-blog .small-post .post-item a h2 {
    font-size: 14px;
    font-weight: 450;
    margin-top: 15px;
    line-height: 23px;
    min-height: 70px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.box-blog .small-post .post-item a .down {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-blog .small-post .post-item a .down span {
    color: #7E7E7E;
    font-size: 13px;
    font-weight: 300;
}
.box-blog .small-post .post-item a .down i {
    background: var(--second-color);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-left: 5px;
}
.box-insta {
    display: flex;
    background: var(--main-color);
    box-shadow: 0px 4px 40px 0px #E5383B12;
    border-radius: 15px;
    padding: 10px 0;
}
.box-insta .first-item {
    width: 15.2%;
    margin: 0 10px;
    display: flex;
    align-items: center;
}
.box-insta .amazing-thumbnails img {
    margin: auto;
    display: block;
}
.box-insta .bx-ins {
    width: 84.8%;
    padding: 5px 0px;
}
.box-insta .bx-ins .insta-item {
    border-radius: 15px;
    box-shadow: 0px 0px 10px 5px #00000008;
    margin: 0px 5px;
}
.box-insta .product-item figure img {
    border-radius: 15px;
}
.box-insta .product-item {
    border-radius: 15px;
    background: none;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .031372549);
    margin: 0 5px;
    position: relative;
    padding: 0px;
}
.title-brand {
    text-align: center;
}
.title-brand h4 {
    background: var(--main-color);
    display: inline-block;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px 30px 0 0;
    font-size: 18px;
    font-weight: 700;
}
.box-brand {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 90px 0px #D3D3D333;
}
.box-brand .inner-brand {
    width: 88%;
    margin: auto;
}
.box-brand .inner-brand .brand-item {
    display: flex;
    justify-content: center;
    height: 170px;
    align-items: center;
}
.box-brand .inner-brand .brand-item a figure img {
    max-width: 150px;
}
.box-brand .owl-carousel .owl-nav button {
    position: absolute;
    bottom: 5px;
    background: var(--main-color);
    color: #fff;
    width: 82px;
    height: 52px;
    top: 60px;
}
.box-brand .owl-carousel .owl-nav button:hover {
    background: var(--main-color);
}
.box-brand .owl-carousel .owl-nav button.owl-prev {
    right: -7.2%;
    border-radius: 50px 0 0 50px;
}
.box-brand .owl-carousel .owl-nav button.owl-next {
    left: -7.2%;
    border-radius: 0 50px 50px 0;
}
.box-brand .owl-carousel .owl-nav button.owl-prev:before, .special-slider .owl-nav button.owl-next:before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.box-brand .owl-carousel .owl-nav button.owl-next:before, .special-slider .owl-nav button.owl-prev:before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.pishro-service {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pishro-service .service-item {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}
.pishro-service .service-item img {
    max-width: 72px;
    margin: 0 auto 10px;
}
.pishro-service .service-item span {
    font-size: 13px;
    font-weight: 400;
    color: #7E7E7E;
}
footer {
    margin-top: 60px;
    background: #fff;
    border: 1px solid #EDEDED;
    box-shadow: 0px 0px 10px 0px #ECECEC;
    padding-top: 40px;
}
.footer-box {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}
.footer-box .footer-widget {
    flex-grow: 1;
}
.footer-box .footer-about{
    width: 30%;
    margin-left: 30px;
}
.footer-box .footer-widget h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #303030;
}
.footer-box .footer-widget .f-w-content {
    color: #7A7A7A;
    line-height: 30px;
    text-align: justify;
}
.footer-box .footer-widget .f-w-content ul li a {
    color: #7A7A7A;
}
.application {
    display: flex;
    justify-content: space-between;
    background: #F3F4F6;
    border-radius: 10px;
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
}
.application .right {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
}
.application .right img {
    max-width: 45px;
}
.application .left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.application .left a {
    display: flex;
}
.footer-line {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    color: #7E7E7E;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-line .right {
    line-height: 2;
}
.footer-line .left span {
    border: 1px solid #A5A5A5;
    padding: 6px 13px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}
.footer-down {
    display: flex;
    justify-content: space-between;
    color: #7E7E7E;
    padding: 20px 0;
    flex-wrap: wrap-reverse;
    gap: 15px;
}
.footer-down .social-footer {
    display: flex;
    gap: 20px;
}
.footer-down .social-footer a {
    display: flex;
}
.footer-down .social-footer a i {
    color: #9d9d9d;
    font-size: 20px;
}

/*start modal*/
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 6;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 15px;
    border: 1px solid #888;
    width: 460px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close_modal {
    color: #eee;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 15px;
}

.close_modal:hover,
.close_modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/*start form login*/
.form-login-pishro {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 100%;
    padding: 30px;
    text-align: center;
}
.form-login-pishro input {
    outline: 0;
    background: #f2f2f2;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
.form-login-pishro button {
    text-transform: uppercase;
    outline: 0;
    background: var(--second-color);
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
.form-login-pishro .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 14px;
}
.form-login-pishro .message a {
    color: var(--second-color);
    text-decoration: none;
}
.form-login-pishro .register-form {
    display: none;
}
.form-login-pishro .logo {
    max-width: 200px;
    margin: 0 auto 35px;
}
.form-login-pishro .woocommerce-privacy-policy-text p {
    margin-bottom: 10px;
}

/*********single product**********/
.pishro-breadcrumb {
    font-size: 13px;
    margin: 20px 0;
    color: #7E7E7EE7;
}
.pishro-breadcrumb a {
    color: #7E7E7EE7;
}
.product-intro {
    background: #FFFFFF;
    box-shadow: 0px 4px 84px 0px #D3D3D340;
    border-radius: 14px;
    margin-bottom: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
}
.product-intro .entry-summary {
    width: 49% !important;
    margin: 0 !important;
}
.product-intro .entry-summary header {
    border-bottom: 1px solid #F5F3F4;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.product-intro .entry-summary header h1 {
    font-size: 20px;
    font-weight: 700;
}
.product-intro .entry-summary header span {
    font-weight: 300;
    margin-top: 5px;
    display: block;
    color: #B2B2B2;
}
.product-intro .entry-summary .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.product-intro .entry-summary .product-meta .meta-pro {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 22px;
}
.product-intro .entry-summary .product-meta .meta-pro i {
    color: var(--second-color);
    font-size: 24px;
    margin-left: 6px;
}
.product-intro .entry-summary .product-delivery {
    display: flex;
    gap: 10px 25px;
    margin-bottom: 30px;
    font-weight: 450;
}
.product-intro .entry-summary .product-delivery span {
    display: flex;
    align-items: center;
}
.product-intro .entry-summary .product-delivery span i {
    font-size: 13px;
    color: var(--main-color);
    margin-left: 3px;
}
.product-intro .entry-summary .excerpt-single-product {
    margin-bottom: 25px;
    line-height: 2;
}
.product-intro .entry-summary .additional-product {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    max-height: 91px;
    overflow: hidden;
    margin-bottom: 40px;
}
.product-intro .entry-summary .additional-product .property-item {
    display: flex;
}
.product-intro .entry-summary .additional-product .property-item span {
    color: #7e7e7e;
    font-weight: 300;
}
.product-intro .entry-summary .additional-product .property-item span i {
    color: #D5D5D5;
    font-size: 10px;
}
.product-intro .entry-summary .additional-product .property-item:nth-child(n+6) {
    display: none;
}
.product-intro .entry-summary .show-rate {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.right .not_stock , .right .contact_us_price {
    padding: 15px;
    margin: 20px 20% 0;
    font-size: 16px;
    justify-content: center;
    gap: 5px;
}
.right .not_stock i , .right .contact_us_price i {
    font-size: 25px;
}
.right .contact_us_price {
    background: #fafafa;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.woocommerce .star-rating {
    color: #ffc107;
    font-size: 16px;
    margin: 3px !important;
}
.product-intro .entry-summary .p-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.woocommerce .quantity {
    display: flex;
    border: 1px solid #C2C2C2;
    border-radius: 7px;
    width: 200px;
    height: 60px;
}
.woocommerce .quantity .qty {
    width: 100%;
    height: 100%;
    font-size: 20px;
    border: 0;
    font-weight: 700;
    text-align: center;
}
/* پاک ردن دکمه های پیشفرض تایپ نامبر برای همه مرورگرها*/
.woocommerce .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.woocommerce .quantity input[type="number"] {
    -moz-appearance: textfield;
}
.woocommerce .quantity input[type="number"] {
    appearance: textfield;
}
/**/
.woocommerce .quantity button {
    font-size: 20px;
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0 18px;
    cursor: pointer;
    margin: 15px auto;
}
.product-intro .entry-summary .quantity button {
    font-size: 24px;
}
.woocommerce .quantity button.plus {
    border-left: 1px solid #C2C2C2;
}
.woocommerce .quantity button.minus {
    border-right: 1px solid #C2C2C2;
}
.product-intro .entry-summary .p-q .single-price {
    display: flex;
    gap: 10px;
}
.product-intro .entry-summary .p-q .single-price .price {
    display: flex;
    gap: 10px;
    align-items: center;
}
.product-intro .entry-summary .p-q .single-price .price > span > bdi {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #303030;
}
.product-intro .entry-summary .p-q .single-price .price > span > bdi .woocommerce-Price-currencySymbol {
    font-size: 16px;
    font-weight: 450;
}
.product-intro .entry-summary .p-q .single-price .price del {
    font-size: 20px;
    font-weight: 400;
    opacity: 1;
}
.woocommerce div.product p.price del, .woocommerce div.product span.price del {
    color: #BEBEBE;
}
.product-intro .entry-summary .p-q .single-price .price del span.woocommerce-Price-currencySymbol {
    display: none;
}
.product-intro .entry-summary .p-q .single-price .price ins {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #303030;
}
.product-intro .entry-summary .p-q .single-price .price ins span.woocommerce-Price-currencySymbol {
    font-size: 16px;
    font-weight: 450;
}
.product-intro .entry-summary .p-q .single-price .discount {
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 450;
    width: 40px;
    height: 40px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
}
.product-intro .entry-summary .single-add-to-cart {
    background: var(--second-color) !important;
    color: #fff;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 450;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    line-height: inherit;
    cursor: pointer;
}
.woocommerce-message {
    border-top-color: var(--second-color);
}
.woocommerce-message a.button {
    line-height: normal !important;
}
.woocommerce-message::before {
    color: var(--second-color);
}
.woocommerce-error {
    border-top-color: red;
}
.woocommerce-error::before {
    color: red;
}
.woocommerce-info {
    border-top-color: var(--second-color);
}
.woocommerce-info::before {
    color: var(--second-color);
    margin-top: 5px;
}
.woocommerce-message:focus {
    outline: none;
}
.product-intro .entry-image {
    display: flex;
    justify-content: space-between;
    width: 47% !important;
    position: relative !important;
    padding: 20px;
    padding-left: 15px;
    margin: 0 !important;
    flex-wrap: wrap;
    height: 100%;
}
.product-intro .entry-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    /*background: #000;*/
    border: 5px solid #000;
    opacity: 0.02;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}
.product-intro .entry-image .product-action .item-action button.woocommerce-product-gallery__trigger {
    position: unset;
    height: 45px;
    text-indent: 0;
    width: auto;
    font-size: 13.5px;
    display: flex;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    color: #666;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before ,
.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
    content: unset;
}
.product-intro .entry-image .flex-viewport {
    margin-top: 30px;
    flex: 0 0 75%;
    max-width: 75%;
}
.product-intro .entry-image .flex-viewport img {
    margin: 0 auto;
    width: auto !important;
    display: block;
}
.product-intro .entry-image .flex-viewport .countdown-timer {
    display: flex;
    justify-content: center;
    direction: ltr;
}
.product-intro .entry-image .flex-viewport .countdown-timer .number {
    background: var(--main-color);
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.product-intro .entry-image .flex-viewport .countdown-timer span.dot {
    font-size: 24px;
    color: var(--main-color);
    margin: 0 2px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    display: none;
}
.product-intro .entry-image ol {
    width: 75px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-intro .entry-image ol li {
    border: 1px solid #DDDDDD;
    background: #fff;
    width: 63px !important;
    height: 63px;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
    z-index: 2;
}
.product-intro .entry-image ol li img {
    opacity: 0.5;
    filter: blur(1px);
}
.product-intro .entry-image ol li .flex-active {
    opacity: 1;
    filter: unset;
}
.product-intro .entry-image .product-action {
    max-width: 6%;
}
.product-intro .entry-image .product-action {
    max-width: 6%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15%;
    z-index: 3;
}
.product-intro .entry-image .product-action .item-action button {
    background: #fff;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    color: #666;
}
.product-intro .entry-image .product-action .item-action button:hover {
    color: #333;
}
.product-intro .entry-image .product-action .item-action button:hover span {
    padding-left: 10px;
    max-width: 280px;
}
.product-intro .entry-image .product-action .item-action button i {
    font-size: 22px;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.product-intro .entry-image .product-action .item-action button span {
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    transition: all .2s ease-in-out;
}
#modal_video .modal-content {
    width: 800px;
}
.modal-header i {
    float: left;
    font-size: 24px;
    color: #aaa;
}
.modal-header h4 {
    font-size: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
/*  timer single product  */
.product-intro .box-timer {
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: 92%;
    top: 10px;
}
.product-intro .countdown-timer {
    color: #fff;
    text-align: center;
    direction: ltr;
    align-items: center;
    display: flex;
    justify-content: center;
}
.product-intro .countdown-timer .number {
    background: #f93423;
    color: #ffffff;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-family: "yekanbakh";
    font-size: 16px;
    font-weight: 450;
}
.product-intro .countdown-timer span.dot {
    color: var(--main-color);
    font-size: 24px;
    margin: auto 2px;
}
.product-intro span.end_sale {
    display: none;
}
.modal-body video {
    width: 100%;
}
#modal_share .modal-content {
    width: 500px;
}
.modal-body .shortlink {
    border: 1px solid #ddd;
    padding: 10px;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 4px;
    margin-top: 20px
}
.modal-body .shortlink textarea {
    width: 300px;
    height: 40px;
    text-align: left;
    border: 0;
}
.modal-body .social-sharing {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.modal-body .social-sharing .box-sharing {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.modal-body .social-sharing .box-sharing a {
    font-size: 40px;
    display: flex;
}
.modal-body .social-sharing .box-sharing a.facebook {
    color: #4267B2;
}
.modal-body .social-sharing .box-sharing a.twitter {
    color: #1DA1F2;
}
.modal-body .social-sharing .box-sharing a.pinterest {
    color: #E60023;
}
.modal-body .social-sharing .box-sharing a.telegram {
    color: #1DA1F2;
}
.modal-body .social-sharing .box-sharing a.whatsapp {
    color: #25D366;
}
.product-tab .product-description {
    line-height: 2.5;
    font-size: 15px;
    margin-bottom: 50px;
    text-align: justify;
}
.product-tab .additional-product {
    margin-bottom: 50px;
}
.product-tab .additional-product h2 {
    margin-bottom: 20px;
}
.product-tab .additional-product .property-item {
    display: flex;
    gap: 10px;
    font-weight: 450;
}
.product-tab .additional-product .property-item span {
    background: #f5f5f5;
    padding: 20px 10px;
    min-width: 200px;
    margin-bottom: 10px;
}
.product-tab .additional-product .property-item span i {
    color: #D5D5D5;
    font-size: 10px;
    margin-left: 3px;
}
.product-tab .additional-product .property-item  p {
    border: #f8f9fa;
    padding: 20px 10px;
    flex-grow: 1;
}
.pishro-cross-sell {
    display: flex;
    gap: 15px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}
.corss-item {
    width: 32.7%;
    height: 160px;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000008;
    border-radius: 15px;
    padding: 15px;
    flex-grow: 1;
}
.corss-item figure {
    float: right;
    margin-left: 5px;
    max-height: 100%;
    overflow: hidden;
}
.corss-item figure a img {
    max-width: 135px;
}
.corss-item h2 {
    line-height: 23px;
    height: 45px;
    overflow: hidden;
    margin-top: 10px;
}
.corss-item h2 a {
    font-size: 15px;
    font-weight: 450;
}
.corss-item .down {
    display: flex;
    justify-content: space-between;
    height: 65px;
    align-items: end;
}
.corss-item .down .addtocart_button a {
    font-size: 34px;
    color: var(--second-color) !important;
    display: flex;
    background: none !important;
    padding: 0 !important;
}
.corss-item .down .addtocart_button a:after {
    display: none;
}
.corss-item .down .addtocart_button a.added {
    display: none;
}
.addtocart_button a {
    transition: transform 1.5s ease-in-out;
}
.modal_add_to_cart {
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 450;
}
.modal_add_to_cart i {
    color: var(--second-color);
    font-size: 26px;
}
.corss-item .down .addtocart_button a.added_to_cart {
    background: var(--second-color) !important;
    color: #fff !important;
    font-size: 13px;
    padding: 3px 5px !important;
    border-radius: 4px;
    transition: all 1.5s ease-in-out;
    max-height: 30px;
    text-align: center;
}
.corss-item .down .price {
    position: relative;
    margin-left: 10px;
    text-align: left;
}
.corss-item .down .price del {
    color: #7E7E7E;
    font-size: 14px;
}
.corss-item .down .price del .woocommerce-Price-currencySymbol {
    display: none;
}
.corss-item .down .price > span > bdi {
    font-size: 16px;
    font-weight: 725;
}
.corss-item .down .price > span > bdi span.woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    display: block;
    position: absolute;
    left: 0;
    bottom: 26px;
}
.corss-item .down .price ins {
    color: #313131;
    font-size: 18px;
    font-weight: 725;
    text-decoration: none;
    display: block;
}
.corss-item .down .price ins span.woocommerce-Price-currencySymbol {
    font-size: 12px;
    color: #D7DBE2;
    font-weight: 500;
    rotate: 270deg;
    display: block;
    position: absolute;
    top: 14px;
    left: -25px;
}
.contact_us_price {
    margin: 0 auto;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
}
.woocommerce div.product p.stock {
    display: none;
}
.woocommerce div.product form.cart {
    margin-bottom: 0;
}
.woocommerce div.product form.cart .variations select {
    font-family: 'yekanbakh';
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #e3e3e3;
}
select:focus {
    outline: none;
}
.woocommerce div.product form.cart .variations tr {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.woocommerce div.product form.cart .variations tr td {
    display: flex;
    align-items: center;
    min-width: 300px;
}
.woocommerce div.product form.cart .variations {
    width: 68%;
    margin-bottom: 22px;
}
.woocommerce div.product .woocommerce-product-rating {

}
.woocommerce div.product form.cart .variations tr .woo-selected-variation-item-name ,
.product-intro .entry-image .product-action .item-action button.woosw-added span.add ,
.product-intro .entry-image .product-action .item-action button span.added {
    display: none;
}
.product-intro .entry-image .product-action .item-action button.woosw-added span.added {
    display: block;
}
.woosw-item--price , .woosw-item--time , .woosw-item--stock  {
    display: none;
}
.woosw-list .woosw-copy button#woosw_copy_btn {
    margin-right: 10px;
}
.woosw-popup .woosw-items .woosw-item .woosw-item--name a {
    font-weight: 400;
}
.woosw-items .woosw-item .woosw-item--atc a {
    width: 95px;
    font-size: 13px;
    display: flex;
    padding: 5px !important;
    background: var(--second-color);
    color: #fff;
    max-height: 37px;
    align-items: stretch;
    overflow: hidden;
}
.woosw-popup .woosw-items .woosw-item .woosw-item--name {
    margin-left: 3px;
}
.woosw-list .woosw-items .woosw-item .woosw-item--atc a.wc-forward , .woosw-list .woosw-items .woosw-item .woosw-item--atc a {
    width: unset;
    display: block;
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
}
.woosw-items .woosw-item .woosw-item--atc a.wc-forward {
    width: 95px;
    border-radius: 5px;
    max-height: 40px;
    text-align: center;
    line-height: 2;
    color: var(--second-color);
    background: #fff;
    border: 1px solid var(--second-color);
}
.woosw-items .woosw-item .woosw-item--atc a.added {
    display: none;
}
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a {
    color: #303030;
    border-radius: 3px;
    border: 1px solid var(--second-color) !important;
    padding: 7px;
    font-size: 13px;
}
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-notice {
    height: 52px !important;
}
.woosw-popup .woosw-popup-inner .woosw-popup-content .woosw-popup-content-bot .woosw-popup-content-bot-inner a:hover {
    color: var(--second-color) !important;
    border-color: var(--second-color) !important;
}
.main-single-page {
    width: 100%;
}
p.product.woocommerce.add_to_cart_inline {
    text-align: center;
}
.woosw-list table.woosw-items {
    width: 100%;
}
.woocommerce div.product .woocommerce-tabs {
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0px 4px 84px 0px rgba(211, 211, 211, 0.25);
    margin: 60px 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    margin: 0;
    justify-content: space-between;
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border: 1px solid #cfc8d8;
    border-bottom: 0;
    margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    flex-grow: 1;
    text-align: center;
    padding: 6px 0;
    border: 0;
    background: #fbfbfb;
    font-size: 16px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
}
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 40px 25px;
    border: 1px solid #cfc8d8;
    border-top: 0;
}
.woocommerce div.product .woocommerce-tabs
.woocommerce-Tabs-panel--description {
    line-height: 2.5;
    font-size: 15px;
    text-align: justify;
}
.woocommerce div.product .woocommerce-tabs .panel .additional-product .property-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-tabs .panel .additional-product .property-item span {
    background: #f5f5f5;
    padding: 15px 10px;
    min-width: 200px;
}
.woocommerce div.product .woocommerce-tabs .panel .additional-product .property-item span i {
    color: #D5D5D5;
    font-size: 10px;
    margin-left: 2px;
}
.woocommerce div.product .woocommerce-tabs .panel .additional-product .property-item p {
    background: #f8f9fa;
    padding: 12px 10px;
    flex-grow: 1;
}
/*comments*/
.woocommerce #reviews #comments h2 {
    display: none;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
    display: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 0;
    line-height: 2.3;
    padding: 0 0 20px;
}
#review_form .comment-reply-title {
    text-align: center;
    display: block;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    margin: 30px 0 50px;
}
#review_form .comment-reply-title:before {
    content: "";
    width: 43%;
    height: 1px;
    position: absolute;
    background: #ebebeb;
    top: 37px;
    left: 0;
    box-shadow: 0px -2px 5px #dfdfdf;
}
#review_form .comment-reply-title:after {
    content: "";
    width: 43%;
    height: 1px;
    position: absolute;
    background: #ebebeb;
    top: 37px;
    right: 0;
    box-shadow: 0px -2px 5px #dfdfdf;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .right_review {
    width: 20%;
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
    align-items: center;
    padding-bottom: 15px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .right_review p {
    margin: 0;
    color: #666;
}
em.woocommerce-review__verified.verified {
    font-style: normal;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .right_review p strong {
    font-size: 14px;
    color: #303030;
}
.comment-text .description {
    width: 70%;
    color: #666;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
    margin-bottom: 10px;
}
.show-my-rate {
    margin-right: 25px;
}
.show-my-rate .rate-item {
    display: flex;
    align-items: center;
}
.show-my-rate .rate-item span {
    font-size: 13px;
    font-weight: 500;
    min-width: 100px;
}
.show-my-rate .rate-item .rete-content {
    width: 150px;
    background: #f5f3fc;
    height: 7px;
    border-radius: 2px;
}
.show-my-rate .rate-item .rete-content .rate-result {
    background: #094aef;
    height: 100%;
    border-radius: 2px;
}
.show-recommend-status.yes {
    background: #ebffe8;
    font-size: 12px;
    border: 1px solid #93f534;
    color: green;
    padding: 2px 5px;
    border-radius: 3px;
    text-align: center;
    line-height: 1.5;
}
.show-recommend-status.no {
    background: #ffe8e8;
    border: 1px solid #ef5e5e;
    color: red;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    text-align: center;
    line-height: 1.5;
}
.comment-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}
.comment-form-rating p {
    margin: 0 !important;
}
.comment-form-rating p span {
    font-size: 22px;
    display: flex;
    gap: 3px;
}
.woocommerce #review_form #respond p label {
    margin-bottom: 5px;
    display: block;
}
.woocommerce p.stars a {
    color: #ffc107;
}
.woocommerce #review_form #respond textarea {
    min-height: 160px;
}
.woocommerce #review_form #respond .form-submit input[type="submit"] {
    right: auto;
    background: var(--second-color);
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
}
.woocommerce #review_form #respond .form-submit input[type="submit"]:hover {
    background: var(--second-color);
}
.woocommerce #review_form #respond p.comment-notes {
    display: none;
}
.custom-field-review {
    display: flex;
    margin-top: 25px;
}
.review-radio-question {
    width: 50%;
    text-align: center;
}
.review-radio-question header {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}
.review-radio-question .radio-list {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}
.review-radio-question .radio-list input {
    display: none;
}
.review-radio-question .radio-list label {
    padding: 7px 10px;
    border-radius: 4px;
    display: block;
    font-weight: 700;
    cursor: pointer;
}
.review-radio-question .radio-list input[type="radio"]:checked#yes_suggest ~ label {
    background: #dcffdc;
    border: 2px solid #50df3c;
    color: #0f8703;
}
.review-radio-question .radio-list input[type="radio"]:checked#no_suggest ~ label {
    background: #ffc2c2;
    border: 2px solid #ef5e5e;
    color: red;
}
.review-radio-question .radio-list input[type="radio"]:checked#idontknow ~ label {
    background: #e7e7e7;
    border: 2px solid #919490;
    color: #737573;
}
.rate-list {
    width: 50%;
}
.rate-list .rate-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}
.rate-list .rate-item input {
    width: 70%;
}


/******** single article ********/
.hero-single {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.main-single {
    width: 77%;
}
.post-single {
    box-shadow: 0px 4px 104px 0px #D3D3D333;
    border-radius: 10px;
    background: #fff;
    padding: 20px;
    border: 1px solid #d5d5d544;
    margin-bottom: 30px;
}
.post-single header {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.post-single header h1 {
    font-size: 24px;
    font-weight: 600;
}
.post-single .box-pm {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #A3A3A3;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
article.post-single figure img {
    border-radius: 8px;
}
.post-single .box-pm a {
    color: #A3A3A3;
}
.post-single figure {
    text-align: center;
    margin-bottom: 20px;
}
.post-single .content-single {
    line-height: 2.5;
    font-size: 15px;
    text-align: justify;
    margin-bottom: 20px;
}
.post-single .post-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    border-top: 1px solid #f0f0f1;
    padding-top: 20px;
    align-items: center;
}
.post-single .post-tag i {
    color: #a3a3a3;
    margin-left: 5px;
}
.post-single .post-tag a {
    background: #E9E9E9;
    padding: 4px 12px;
    border-radius: 5px;
    color: #757575;
}
.post-single .related-head h4 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 15px;
}
.post-single .related-item {
    box-shadow: 0px 4px 85px 0px #D3D3D340;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #d5d5d544;
    margin: 20px 8px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post-single .related-item figure {
    margin-bottom: 10px;
}
.post-single .related-item figure img {
    border-radius: 15px;
}
.post-single .related-item h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px 0;
    height: 40px;
}
.post-single .related-item .down {
    display: flex;
    justify-content: space-between;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 7px 10px;
    font-size: 13px;
    color: #757575;
}
.hero-single .side-single {
    width: 22%;
}
.widget {
    box-shadow: 0px 4px 104px 0px #D3D3D333;
    border-radius: 10px;
    background: #fff;
    padding: 16px;
    border: 1px solid #d5d5d544;
    margin-bottom: 30px;
    overflow: hidden;
}
.widget-header h3 {
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 12px;
    margin-bottom: 22px;
    display: inline-block;
}
.widget form {
    position: relative;
}
.widget form input[type="submit"] {
    background: var(--main-color);
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px 0 0 10px;
    padding: 11px 15px;
    line-height: 2;
}
.widget ul li {
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.widget ul li a:hover {
    color: var(--second-color);
    transition: color .2s ease-in-out;
}
.widget ul li .post-data {
    color: #A3A3A3;
    font-size: 13px;
    display: block;
    margin-top: 4px;
}
.single-insta-page {
    background: #333;
    margin-top: -20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
}
.hero-insta {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    flex-wrap: wrap;
}
.hero-insta .right {
    width: 70%;
    border-radius: 10px;
    overflow: hidden;
}
.hero-insta .right video {
    max-width: 100%;
    max-height: 650px;
}
.hero-insta .right .wp-video-shortcode {
    max-height: 650px !important;
}
.hero-insta .right .mejs-poster {
    background-size: contain;
}
.hero-insta  .left {
    width: 28%;
    color: #fff;
    border: 2px solid #444;
    padding: 12px;
    border-radius: 10px;
}
.hero-insta .left h1 {
    font-size: 16px;
    padding-bottom: 10px;
}
.hero-insta .left p {
    line-height: 2;
    color: #eaeaea;
}
.hero-insta .left  a {
    color: #36c;
    text-decoration: underline;
}
 .box-insta-single {
    background: #333;
    box-shadow: none;
    border: 2px solid #444;
    border-radius: 10px;
}
 h4.title-insta-single {
    color: #fff;
    font-size: 18px;
    font-weight: 450;
    margin: 20px 5px 15px;
    display: flex;
    align-items: center;
    gap: 7px;
}
 h4.title-insta-single i {
    font-size: 24px;
}

/******* shop ***********/
.hero-archive {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.side-single-shop {
    width: 22%;
}
.hero-archive .product-item {
    width: 23.5%;
    margin: 0;
}
.before-shop {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .031372549);
    padding: 20px;
    align-items: center;
    border-radius: 15px;
    font-weight: 450;
    margin-bottom: 15px;
}
.woocommerce .woocommerce-result-count ,
.woocommerce .woocommerce-ordering{
    margin: 0;
}
.catalog-list {
    display: flex;
    align-items: center;
}
.catalog-list i {
    font-size: 20px;
    margin-left: 5px;
}
.catalog-list li {
    margin-right: 10px;
}
.catalog-list li.active a {
    color: #f93422 ;
}
.widget-shop .widget-header h3 {
    border-bottom: 1px solid #f2f2f2;
    display: block;
    padding-bottom: 17px;
}
.woocommerce-product-search button {
    color: #fff;
    margin-top: 5px;
    padding: 8px 15px;
    background: var(--main-color);
    border-radius: 5px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
    background-color: var(--main-color);
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #fff;
    border: 2px solid #f93422;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #e1e1e1;
}
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
    font-size: 16px;
    font-weight: 450;
    padding: 5px 0;
    border: none;
}
.rtl.woocommerce .price_label {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.rtl.woocommerce .price_label span {
    direction: rtl;
    flex-grow: 1;
    text-align: center;
}
.rtl.woocommerce .price_label span.from {
    border-right: 1px solid #ddd;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
    width: 100%;
    margin: 10px 0 5px;
    padding: 12px 0;
}
.woocommerce ul.product_list_widget li {
    padding: 12px 0;
}
.woocommerce ul.product_list_widget li {
    padding: 12px 0;
}
.woocommerce ul.product_list_widget li img {
    float: right;
    width: 65px;
    margin-left: 4px;
    margin-right: 0px;
}
.woocommerce ul.product_list_widget li del {
    font-size: 13px;
}
.woocommerce ul.product_list_widget li del span.woocommerce-Price-currencySymbol {
    display: none;
}
.woocommerce ul.product_list_widget li ins {
    font-size: 13px;
    text-decoration: none;
}
.woocommerce ul.product_list_widget li span.woocommerce-Price-amount {
    font-size: 13px;
}
.woocommerce ul.product_list_widget li .star-rating {
    display: none;
}
.woocommerce .woocommerce-ordering select {
    font-family: "yekanbakh";
    width: 150px;
    background: #fff;
}
.close-menu-responsive-full-page {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 105;
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(5px);
    transform: translateX(1000px);
    transition: transform .3s ease-in-out;
    display: none;
}
.archive .hero-archive {
    justify-content: start;
}
.woocommerce nav.woocommerce-pagination {
    margin-top: 30px;
}
/****   404   ****/
.page-not-found {
    width: 60%;
    margin: auto;
}
.page-not-found .wrapper {
    width: 70%;
    margin: 20px auto 0;
}
.btn404 {
    text-align: center;
}
.btn404 p {
    font-size: 18px;
    margin: 30px 0 20px;
    font-weight: 900;
}
.btn404 a {
    font-weight: 450;
    margin: 0 5px;
}
.cls-1 {
    fill: #ffc541;
}
.cls-2 {
    fill: #4e4066;
}
.cls-3 {
    fill: #6f5b92;
}
.cls-4 {
    fill: #f78d5e;
}
.cls-5 {
    fill: #fa976c;
}
.cls-6,
.cls-7,
.cls-8 {
    fill: #b65c32;
}
.cls-10,
.cls-6 {
    opacity: 0.6;
}
.cls-7 {
    opacity: 0.4;
}
.cls-9 {
    fill: #f4b73b;
}
.cls-11 {
    fill: #f9c358;
}
.cls-12 {
    fill: #9b462c;
}
.cls-13 {
    fill: #aa512e;
}
.cls-14 {
    fill: #7d6aa5;
}
/* animations */
.wheel {
    animation: wheel-rotate 6s ease infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes wheel-rotate {
    50% {
        transform: rotate(360deg);
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    100% {
        transform: rotate(960deg)
    }
}
.clock-hand-1 {
    animation: clock-rotate 3s linear infinite;
    transform-origin: bottom;
    transform-box: fill-box;
}
.clock-hand-2 {
    animation: clock-rotate 6s linear infinite;
    transform-origin: bottom;
    transform-box: fill-box;
}
@keyframes clock-rotate {
    100% {
        transform: rotate(360deg)
    }
}
#box-top {
    animation: box-top-anim 2s linear infinite;
    transform-origin: right top;
    transform-box: fill-box;
}
@keyframes box-top-anim {
    50% {
        transform: rotate(-5deg)
    }
}
#umbrella {
    animation: umbrella-anim 6s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes umbrella-anim {
    25% {
        transform: translateY(10px) rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}
#cup {
    animation: cup-rotate 3s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    transform-origin: top left;
    transform-box: fill-box;
}
@keyframes cup-rotate {
    50% {
        transform: rotate(-5deg)
    }
}
#pillow {
    animation: pillow-anim 3s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes pillow-anim {
    25% {
        transform: rotate(10deg) translateY(5px)
    }
    75% {
        transform: rotate(-10deg)
    }
}
#stripe {
    animation: stripe-anim 3s linear infinite;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes stripe-anim {
    25% {
        transform: translate(10px, 0) rotate(-10deg)
    }
    75% {
        transform: translateX(10px)
    }
}
#bike {
    animation: bike-anim 6s ease infinite;
}
@keyframes bike-anim {
    0% {
        transform: translateX(-1300px)
    }
    50% {
        transform: translateX(0);
        animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    }
    100% {
        transform: translateX(1300px)
    }
}
#rucksack {
    animation: ruck-anim 3s linear infinite;
    transform-origin: top;
    transform-box: fill-box;
}
@keyframes ruck-anim {
    50% {
        transform: rotate(5deg)
    }
}
.circle {
    animation: circle-anim ease infinite;
    transform-origin: center;
    transform-box: fill-box;
    perspective: 0px;
}
.circle.c1 {
    animation-duration: 2s
}
.circle.c2 {
    animation-duration: 3s
}
.circle.c3 {
    animation-duration: 1s
}
.circle.c4 {
    animation-duration: 1s
}
.circle.c5 {
    animation-duration: 2s
}
.circle.c6 {
    animation-duration: 3s
}
@keyframes circle-anim {
    50% {
        transform: scale(.2) rotateX(360deg) rotateY(360deg)
    }
}
.four,
#ou {
    animation: four-anim cubic-bezier(0.39, 0.575, 0.565, 1) infinite;
}
.four.a {
    transform-origin: bottom left;
    animation-duration: 3s;
    transform-box: fill-box;
}
.four.b {
    transform-origin: bottom right;
    animation-duration: 3s;
    transform-box: fill-box;
}
#ou {
    animation-duration: 6s;
    transform-origin: center;
    transform-box: fill-box;
}
@keyframes four-anim {
    50% {
        transform: scale(.98)
    }
}
/*********** end 404 **********/

/* bottom contact us */
.floating-button {
    font-size: 34px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    background: #F93422;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    cursor: pointer;
}
.floating-button i {
    transition: transform .2s ease-in-out;
}
.floating-contact .contact-list {
    width: 280px;
    position: fixed;
    right: 40px;
    bottom: 120px;
    background: #fff;
    box-shadow: 0px 0px 10px #ddd;
    padding: 10px;
    border-radius: 15px;
    z-index: 100;
    display: none;
}
.floating-contact .contact-list a {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    align-items: center;
    transition: background .2s ease-in-out;
    border-radius: 5px;
}
.floating-contact .contact-list a:hover {
    background: #f3f4f6;
}
.floating-contact .contact-list img {
    width: 35px;
    height: 35px;
}
.overlay-contact-floating {
    position: fixed;
    right: 0;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    backdrop-filter: blur(5px);
    z-index: 3;
    display: none;
}
/*********style comment *********/
.comment-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0px 0px 20px #f2f2f2;
    border: 1px solid #d5d5d544;
    margin-bottom: 30px;
}
.comment-respond p.comment-form-url{
    display: none;
}
.comment-respond .comment-form-comment {
    margin: 20px 0;
}
.comment-respond p.comment-form-author{
    width: 49%;
    float: right;
}
.comment-respond p.comment-form-email {
    width: 49%;
    float: left;
}
.comment-respond  .comment-form-cookies-consent {
    float: right;
    width: 100%;
    margin: 20px 0;
}

.comment-box .comments-inner {
    margin-top: 40px;
}
.comments-inner .comment {
    border-radius: 5px;
    margin: 20px 0px;
    border: 1px solid rgb(233, 233, 233);
    padding: 10px 15px 15px;
}
.comments-inner .comment-awaiting-moderation {
    color: #cf5d5d;
    margin: 7px 0;
    display: inline-block;
}

.comments-inner .comment p {
    margin: 5px 0 15px;
    clear: both;
    line-height: 2;
}
.comments-inner .comment .depth-2 {
    background: #f9f9f9;
}
.comments-inner .comment .depth-3 {
    background: #f0f0f0;
}
.comments-inner .comment .comment-author {

}
.comments-inner .comment .comment-meta {
    display: none;
}
.comments-inner .comment .comment-author img{
    display: none;
}
.comments-inner .comment .comment-author .fn {
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
}
.comments-inner .comment .comment-author .says{
    display: none;
}

.comments-inner .comment .comment-meta a {
    color: #8a8a8a;
    font-size: 13px;
}
.comments-inner .comment p {
    margin: 5px 0 15px;
    clear: both;
    line-height: 2;
    color: #606060;
}
.comments-inner .comment .reply {
    display: block;
    margin-top: 15px;
}
.comments-inner .comment .reply a {
    background: #ecf0f1;
    color: #333;
    padding: 4px 15px;
}
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
    margin: 0 5px;
    border: none;
}
.woocommerce nav.woocommerce-pagination span.current {
    background: #f93422 !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 700;
}
.woocommerce nav.woocommerce-pagination a {
    background: #ecf0f1;
    padding: 8px 16px !important;
    border-radius: 5px;
}
.woocommerce nav.woocommerce-pagination i {
    font-size: 10px;
    margin: 0 3px;
}
/********* archive post **********/
.main-archive {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: start;
}
.main-archive .post-item {
    box-shadow: 0px 4px 85px 0px #D3D3D340;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #d5d5d544;
    display: flex;
    width: 23.5%;
    flex-direction: column;
    justify-content: space-between;
}
.main-archive .post-item figure img {
    border-radius: 15px;
}
.main-archive .post-item h2 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin: 15px 0;
    height: 40px;
}
.main-archive .post-item .down {
    display: flex;
    justify-content: space-between;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 7px 10px;
    font-size: 13px;
    color: #757575;
}
.title-archive {
    box-shadow: 0px 4px 104px 0px #D3D3D333;
    border-radius: 10px;
    background: #fff;
    padding: 16px;
    border: 1px solid #d5d5d544;
    margin-bottom: 10px;
}
.blog .title-archive {
    font-size: 18px;
    font-weight: 600;
}
.title-archive span {
    color: var(--main-color);
}
.pagination {
    text-align: center;
    margin-top: 40px;
}
.pagination span.current {
    background: #f93422;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    margin: 0 3px;
    font-weight: 700;
}
.pagination a {
    background: #ecf0f1;
    color: #333;
    padding: 8px 16px;
    border-radius: 5px;
    margin: 0 3px;
}
.breadcrumbs i {
    font-size: 10px;
    margin: 0 3px;
}
/***  cart ****/
.cart-line-bottom {
    display: none;
}
.cart-custom {
    display: flex;
    flex-wrap: wrap;
    width: 72%;
    gap: 20px;
}
.cart-custom .product-item {
    width: 31%;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
}
.cart-custom .product-item .quantity {
    width: 100px;
    height: 40px;
}
.cart-custom .product-item .quantity button {
    margin: 0;
    padding: 5px 10px;
    font-family: revert;
}
.cart-custom .product-item .quantity .qty {
    font-size: 16px;
    font-weight: 450;
    padding: 0;
}
.cart-custom .product-item .delete-cart-item a {
    font-size: 14px;
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
    color: red !important;
}
.cart-custom .product-item .delete-cart-item a:hover {
    color: red !important;
    background: none !important;
}
.cart-coupon {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0px 0px 14px #f1f1f1;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    align-items: center;
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
}
.cart-coupon .coupon {
    display: flex;
    gap: 10px;
}
.cart-coupon .coupon button {
    font-size: 14px;
    font-weight: 600;
    width: 170px;
}
.cart-coupon > button {
    padding: 9px !important;
    line-height: 2 !important;
}
form.woocommerce-cart-form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
    width: 26.5%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}
.cart-left-box, .container .woocommerce form.checkout_coupon, .container .woocommerce form.login, .container .woocommerce form.register {
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000008;
    padding: 15px;
    flex-grow: 1;
}
.cart-left-box .cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.woocommerce ul#shipping_method li {
    background: #fafafa;
    border: 1px solid #e2e2e2;
    padding: 13px;
    font-size: 14px;
    cursor: pointer;
}
.cart-left-box .woocommerce-shipping-destination {
    text-align: right;
    font-size: 13px;
    background: #fff8e1;
    border: 1px solid #f0e5c1;
    padding: 12px;
    line-height: normal;
}
.cart-left-box .shipping-calculator-button {
    color: #0089ff;
    font-size: 14px;
    padding: 10px 0;
    font-weight: 450;
}
.woocommerce .shipping-calculator-form button {
    background: #f93422 !important;
    width: 100%;
    margin-bottom: 12px;
    padding: 13px !important;
}
.cart-left-box .order-total {
    display: flex;
    justify-content: space-between;
    background: #e1ffe9;
    border: 1px solid #b6f4c7;
    padding: 12px;
    line-height: normal;
}
.cart-process {
    width: 70%;
    margin: 35px auto;
}
.cart-process ul {
    display: flex;
    justify-content: space-between;
}
.cart-process ul li {
    position: relative;
    flex-grow: 1;
    text-align: center;
}
.cart-process ul li:before {
    content: attr(data-step);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #e6e6e6;
    z-index: 3;
    position: relative;
    margin: 0 auto;
}
.cart-process ul li:after {
    background: #ddd;
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    top: 23px;
    right: 50%;
}
.cart-process ul li.active {

}
.cart-process ul li.active:before {
    background: var(--second-color);
    color: #fff;
    border: 2px solid var(--second-color);
}
.cart-process ul li.active:after {
    content: "";
}
.cart-process ul li:last-child:after {
    display: none;
}
.cart-process ul li a ,.cart-process ul li span {
    margin-top: 7px;
    display: block;
    font-size: 13px;
}
.cart-process ul li.complete:before {
    content: "✔";
    background: #e1ffe9;
    color: var(--second-color);
    border: 2px solid var(--second-color);
}
.cart-process ul li.complete:after {
    background: var(--second-color);
}
/*  checkout  */
.hero-checkout {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.pishro-order-review {
    width: 34%;
}
.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    width: 100%;
    padding: 14px;
    margin: 15px 0 10px;
    font-size: 16px;
}
.other-address {
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0px 0px 10px 5px #00000008;
    padding: 15px;
    margin: 20px 0;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #c5c5c5;
    border-radius: 8px;
    display: block;
    height: 48px;
    padding: 8px;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    left: 8px;
    top: 10px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.woocommerce .button {
    background: var(--second-color) !important;
    color: #fff !important;
    padding: 8px 10px !important;
    line-height: 2 !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    margin-top: 20px;
    background: #fff;
    box-shadow: 0px 0px 14px #f1f1f1;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 5px;
}
.woocommerce-checkout #payment ul.payment_methods li {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    background: #fafafa;
    cursor: pointer;
}
/*  thank you  */
p.woocommerce-thankyou-order-received {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: normal;
}
.woocommerce ul.order_details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.woocommerce ul.order_details::after, .woocommerce ul.order_details::before {
    display: none;
}
.woocommerce ul.order_details li {
    background: #e0ffe8;
    font-size: 16px;
    padding: 20px;
    text-align: center;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #b6f4c7;
    flex-grow: 1;
}
.woocommerce ul.order_details li strong {
    font-size: 18px;
    margin-top: 18px;
}
.order-final-info {
    display: flex;
    justify-content: space-between;
    background: #f3f4f6;
    flex-wrap: wrap;
    border-radius: 5px;
}
.order-final-info > div {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 12px;
    border-left: 1px solid #ddd;
    flex-grow: 1;
    font-weight: 450;
}
.woocommerce .woocommerce-customer-details .woocommerce-column__title ,
.woocommerce-order-details h2.woocommerce-order-details__title{
    margin-bottom: 20px;
}
/*   my account form login   */
.back-register-login {
    background-image: url("img/bg-login.jpg");
    background-size: cover;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
.login-page {
    width: 460px;
    margin: 6% auto 0;
    max-width: 100%;
}
.form-login-pishro label.woocommerce-form-login__rememberme {
    text-align: right;
    display: block;
    cursor: pointer;
    margin: 0 5px 10px 0;
}
.form-login-pishro label.woocommerce-form-login__rememberme input {
    margin: 0;
    vertical-align: middle;
    margin-left: 2px;
}
.form-login-pishro p.woocommerce-LostPassword {
    margin-top: 15px;
}
.login-page .form-login-pishro .message {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.woocommerce .form-login-pishro form {
    border: unset;
    box-shadow: unset;
    padding: unset;
    margin: unset;
}
/*   my account dashboard  */
.hero-myaccount {
    border-top: 7px solid #172b4d;
    background: #fff;
    overflow: auto;
    box-shadow: rgba(0, 0, 0, .07) 0 0px 10px 0;
    border-top-right-radius: 15px;
    margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #172b4d;
    width: 20%;
    padding-bottom: 15px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #fff;
    padding: 12px;
    display: block;
    font-size: 15px;
    opacity: .7;
    border-right: 3px solid #172b4d;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    opacity: 1;
    border-right: 3px solid #fff;
    background: #203352;
}
.user-info-account {
    text-align: center;
    color: #fff;
    padding-top: 35px;
}
.user-info-account img {
    border-radius: 10px;
    background: #fff;
    padding: 4px;
}
.user-info-account span {
    font-size: 22px;
    display: block;
    margin: 10px 0;
}
.woocommerce-MyAccount-navigation-link a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    margin-left: 10px;
    font-size: 18px;
    vertical-align: middle;
}
li.woocommerce-MyAccount-navigation-link--dashboard a:before {
    content: "\f625";
}
li.woocommerce-MyAccount-navigation-link--orders a:before {
    content: "\f290";
}
li.woocommerce-MyAccount-navigation-link--downloads a:before {
    content: "\f019";
}
li.woocommerce-MyAccount-navigation-link--edit-address a:before {
    content: "\f5a0";
}
li.woocommerce-MyAccount-navigation-link--edit-account a:before {
    content: "\f2bb";
}
li.woocommerce-MyAccount-navigation-link--wishlist a:before {
    content: "\f004";
}
li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    content: "\f2f5";
}
.woocommerce-account .woocommerce-MyAccount-content {
    width: 80%;
    padding: 35px 30px;
}
.myaccount-detail {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}
.myaccount-detail .item-detail {
    width: 100%;
    color: #fff;
    padding: 10px;
    display: flex;
    gap: 12px;
    border-radius: 10px;
    flex-grow: 1;
}
.myaccount-detail .item-detail i {
    font-size: 28px;
}
.myaccount-detail .item-detail .item-content h6 {
    font-size: 16px;
    margin-bottom: 10px;
}
.myaccount-detail .item-detail:nth-child(1) {
    background: #4cd137;
}
.myaccount-detail .item-detail:nth-child(2) {
    background: #eb2f06;
}
.myaccount-detail .item-detail:nth-child(3) {
    background: #1e90ff;
}
.myaccount-detail .item-detail:nth-child(4) {
    background: #f79f1f;
}
.myaccount-detail .item-detail .item-content div {
    font-size: 15px;
}
.myaccount-order {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 20px;
}
.myaccount-order .item-order {
    width: 100%;
    text-align: center;
    border-left: 1px solid #ddd;
    flex-grow: 1;
}
.myaccount-order .item-order i {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}
.myaccount-order .item-order:last-child {
    border-left: 0;
}
.myaccount-notif {
    background: #ecf0f1;
    padding: 15px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    margin-bottom: 20px;
    border-right: 5px solid #dbdfe1;
}
.myaccount-notif h6 {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding: 5px 0 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.myaccount-notif div {
    line-height: 2;
    font-size: 15px;
}
.notif-dashboard {
    background: #ecf0f1;
    padding: 15px;
    border: 1px solid #f5f5f5;
    border-radius: 10px;
    margin-bottom: 20px;
    border-right: 5px solid #dbdfe1;
}
.woocommerce table.my_account_orders th {
    font-size: 14px;
}
.woocommerce table.my_account_orders .button {
    margin-left: 3px;
    font-weight: 450;
}
.addresses .woocommerce-Address {
    background: #ecf0f1;
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    width: 48% !important;
    line-height: 2;
}
.woocommerce-account .addresses .title .edit {
    float: left;
    color: #0089ff;
    font-weight: 450;
    font-size: 15px;
}

/******** header two *******/
.header-two {
    position: sticky;
    top: 0;
}
.header-two .main-header {
    padding: 15px;
}
.header-two .m-h-right {
    gap: 30px;
    width: auto;
}
.header-two .cart-btn-header:hover .cart-content {
    top: 39px;
    left: -10px;
}
.header-two .cart-btn-header .cart-content:before {
    content: "";
    height: 30px;
    width: 100%;
    display: block;
    position: absolute;
    top: -22px;
    left: 0;
}
.header-two .register-btn i {
    font-size: 20px;
}
.searchbox-two {
    display: flex;
}
.searchbox-two i {
    font-size: 20px;
    cursor: pointer;
}

.searchbox-two form {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: none;
}
.searchbox-two form input[type="search"] {
    height: 100%;
    font-size: 16px;
    padding-right: 20px;
    border-radius: 0;
    background: #fff;
    text-align: center;
}
.searchbox-two form button {
    background: transparent;
    left: 20px;
    right: unset;
    position: absolute;
    bottom: 22%;
    font-size: 28px;
    color: #9f9f9f;
    cursor: pointer;
}
.header-two .cart-btn-header > a {
    background: none;
    box-shadow: none;
    color: #303030;
    font-size: 20px;
    padding: 0;
    display: flex;
}
.menu-bottom-mobile .cart-btn-header span.cart-btn-num,
.header-two .cart-btn-header span.cart-btn-num
{
    padding: 0;
    position: absolute;
    left: 10px;
    background:var(--second-color);
    width: 15px;
    height: 16px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    top: 10px;
    border-radius: 50%;
}
.favorite-btn-header-mobile a {
    display: flex;
}
.favorite-btn-header-mobile i {
    font-size: 20px;
}
.searchbox-two .content-ajax-search,.searchbox-two .loader-ajax-search {
    top: 55px;
}
.header-two .pishro-megamenu > ul > li > ul {
    width: 1044px;
}
.header-two .content-ajax-search {
    width: 85%;
    margin: auto;
}
.header-two .loader-ajax-search {
    width: 80%;
    margin: 0px 10%;
}
.search-main form button::before {
    padding-left: 10px;
}
/* scroll  */
::-webkit-scrollbar {
    width: 12px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #e9e9e9;
}
::-webkit-scrollbar-thumb {
    background: #a9a9a9;
    border-radius: 5px;
}
/* پشتیبانی برای مرورگرهای فایرفاکس */
.scroll-container {
    scrollbar-color: #e9e9e9 #a9a9a9;
}
.woocommerce div.product div.images .flex-control-thumbs {
    overflow-y: auto;
    max-height: 450px;
}
/* scroll image product */
.flex-control-thumbs::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background: #00000000;
}
.flex-control-thumbs::-webkit-scrollbar-thumb {
    background: #a9a9a9;
    border-radius: 5px;
}
.flex-control-thumbs::-webkit-scrollbar-track {
    background: #00000000;
}
.flex-control-thumbs::-webkit-scrollbar-button {
    display: none;
}
/* برای مرورگرهای فایرفاکس */
.flex-control-thumbs {
    scrollbar-width: thin;
    scrollbar-color: #a9a9a9 #00000000;
}
.mobile {
    display: none;
}
.woocommerce ul.product_list_widget li .quantity {
    display: inline;
    border: 0;
    padding: 0;
}
/* header mobile nav menu */
.navigation {
    width: 75%;
    position: fixed;
    padding: 10px;
    z-index: 999;
    background: #FFFFFF;
    border-radius: 6px;
    transform: translateX(800px);
    transition: transform .3s ease-in-out;
    top: 65px;
    bottom: 20px;
    overflow-y: auto;
    right: 10px;
    display: none;
}
.navigation ul li {
border-bottom: 1px solid #f2f2f2;
}
.navigation ul li a {
display: inline-block;
padding: 10px 0;
font-weight: 450;
}
.navigation ul li ul {
padding: 5px;
background: #f8f8f8;
display: none;
}
.navigation ul li ul li a {
font-size: 13px;
font-weight: 400;
padding: 8px;
}
.navigation ul li ul li ul{
background: #f0f0f1;
}
.navigation > ul > li > i.sub-menu-arrow {
float: left;
font-size: 18px;
padding: 5px 15px 5px 5px;
border-right: 1px solid #ddd;
margin-top: 8px;
}
.navigation ul li a:last-child {
border-bottom:0;
}
.navigation ul li ul li i.sub-menu-arrow {
font-size: 16px;
float: left;
padding: 10px 15px 8px 10px;
border-right: 1px solid #e9e9e9;
}
.navigation ul:nth-child(2) li:last-child {
border-bottom:0;
}
/****** story ******/
div#zuck-modal-content {
    direction: ltr;
    text-align: left;
}
#zuck-modal-content .story-viewer .head .right {
    float: right;
    margin-right: 10px;
}
#zuck-modal-content .story-viewer .head .time {
    display: none !important;
}
#zuck-modal-content .story-viewer .head .right .close {
    color: #fff;
}
.stories.carousel .story,.stories.carousel .story:first-child,.stories.carousel .story:last-child {
    margin: 0px 15px;
}
#zuck-modal-content .story-viewer .head .left .time, #zuck-modal-content .story-viewer .head .right .close {
    display: block;
}
.pishro-story {
    text-align: center;
}
.pishro-story .storiesWrapper .story {
    min-width: max-content;
}
.stories.carousel .story,.stories.carousel .story:first-child,.stories.carousel .story:last-child {
    margin: 0 15px;
}
.stories.carousel .story > .item-link > .info .name {
    font-weight: 500;
}
.stories.carousel {
    padding-bottom: 10px;
}
.stories.carousel .story > .item-link > .info {
    max-width: 70px;
}
#zuck-modal-content .story-viewer.with-back-button .head .left > .back {
    display: none;
}


.elementor-374 .elementor-element.elementor-element-d456ef4 {
    overflow-x: auto;
}
/********* mobile menu ************/
.header-mobile {
    display: none;
}
.header-mobile .logo {
    max-width: 130px;
}
.header-mobile .logo a {
    display: flex;
}
.header-mobile .register-btn i, .header-mobile #hamberger > i {
    font-size:22px;
}
/*.menu-bottom-mobile .search-main {
    flex-grow: 1;
}
.menu-bottom-mobile .search-main form input[type="search"] {
    padding: 12px;
}
.menu-bottom-mobile .search-main form input[type="search"] {
    padding: 12px;
    font-size: 13px;
    padding-right: 42px;
}
.menu-bottom-mobile .search-main form button {
    position: absolute;
    font-size: 22px;
    background: transparent;
    color: #9f9f9f;
    right: 18px;
    top: 13px;
}*/
.menu-bottom-mobile {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    background: #fff;
    justify-content: space-around;
    align-items: center;
    padding: 8px;
    box-shadow: rgba(0,0,0,.05) 0 -2px 10px 0;
    border-top: 1px solid #f5f5f5;
    z-index: 9;
}
.home-btn-menu-mobile a,.search-btn-menu-mobile,.shop-btn-menu-mobile a,
.favorite-btn-menu-mobile a,.cart-btn-menu-mobile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.favorite-btn-menu-mobile a i {
    font-size:22px;
}

.home-btn-menu-mobile span.title,.search-btn-menu-mobile span.title,
.shop-btn-menu-mobile span.title, .favorite-btn-menu-mobile span.title,
.cart-btn-menu-mobile span.title  {
    font-size: 10px;
    font-weight: 450;
}
.search-btn-menu-mobile form {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.search-btn-menu-mobile form input[type="search"] {
    border: 0;
    border-radius: 0;
}
.search-btn-menu-mobile form button {

}
.cart-btn-menu-mobile {
    position: relative;
}
.cart-btn-menu-mobile  .cart-btn-num {
    padding: 0;
    position: absolute;
    right: 10px;
    background: #1BD2A2;
    width: 15px;
    height: 16px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    top: 10px;
    border-radius: 50%;
}
/* search mobile */
.search-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99999;
    padding: 10px;
    display: none;
}
.search-mobile header {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.search-mobile form {
    position: relative;
}
.search-mobile form input[type="search"]{
    padding-right: 45px;
}
.search-mobile form button {
    position: absolute;
    right: 8px;
    top: 10px;
    background: transparent;
}
.search-mobile .search-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25%;
    gap: 15px;
    font-weight: 700;
}
.demo-scroll {
    -webkit-transition: ease-in-out 20s !important;
    transition: ease-in-out 20s !important;
}
.demo-scroll:hover {
    background-position: center bottom !important;
}
























