/*
Theme Name: Houmaan
Theme URI: https://houmaan.com/
Author: Younes
Author URI: https://www.linkedin.com/in/younes-darabi-0951b3200
Version: 1.0
*/
:root {
    --primary-color: #000000;
    --secondery-color: #b81621;
    --text-color: #000000;
    --message-color: #b81621;
    --shadow-first: 0 4px 16px rgba(0, 0, 0, 0.16);
    --shadow-second: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@font-face {
    font-family: 'irs';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('fonts/IRANSansWeb.eot');
    src: url('fonts/IRANSansWeb.eot?#iefix') format('embedded-opentype'),
        url('fonts/IRANSansWeb.woff') format('woff'),
        url('fonts/IRANSansWeb.ttf') format('truetype');
}

@font-face {
    font-family: 'irs';
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: url('fonts/IRANSansWeb_Bold.eot');
    src: url('fonts/IRANSansWeb_Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/IRANSansWeb_Bold.woff') format('woff'),
        url('fonts/IRANSansWeb_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'pd';
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url('fonts/PeydaWeb-Regular.woff2') format('woff2'),
        url('fonts/PeydaWeb-Regular.woff') format('woff');
}

@font-face {
    font-family: 'pd';
    font-style: normal;
    font-weight: 700;
    font-display: auto;
    src: url('fonts/PeydaWeb-Bold.woff2') format('woff2'),
        url('fonts/PeydaWeb-Bold.woff') format('woff');
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background-color: #fff;
    font-family: pd;
    color: var(--text-color);
    width: 100%;
    margin: 0 auto;
    position: relative;
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

a:hover {
    color: var(--secondery-color);
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a,
li {
    transition: all 0.2s ease-out 0.15s;
    -webkit-transition: all 0.2s ease-out 0.15s;
    -moz-transition: all 0.2s ease-out 0.15s;
    color: var(--primary-color);
}

table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    background-color: #fff;
}

th,
td {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 15px;
}

tr:hover>td {
    background: #e7e7e7;
}

.hidden {
    display: none;
}

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

.hide-scroll {
    overflow: hidden;
}

.hidescrollbar::-webkit-scrollbar {
    display: none;
}

.hidescrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* .center {
    text-align: center;
} */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center;
}

.flex.space-between {
    justify-content: space-between;
}

.flex.nowrap {
    flex-wrap: nowrap;
}

.flex.align-center {
    align-items: center;
}

.flex.align-end {
    align-items: end;
}

.flex.end {
    justify-content: end;
}

.flex.column {
    flex-direction: column;
}

.row {
    position: relative;
}

.col {
    position: relative;
}

.col-10 {
    width: 10%;
}

.col-15 {
    width: 15%;
}

.col-18 {
    width: 18%;
}

.col-20 {
    width: 20%;
}

.col-25 {
    width: 25%;
}

.col-30 {
    width: 30%;
}

.col-33 {
    width: 33.33333%;
}

.col-40 {
    width: 40%;
}

.col-45 {
    width: 45%;
}

.col-50 {
    width: 50%;
}

.col-55 {
    width: 55%;
}

.col-60 {
    width: 60%;
}

.col-70 {
    width: 70%;
}

.col-75 {
    width: 75%;
}

.col-80 {
    width: 80%;
}

.col-90 {
    width: 90%;
}

.col-100 {
    width: 100%;
}

.padding-4 {
    padding: 4px;
}

.padding-7 {
    padding: 7px;
}

.padding-14 {
    padding: 14px;
}

.padding-21 {
    padding: 21px;
}

.gap-7 {
    gap: 7px;
}

.gap-14 {
    gap: 14px;
}

.gap-21 {
    gap: 21px;
}

.gap-35 {
    gap: 35px;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    margin: 10px auto;
}

.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    --c: no-repeat radial-gradient(farthest-side, #25b09b 92%, #0000);
    background:
        var(--c) 50% 0,
        var(--c) 50% 100%,
        var(--c) 100% 50%,
        var(--c) 0 50%;
    background-size: 12px 12px;
    animation: l12 1s infinite;
}

.loader::before {
    margin: 4px;
    filter: hue-rotate(45deg);
    background-size: 8px 8px;
    animation-timing-function: linear
}

@keyframes l12 {
    100% {
        transform: rotate(.5turn)
    }
}

.container {
    width: 100%;
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
}

.btn {
    padding: 6px 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.btn:hover {
    color: var(--secondery-color);
}

.btn.dark {
    color: #fff;
}

.btn.simple {
    color: #000000;
}

.btn.dark:hover {}

.btn.with-box {
    background: var(--primary-color);
    color: #fff;
    padding: 12px;
}

.btn.with-box:hover,
.btn.with-box.active {
    background: var(--secondery-color);
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9;
    display: none;
}

.overlay.light {
    background: rgba(0, 0, 0, 0.2);
}

.message {
    text-align: center;
    margin: 15px 0 0;
    color: var(--message-color);
    font-weight: 700;
    font-size: 15px;
}

.ys-popup {
    max-width: 500px;
    width: 90%;
    background: #fff;
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    margin: auto;
    max-height: 500px;
    overflow-x: hidden;
    padding: 20px;
    border-radius: 7px;
    box-shadow: var(--shadow-second);
    z-index: 10;
    display: none;
}

.ys-popup .close-box-btn,
.cart-box .close-box-btn,
.mobile-nav .close-box-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.ys-popup .close-box-btn img {
    width: 19px;
}

.ys-popup .logo {
    margin: 0 auto;
}

.ys-popup p label {
    font-weight: 700;
    font-size: 15px;
}

.ys-popup .title h1 {
    text-align: center;
    font-size: 21px;
    margin: 30px 0;
}

.ys-popup p {
    margin: 10px 0;
}

.login-box p.message {
    text-align: center;
    font-size: 14px;
    color: var(--message-color);
}

input,
select,
textarea {
    background: #fff;
    border: 0 none;
    border-radius: 12px;
    box-shadow: var(--shadow-first);
    padding: 10px 15px;
    font-family: irs;
    font-size: 15px;
    width: 100%;
    outline: 0;
}

input[type="checkbox"] {
    width: auto;
}

input[type="number"] {
    -moz-appearance: textfield;
    text-align: center;
    direction: ltr;
    border: 2px solid #313131;
}

input[type="email"] {
    direction: ltr;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.ys-popup p a {
    display: block;
    width: auto;
    margin: 0 auto;
    text-align: center;
}

.white-box {
    background: #fff;
    box-shadow: var(--shadow-first);
    border-radius: 14px;
}

header {
    background: #f6f6f6;
    padding: 14px 0;
    position: relative;
    z-index: 2;
}

.search-btn img {
    width: 20px;
}

header .logo img {
    width: 60px;
}

header .btn img {
    width: 20px;
}

.main-menu {
    background: rgba(242, 242, 242, 0.6);
    padding: 7px 0;
    position: relative;
    z-index: 2;
}

.main-menu ul {
    display: flex;
    gap: 35px;
}

.main-menu ul li a:hover {
    color: var(--secondery-color);
}

.hero {
    margin-top: -40px;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.hero .slides img {
    width: 100%;
    display: none;
}

.hero .slides img.active {
    display: block;
}

.hero .arrows {
    position: absolute;
    left: 20%;
    bottom: 10%;
    display: flex;
    z-index: 9;
    gap: 7px;
}

.hero .arrows .arrow.swiper-button-prev img {
    transform: rotate(180deg);
}

.hero .arrows .arrow img {
    width: 27px;
}

.hero .arrows .arrow {
    background: #C1C1C1;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 0;
    color: transparent;
}

.hero .arrows .arrow svg {
    display: none;
}

.swiper-slide img {
    width: 100%;
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-size: 22px;
}

.content-section .text {
    text-align: justify;
    line-height: 35px;
    font-size: 21px;
}

.gray-bg {
    background: #e5e5e5;
}

footer {
    padding: 70px 0 40px;
}

footer .logo {
    width: 50px;
}

footer label {
    color: #717171;
}

footer .menu li {
    padding: 4px 0;
}

footer .social img.title {
    width: 190px;
}

footer .social .icons a img {
    width: 24px;
}

.copyright {
    background: #171614;
    color: #fff;
    font-size: 15px;
}

.content-box {
    padding: 70px 0;
}

aside .box {
    background: #fff;
}

aside li a {
    display: block;
    padding: 7px 0;
}

.items-container {
    padding-left: 40px;
}

.items .item .white-box {
    height: 100%;
    padding-top: 30px;
}

.item .wishlist-btn {
    position: absolute;
    right: 24px;
    width: 24px;
    top: 24px;
}

.item .item-code {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 15px;
}

.single .details-container {
    padding-left: 40px;
}

.single .details-container .page-title {
    font-size: 27px;
    padding-bottom: 10px;
}

.single .details-container .description {
    text-align: justify;
    font-size: 18px;
    line-height: 32px;
}

.single .item-code {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 15px;
}

.single .wishlist-btn {
    position: absolute;
    right: 14px;
    width: 24px;
    top: 14px;
}

.short-details .short-item {
    background: #fff;
    padding: 4px 10px;
    /* width: 49%; */
}

.short-details .short-item span {
    font-weight: 700;
}

.short-details {
    padding-bottom: 14px;
}

.single .order-details {
    padding-bottom: 14px;
}

.order-details input.count {
    width: 100px;
    padding: 5px;
    box-shadow: none;
    -moz-appearance: auto;
}

.order-details .total-weight {
    font-weight: 700;
}

.single .breadcrumbs {
    position: absolute;
    left: 0;
    top: -44px;
    font-size: 13px;
}

.single .message-box {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--secondery-color);
    padding: 14px;
    color: #fff;
    display: none;
}

.fluid-cart {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    z-index: 10;
    box-shadow: var(--shadow-second);
    display: none;
}

.fluid-cart a.close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
}

.fluid-cart .cart-item {
    border-bottom: 1px solid #ccc;
    padding: 14px 0;
}

.fluid-cart .cart-item .details {
    width: 100%;
}

.fluid-cart .cart-item img.thumbnail {
    width: 100px;
}

.fluid-cart .cart-item .details span,
.fluid-cart .cart-item .details .item-total-weight {
    color: #3c3c3c;
    font-size: 14px;
}

.fluid-cart a.btn.cart {
    background: #818181;
}

.auth-box {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.cart-section .cart-item input.count {
    width: 100px;
    -moz-appearance: auto;
}

.cart-section .cart-item {
    position: relative;
}

.cart-section .cart-item .remove-verification {
    position: absolute;
    right: 30px;
    background: var(--secondery-color);
    color: #fff;
    padding: 4px;
    font-size: 14px;
    display: none;
}

.cart-section .cart-item .remove-verification a {
    color: #fff;
    text-decoration: underline;
}

.search-box {
    position: absolute;
    background: #f6f6f6;
    width: 100%;
    left: 0;
    top: 0;
}

.search-box img {
    width: 24px;
}

.search-box .close img {
    width: 18px;
}

.search-box input {
    box-shadow: none;
    border: 1px solid #000;
}

textarea.notes {
    border: 1px solid var(--primary-color);
}

.apply-discount-btn {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 4px !important;
    font-size: 14px;
}

.item .special-product {
    position: absolute;
    top: 52px;
    left: 25px;
    font-size: 14px;
    color: var(--secondery-color);
    font-weight: 700;
}

.dashboard-section .post-content-box {
    height: 100%;
}

/* --------- RTL --------- */
body.lang-fa .hero .arrows .arrow {
    transform: rotate(180deg);
}

.lang-fa .items-container {
    padding-right: 40px;
    padding-left: 0;
}

.lang-fa .item .special-product {
    left: auto;
    right: 25px;
}

.lang-fa .item .wishlist-btn {
    right: auto;
    left: 24px;
}

.lang-fa .item .item-code {
    left: auto;
    right: 25px;
}

.lang-fa.single .details-container {
    padding-right: 40px;
    padding-left: 0;
}

.lang-fa.single .breadcrumbs {
    left: auto;
    right: 0;
}

.lang-fa.single .item-code {
    left: auto;
    right: 14px;
}

.lang-fa.single .wishlist-btn {
    right: auto;
    left: 14px;
}

.lang-fa .fluid-cart {
    left: auto;
    right: 0;
}

.lang-fa .fluid-cart a.close {
    left: 20px;
    right: auto;
}

.lang-fa a.save-notes {
    font-size: 14px;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    z-index: 10;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 0;
    display: none;
}

.mobile-menu h2 {
    font-size: 20px;
    border-bottom: 1px solid #fff;
}

.mobile-menu li a {
    color: #fff;
    display: block;
    padding: 7px 0;
}

.mobile-menu .close-btn {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 14px;
    top: 4px;
    background: #fff;
    border-radius: 50px;
}

.single img.arrow-down {
    width: 24px;
    transform: rotate(-90deg);
    border: 1px solid #000;
    background: #fff;
    border-radius: 5px;
}

.pagination .nav-links {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 14px;
}

.pagination .nav-links span,
.pagination .nav-links a {
    background: #fff;
    border-radius: 4px;
    border: 1px solid #000;
    padding: 2px 7px;
}

.pagination .nav-links span.page-numbers.current {
    background: var(--secondery-color);
    color: #fff;
    border-color: var(--secondery-color);
}

.pagination .nav-links .next.page-numbers {
    display: none;
}

.single-product-thumbnail {
    padding-top: 40px;
}

.single-product-thumbnail .gallery img {
    width: 80px;
    border-radius: 14px;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    opacity: 0.6;
}

.single-product-thumbnail .gallery img:hover {
    opacity: 1;
}

.single-product-thumbnail .gallery img.active {
    border-color: var(--secondery-color);
    opacity: 1;
}

.zoom-container {
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
}

.zoom-container img {
    width: 100%;
    transition: transform 0.2s ease;
}

h3.child-products-title {
    margin-top: 10px;
}

.single .child-items .box {
    position: relative;
}

.single .child-items .item-code {
    left: 7px;
    top: 7px;
    font-size: 12px;
}

.lang-fa.single .child-items .item-code {
    right: 7px;
    left: auto;
}

.single .child-items h3.title {
    font-size: 14px;
}

.single .gallery {
    margin-top: 14px;
}

.filter-box {
    border: 1px solid #dcdcdc;
    padding: 14px;
    border-radius: 14px;
    width: 100%;
}

.weight-filter {
    text-align: center;
}

.item .more-details-btn,
.item span.add-to-cart-popup-btn {
    position: absolute;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 150px;
    text-align: center;
    padding: 6px 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    transition: all 0.2s ease-out 0.15s;
    -webkit-transition: all 0.2s ease-out 0.15s;
    -moz-transition: all 0.2s ease-out 0.15s;
}

.item .image-box {
    position: relative;
}

.item span.add-to-cart-popup-btn {
    top: 20px;
    width: auto;
    right: auto;
    background: transparent;
    left: 24px;
    bottom: auto;
    cursor: pointer;
}

.item:hover .more-details-btn,
.item:hover span.add-to-cart-popup-btn {
    opacity: 1;
}

.archive .item .child-items img,
.page-template .item .child-items img {
    border: 1px solid #ccc;
}

.archive .item span.add-to-cart-popup-btn,
.page-template .item span.add-to-cart-popup-btn {
    top: 40px;
}

.margin-top-auto {
    margin-top: auto;
}

.flex-1 {
    flex: 1;
}

.order-tools .count-perpage,
.order-tools .products-order-type {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
    gap: 4px;
    font-size: 14px;
}

.order-tools a {
    background: #cfcfcf;
    padding: 0 4px;
    border-radius: 4px;
}

.order-tools a:hover,
.order-tools a.active {
    background-color: #fff;
}

.quantity-btns button {
    font-weight: 700;
    font-size: 20px;
    border: 1px solid #000;
    border-radius: 4px;
    width: 27px;
    height: 27px;
}

@media screen and (max-width: 780px) {
    .hide-desktop {
        display: block;
    }

    .hide-mobile {
        display: none;
    }

    .container {
        padding: 0 14px;
    }

    .hero {
        margin-top: 0;
        height: auto;
    }

    .hero .arrows {
        bottom: 20%;
    }

    .hero .arrows .arrow {
        width: 30px;
        height: 30px;
    }

    .hero .arrows .arrow img {
        width: 19px;
    }

    .content-section {
        padding: 10px 0;
    }

    .content-section .col.col-50 {
        width: 100%;
        padding: 0;
    }

    .content-section .text {
        font-size: 16px;
        line-height: 28px;
    }

    .content-section.new-products .item {
        width: 50%;
        padding: 7px;
    }

    .content-section.new-products .item h3 {
        text-align: center;
        font-size: 15px;
    }

    footer .col {
        width: 100%;
        border-bottom: 1px solid #000;
    }

    footer .col.second-col .col {
        width: 33%;
    }

    footer .col.social {
        padding: 14px 0;
    }

    footer {
        padding: 20px 0;
    }

    .content-box {
        padding: 20px 0;
    }

    .content-box .col {
        width: 100%;
    }

    .archive .content-box .col.col-20,
    .page-template-page-shop .col.col-20,
    .page-template-page-parent-product .col.col-20 {
        order: 2;
    }

    .items-container,
    .lang-fa .items-container {
        padding: 0 0 20px;
    }

    .content-box .items .item {
        width: 50%;
        padding: 7px;
        text-align: center;
    }

    .content-box .items .item .box {
        padding: 40px 4px 4px;
        height: 100%;
    }

    .content-box .items .item .box .title {
        font-size: 14px;
    }

    .content-box .items .item .box .wishlist-btn {
        right: 14px;
        top: 34px;
    }

    .content-box .items .item .box .special-product {
        position: relative;
        top: auto;
        left: auto;
        font-size: 12px;
    }

    .content-box .items .item .box .item-code,
    .dashboard-section .item .item-code {
        left: 14px;
        top: 14px;
        font-size: 12px;
        width: 83%;
    }

    .single .details-container .page-title {
        font-size: 20px;
        width: 100%;
        text-align: center;
    }

    .single .details-container,
    .lang-fa.single .details-container {
        padding: 20px 0;
    }

    .short-details {
        gap: 7px;
    }

    .single .order-details .col {
        justify-content: center;
    }

    .single .order-details {
        gap: 14px;
    }

    .single .message-box {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 14px;
    }

    .fluid-cart {
        width: 90%;
        padding: 14px 0;
    }

    .fluid-cart a.close {
        top: 4px;
        right: 14px;
    }

    .cart-item h4 {
        text-align: center;
        font-size: 20px;
    }

    .cart-section .cart-item {
        text-align: center;
        flex-direction: column;
        gap: 14px;
    }

    .cart-section .cart-item .col.col-20 {
        order: 0;
        justify-content: center;
    }

    .cart-section .cart-item .save-notes {
        margin-top: 14px;
    }

    .cart-section .cart-item .remove-box {
        position: absolute;
        right: 14px;
        width: auto;
        background: #ccc;
        padding: 4px;
        font-size: 12px;
    }

    .cart-section .total-box {
        margin-bottom: 21px;
    }

    .checkout-section .cart-items .col.col-20 {
        order: 0;
    }

    .checkout-section .cart-items .cart-item {
        text-align: center;
    }

    .mobile-menu .mobile-search-box {
        padding: 14px 0;
    }

    .mobile-menu .mobile-search-box input {
        padding: 7px;
        font-size: 13px;
        border-radius: 4px;
    }

    .mobile-menu .mobile-search-box img {
        background: #fff;
        border-radius: 50px;
        padding: 4px;
        width: 30px;
        transform: rotate(90deg);
    }

    .mobile-menu a.btn {
        background: #fff;
        border-radius: 4px;
    }

    .mobile-menu a.btn img {
        width: 20px;
    }

    .table-mobile-box {
        width: 100%;
        overflow-x: scroll;
    }

    .dashboard-section .items.order-items .item {
        width: 100%;
    }

    .dashboard-section .items.order-items .item .col {
        justify-content: center;
        text-align: center;
    }

    .dashboard-section .items.order-items .item {
        width: 100%;
        gap: 14px;
    }

    .mobile-menu .languages {
        margin-top: 14px;
    }

    .mobile-menu .languages a {
        font-size: 12px;
    }

    .lang-fa .content-box .items .item .box .wishlist-btn {
        left: 14px;
        right: auto;
    }

    .lang-fa .content-box .items .item .item-code {
        right: 14px;
        left: auto;
        text-align: right;
        font-size: 12px;
    }

    .lang-fa .item .special-product {
        right: auto;
    }

    .lang-fa .mobile-menu .close-btn {
        right: auto;
        left: 14px;
    }

    .mobile-menu {
        left: auto;
        right: 0;
    }

    .lang-fa .mobile-menu .mobile-search-box img {
        transform: rotate(0deg);
    }

    .lang-fa .fluid-cart {
        left: 0;
        right: auto;
    }

    .order-tools .count-perpage,
    .order-tools .products-order-type {
        font-size: 11px;
        width: 100%;
    }

    .archive .item .child-items img,
    .page-template .item .child-items img {
        width: 25%;
    }

    .item .more-details-btn {
        display: none;
    }

    .archive .item span.add-to-cart-popup-btn,
    .page-template .item span.add-to-cart-popup-btn {
        width: 28px;
        right: 13px;
        left: auto;
        top: 60px;
        opacity: 1;
    }

    .lang-fa.archive .item span.add-to-cart-popup-btn,
    .lang-fa.page-template .item span.add-to-cart-popup-btn {
        left: 12px;
        right: auto;
        width: 28px;
        top: 60px;
    }
}