/*
Theme Name: EtroReza
Theme URI: https://etroreza.com
Author: Virak
Author URI: https://virak.net
Description: We build all designs with love and the hope that our customers will succeed in their work.
Requires at least: 6.4
Tested up to: 6.4.3
Requires PHP: 8.1
Version: 2.0.0
License: © 2024 EtroReza. All rights reserved.
*/

@import url("./assets/css/__wordpress.css");

/* fonts */
@font-face {
  font-family: "Shabnam";
  font-weight: 400;
  font-style: normal;
  src: url("./assets/fonts/shabnam-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Shabnam-Bold";
  font-weight: 700;
  font-style: normal;
  src: url("./assets/fonts/shabnam-bold.woff2") format("woff2");
}

.fw-bold {
  font-family: "Shabnam-Bold";
}

body,
button {
  font-family: "Shabnam";
}

* {
  font-family: "Shabnam";
}


/*  PREVENT TEXT SIZE SCALLING */

/* iPhone, portrait & landscape. */
@media all and (max-device-width: 480px) {

  html,
  body,
  p {
    text-size-adjust: none !important;
    -webkit-text-size-adjust: none !important;
    -moz-text-size-adjust: none !important;
    -ms-text-size-adjust: none !important;
  }
}

/* iPad, portrait & landscape. */
@media all and (min-device-width: 768px) and (max-device-width: 1024px) {

  html,
  body,
  p {
    text-size-adjust: none !important;
    -webkit-text-size-adjust: none !important;
    -moz-text-size-adjust: none !important;
    -ms-text-size-adjust: none !important;
  }
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease;
}

a:hover {
  color: inherit;
}


/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: auto;
  line-height: inherit;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html {
  box-sizing: border-box;
}

.btn-check:focus+.btn,
.btn:focus {
  box-shadow: none;
}

figure {
  margin: 0;
}

/* Typography */
html {
  font-size: 62.5%;
}

/* root */
:root {

  /* font size */
  --fs-p: 1.2rem;
  --fs-p-d: 1.4rem;
  --fs-title: 2.5rem;
  --fs-title-d: 2.4rem;
  --h1: 2rem;
  --h1-d: 4.2rem;

  /* colors */
  --color-primary: #48525C;
  --color-dark: #383838;
  --color-light: #8890A3;
  --box-light: #9AA2B6;

  /* border radius */
  --radius: 20px;
  --radius-circle: 500px;

  /* transition */
  --transition: all ease 0.3s;
}

body {
  background: #F9F9F9;
  font-size: var(--fs-p);
  color: var(--color-primary);
}

p {
  font-size: var(--fs-p);
  color: var(--color-primary);
}

h1 {
  font-size: var(--h1);
  color: var(--color-primary);
}

h2 {
  font-size: var(--fs-title);
  color: var(--color-primary);
}

ul {
  margin: 0;
  padding: 0;
}


/* root class */
.fs-p {
  font-size: var(--fs-p);
}

.img--fluid {
  width: 100% !important;
  height: 100% !important;
}

.fs-title {
  font-size: var(--fs-title);
}

.color--primary {
  color: var(--color-primary);
}

.color--light {
  color: var(--color-light);
}

.color--dark {
  color: var(--color-dark);
}

.box--light {
  color: var(--box-light);
}

.radius {
  border-radius: var(--radius);
}

.radius--circle {
  border-radius: var(--radius-circle);
}

.bg--box {
  background: var(--bg-box);
}

.mt-6 {
  margin-top: 3rem;
}

.main--shadow {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btnCircle--shadow {
  background: linear-gradient(135deg, #fff, #EDEDED);
  box-shadow: -1px 1px 2px rgba(255, 255, 255, 0.3) inset,
    1px -1px 2px rgba(172, 172, 172, 0.5) inset,
    3px 3px 6px rgba(172, 172, 172, 0.2),
    -3px -3px 6px rgba(172, 172, 172, 0.2),
    3px -3px 6px rgba(255, 255, 255, 0.9),
    -3px 3px 8px rgba(172, 172, 172, 0.9);
  width: 25px;
  height: 25px;
  border-radius: 500px;
  border: none;
}

@media screen and (min-width: 992px) {
  body {
    font-size: var(--fs-p-d);
  }

  p {
    font-size: var(--fs-p-d);
  }

  h1 {
    font-size: var(--h1-d);
  }

  h2 {
    font-size: var(--fs-title-d);
  }

  .fs-p {
    font-size: var(--fs-p-d);
  }

  .fs-title {
    font-size: var(--fs-title-d);
  }

  .mt-6 {
    margin-top: 6rem;
  }

  .btnCircle--shadow {
    width: 30px;
    height: 30px;
  }
}

/*------------------ desktop navbar ------------------*/
.desktop-navbar .navbar-menu {
  margin-top: 1rem;
      display: flex;
    align-items: center;
    justify-content: center;
}

.menu-nav li.menu-item:last-child {
  margin-left: 0 !important;
}

/* floating search box */
.floating-search-box-wrapper {
  position: fixed;
  left: 5%;
  bottom: 5%;
  z-index: 2;
}

.floating-search-box input {
  padding: 10px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff, #EDEDED);
  box-shadow: -1px 1px 2px rgba(255, 255, 255, 0.3) inset, 1px -1px 2px rgba(172, 172, 172, 0.5) inset, 3px 3px 6px rgba(172, 172, 172, 0.2), -3px -3px 6px rgba(172, 172, 172, 0.2), 3px -3px 6px rgba(255, 255, 255, 0.9), -3px 3px 8px rgba(172, 172, 172, 0.9);
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 26px;
  outline: none;
  transition: .5s;
  border: none;
  padding: 0 3rem;
  cursor: pointer;
}

.floating-search-box:hover input {
  width: 500px;
  background: #fff;
  border-radius: var(--radius-circle);
  color: var(--color-primary);
}

.floating-search-box svg {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background: linear-gradient(135deg, #fff, #EDEDED);
  transition: .2s;
}

.floating-search-box:hover svg {
  opacity: 0;
  z-index: -1;
}

/*------------------ navbar mobile ------------------*/
.canvas-menu {
  position: fixed;
  z-index: 2;
  top: 3%;
}

.canvas-menu__btn {
  background: var(--color-primary);
  border-radius: 14px 0 0 14px;
  width: 56px;
  height: 56px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.offcanvas__menu {
  background: #F9F9F9;
  width: 80% !important;
  height: 95%;
  margin: auto;
  border-radius: var(--radius) 0 0 var(--radius);
  overflow: hidden;
  font-size: 1.6rem;
}

.modal-backdrop.show {
  opacity: 0.7 !important;
}

.offcanvas__menu .offcanvas-footer {
  background: var(--color-primary);
}

.offcanvas__menu .offcanvas-body li.menu-item {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  margin: 10px 0;
  border-radius: var(--radius);
}

.category-menu-item {
  padding: 1.5rem 2rem;
}

.category-menu-item::before {
  content: "";
  display: inline-flex;
  width: 15px;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 50px;
  margin-left: 8px;
}

/* ----------------------- slider */
.owl-carousel {
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.img--fluid {
  width: 100%;
  height: 100%;
}

.owl-theme .owl-nav {
  margin-top: 0 !important;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  transform: translate(0, -50%);
}

.owl-nav span {
  font-size: 6rem;
  color: #fff;
}

.owl-dots {
  width: 100%;
  position: absolute;
  bottom: 2%;
  right: 50%;
  transform: translate(+50%);
}

.owl-dot span {
  background: #fff !important;
}

.owl-dot.active span {
  background: var(--color-primary) !important;
}

.slider-wrapper {
  padding: 0;
}

.owl-item .item a img {
  object-fit: cover;
  aspect-ratio: 2/2.5;
}

.slider-items-title {
  position: absolute;
  top: 88%;
  right: 50%;
  width: 100%;
  transform: translate(+50%, -80%);
}

.slider-items-title p {
  font-weight: bold;
  background: #f9f9f9b4;
  padding: 1.4rem 2.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: inherit;
  overflow: hidden;
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 992px) {

  .owl-carousel {
    border-radius: var(--radius) !important;
    overflow: hidden;
  }

}

/*------------------ categories ------------------*/
.categories {
  margin-bottom: 60px;
}

.category-wrapper {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  border-radius: 20px;
  margin-top: 80px;
  width: 100%;
}

.category-wrapper figcaption {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.category-wrapper figure {
  background-color: #a4abbb;
  height: 100%;
  border-radius: 20px;
}

.category-wrapper figure img {
  aspect-ratio: 3.5 / 4;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  left: 20px;
  max-width: 150px;
}

@media sreen and (min-width: 992px) {
  .category-wrapper {
    height: 130px;
  }

  .category-wrapper figure img {
    max-width: 165px;
  }
}

/*------------------ collections ------------------*/
article.col-post {
  width: 71%;
}

.col-svg {
  margin-top: 35px;
}

.col-post__img--btn {
  position: absolute;
  bottom: -20px;
  left: 5%;
  width: 60%;
}

.col-post__img img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.collection-wrapper {
  margin-bottom: 6rem;
}

@media screen and (min-width: 992px) {
  .col-svg {
    transform: scale(1.5);
    margin-top: 13rem;
  }

  .col-post__img--btn {
    width: unset;
  }
}

/*------------------ top products ------------------*/
article.post img {
  aspect-ratio: 3/4;
  object-fit: cover;
  height: auto;
}

article.post figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 105px;
}

.post-btn-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fafafa;
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.3),
    inset -1px -1px 2px rgba(204, 204, 204, 0.5),
    -5px 5px 10px rgba(204, 204, 204, 0.2),
    5px -5px 10px rgba(204, 204, 204, 0.2),
    -5px -5px 10px rgba(255, 255, 255, 0.9),
    5px 5px 13px rgba(204, 204, 204, 0.9);
  width: 43px;
  height: 38px;
  border-radius: 0 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  article.post figcaption {
    min-height: 114px;
  }

  .post-btn-icon {
    width: 60px;
    height: 54px;
  }

  .post-btn-icon svg {
    transform: scale(1.5);
  }

  .btn-more {
    width: 500px;
    height: 52px;
  }
}

.btn-more {
  background: linear-gradient(128deg, rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 100%);
  box-shadow:
    -1px 1px 2px rgba(255, 255, 255, 0.3),
    1px -1px 2px rgba(172, 172, 172, 0.5),
    3px 3px 6px rgba(172, 172, 172, 0.2),
    -3px -3px 6px rgba(172, 172, 172, 0.2),
    3px -3px 6px rgba(255, 255, 255, 0.9);
  height: 45px;
  width: 300px;
  border-radius: var(--radius-circle);
}

/* ------------- footer ----------*/
footer {
  background: var(--color-light);
}

.footer-link {
  background: var(--box-light);
  border-radius: var(--radius);
  padding: 3rem;
}

.footer-link ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}

.footer-link__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link__item::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #fff;
  border-radius: 50px;
}

.socket {
  height: 60px;
}

.e-namad {
  background: var(--color-primary);
}

.socket {
  background: #2D2D2D;
}

.footer__social-media ul {
  display: flex;
}

.footer__social-media ul li {
  text-align: center;
  line-height: 37px;
}


.footer__contactUs .footer-link {
  border: none;
}

@media screen and (max-width: 992px) {
  .socket {
    height: 135px;
    align-items: flex-start !important;
    padding-top: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .footer-link {
    min-height: 303px;
    padding: 3rem;
  }
}

.footer-link h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*------------------ mobile bottom navigetion ------------------*/
.bottom-navigetion {
  background: #fff;
  border-radius: var(--radius-circle);
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 0 12px;
  gap: 5px;
}

.bottom-navigetion-wrapper {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 0;
}

.bottom-navigetion__items {
  width: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
  text-align: center;
}

.bottom-nav-label {
  margin-top: 5px;
}

.cart-counter {
  width: 18px;
  height: 18px;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-light);
  color: #fff;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search__input {
  height: 100px;
  background: var(--color-primary);
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s all ease-out;
}

.offcanvas-bottom {
  bottom: -1px;
}

.search__input input {
  font-size: 1.6rem;
  width: 90%;
  padding: 2rem;
  background: #f6f6f6;
  border: 0;
  border-radius: var(--radius-circle);
}

/*------------------ hovers ------------------*/
.desktop-navbar .navbar-menu .menu-item a,
.desktop-navbar .my-account,
.desktop-navbar .cart,
.intro__info--product-btn button,
.social--btn,
.category--btn,
.col-post,
article.post,
.footer-link__item,
.btn-more {
  transition: var(--transition);
}

.desktop-navbar .navbar-menu .menu-item a:hover,
.footer-link__item:hover {
  font-size: 2.2rem;
  font-weight: bold;
}

.desktop-navbar .my-account:hover,
.desktop-navbar .cart:hover,
.intro__info--product-btn button:hover,
.category--btn:hover,
.btn-more:hover {
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

.my-account:hover svg,
.cart:hover svg,
.intro__info--product-btn button:hover svg,
.social--btn:hover svg {
  filter: invert(1) brightness(2);
}

.my-account:hover button,
.cart:hover button,
.intro__info--product-btn button:hover span,
.social--btn:hover {
  background: var(--color-primary);
  box-shadow: none;
}

.cart:hover .cart--counter {
  color: #fff;
}

.col-post:hover {
  transform: scale(1.1);
}

article.post:hover {
  transform: scale(0.9);
  z-index: 999;
  position: relative;
}

figcaption .post__price:last-child~p {
  display: none !important;
}

del.post__price {
  color: #AEAEAE;
}

p.post__price {
  display: grid;
}

.intro__info--product-btn button {
  height: 35px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .intro__info--product-btn button {
    width: 300px;
    height: 55px;
    margin: unset;
  }
}

/* ---------------------------- my custom slider ----------------------------------------- */

/* Modal CSS */
.custom-product-slider__wrapper .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 5vh;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.custom-product-slider__wrapper .close {
  position: absolute;
  top: 20px;
  right: 5%;
  color: #fff;
  font-size: 40px !important;
  font-weight: bold;
  transition: 0.3s;
  z-index: 999;
}

.custom-product-slider__wrapper .close:hover,
.custom-product-slider__wrapper .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.custom-product-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  direction: rtl;
  padding: 8px 0px;
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
}

.modal-album-wrapper::-webkit-scrollbar {
  display: none;
}

.custom-product-slider__wrapper .slider-wrapper,
.custom-product-slider__wrapper .modal-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.custom-product-slider .slide img {
  cursor: pointer;
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.modal-slider-wrapper {
  margin-top: 16vh;
}

.modal-slider-wrapper img {
  width: 61vh;
  aspect-ratio: 3/4;
  display: block;
  object-fit: cover;
  margin: auto;
  border-radius: 24px;
}

.custom-product-slider__wrapper button.prev,
.custom-product-slider__wrapper button.next,
.custom-product-slider__wrapper button.modal-prev,
.custom-product-slider__wrapper button.modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.custom-product-slider__wrapper button.prev,
.custom-product-slider__wrapper button.next {
  top: 40%;
}

.custom-product-slider__wrapper button.next,
.custom-product-slider__wrapper button.modal-next {
  background: var(--color-primary);
}

.custom-product-slider__wrapper button.prev,
.custom-product-slider__wrapper button.modal-prev {
  background: var(--color-primary);
}

.custom-product-slider__wrapper button.prev {
  right: 10px;
}

.custom-product-slider__wrapper button.next {
  left: 10px;
}

.custom-product-slider__wrapper button.modal-prev {
  right: 5%;
}

.custom-product-slider__wrapper button.modal-next {
  left: 5%;
}

.album-item {
  flex: 1 1 calc(25% - 20px);
  cursor: pointer;
  padding: 5px;
  border-radius: 12px;
}

.album-item img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  display: block;
  max-width: 80px;
}

.modal-album-wrapper {
  z-index: 9999;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  overflow-x: scroll;
  margin-top: 20px;
  padding: 16px;
  justify-content: start;
  gap: 8px;
}

.album-wrapper {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}

.modal-album-item {
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
  width: 80px;
  cursor: pointer;
}

.album-item img,
.modal-album-item img {
  object-fit: cover;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
}

.modal-trigger {
  position: relative;
}

.album-item.modal-trigger img {
  filter: blur(4px);
  cursor: pointer;
}

.modal-trigger-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}

@media screen and (max-width: 380px) {
  .modal-slider-wrapper {
    margin-top: 25%;
  }

  .modal-slider-wrapper img {
    width: 50vh;
  }
}

@media screen and (min-width: 992px) {
  .modal-album-wrapper {
    justify-content: center;
  }

  .modal-slider-wrapper {
    margin-top: 0;
  }
}


/* svsw buttons */
.svsw-frontend-wrap {
  border-top: 1px solid var(--light-bg);
  border-bottom: 1px solid var(--light-bg);
  padding: 1rem 0;
}

.svsw-wrap label.attr-name {
  font-weight: bold;
  padding-right: 0 !important;
}

.svsw-attr-wrap .svsw-swatch.svsw-color-image {
  border-radius: 16px;
  box-shadow: 0px 0px 11px #00000026;
}

.svsw-attr-wrap .svsw-type-button span {
  border-radius: 8px !important;
  background-color: #fff !important;
  color:#262626 !important;
  border: 1px solid #E5E5E5 !important;
      font-size: 14px !important;
}

.svsw-reset.reset_variations {
  background: #F5F5F5 !important;
  padding: 8px 16px !important;
}

.svsw-swatch.svsw-btn.svsw-selected {
  border-color: unset !important;
  background-color: var(--color-light) !important;
  color: #fff !important;
  font-weight: 700;
}

.svsw-swatch.svsw-selected {
  border-color: var(--color-light) !important;
}

.svsw-attr-wrap .svsw-type-button {
  margin-top: 1.5rem;
}

.single_variation_wrap,
.woocommerce-variation-add-to-cart {
  width: 100% !important;
}

/* filter massage */
.filter-massage {
  background-color: #48525c;
  position: fixed;
  bottom: 10px;
  right: 50%;
  z-index: 999;
  width: 98%;
  transform: translateX(50%);
  border-radius: 16px;
  height: fit-content;
}

.filter-massage div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  gap: 10%;
  height: 80px;
}

.filter-massage-btn {
  width: 60px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.filter-massage p {
  line-height: 32px;
  font-size: 16px;
  color: #fff;
}

.filter-massage.close {
  display: none;
}

article.post .post-tag {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 0;
  background-color: var(--color-primary);
  font-size: 10px;
  padding: 6px 8px;
  border-radius: 8px 0 0 8px;
  color: white;
}

@media screen and (min-width: 768px) {
    article.post .post-tag {
    font-size: 14px;
  }

  .filter-massage {
     width: 450px;
    bottom: 15px;
  }

  .filter-massage div {
    gap: 18%;
  }
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:after {
  left: 15px;
  right: unset !important;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper {
  position: unset !important;
  border: none !important;
  border-radius: 0px;
  box-shadow:none !important;
  padding: 0 !important;
}

.dropdown-wrapper {
  margin-top: 24px;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown:after {
  top: 16px !important;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container input {
  padding: 1rem;
  padding-right: 1rem !important;
  border-radius: 8px;
  border: 1px solid var(--wc-secondary) !important;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container input:focus-visible {
  outline: none !important;
}

.yith-wcan-filters .yith-wcan-filter .yith-wcan-dropdown .dropdown-wrapper .search-field-container:after {
  left: 8px !important;
  right:unset !important
}

.yith-wcan-filter .filter-content .dropdown-wrapper .show-more {
  font-size: 0 !important;
  position: relative;
}

.yith-wcan-filter .filter-content .dropdown-wrapper .show-more::before {
  content: "مشاهده بیشتر";
  font-size: 14px;
}

.post__price del + ins bdi {
  color: #ff0000;
}

.del-discount:empty {
  display: none;
}

.del-discount {
  background-color: #d32f2f;
  color: white;
  padding: 4px 8px;
  border-radius: 8px 0 0 8px;
}

article.post figcaption .post__price bdi {
    padding-right: 15px;
    color: #000;
}

article.post figcaption .post__price del bdi {
    padding-right: 0;
    color: inherit;
}

.del-wrapper {
    margin: 8px 0;
}

.mobile-navbar .modal-content {
  box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width:968px) {
  .mobile-navbar button.btn.delivery {
    font-size: 16px !important;
    padding: 0;
    margin: 0;
  }
  .modal-backdrop {
    display: none;
  }
}