body {
  font-size: 0.9rem !important;
}

.text-primary {
  color: var(--wb-primary-color);
}

.text-justify,
.text-justify * {
  text-align: justify !important;
}

.radius-10 {
  border-radius: 10px;
}

.button-light {
  background-color: color-mix(in srgb, var(--wb-primary-color), white 90%);
  padding: 10px 20px;
  color: var(--wb-primary-color);
  border-radius: 10px;
  border: 0;
  transition: 0.4s;
}
.button-light:hover {
  background-color: var(--wb-primary-color);
  color: #fff;
}

.border-primary-color {
  border-color: var(--wb-primary-color) !important;
}

.border-light-primary-color {
  border-color: color-mix(in srgb, var(--wb-primary-color), white 90%) !important;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

input,
textarea {
  padding: 12px 20px !important;
  border: none !important;
  width: 100%;
}
input:focus-visible, input:focus,
textarea:focus-visible,
textarea:focus {
  outline: unset;
  box-shadow: none !important;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

ul {
  padding: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

.navbar-1 {
  padding-bottom: 10px !important;
  z-index: 1000;
}
@media (width >= 320px) {
  .navbar-1 {
    padding-top: 20px !important;
  }
}
@media (width >= 1200px) {
  .navbar-1 {
    padding-top: 40px !important;
  }
}
.navbar-1 .logo {
  font-size: 45px;
  line-height: 0;
}
.navbar-1 .logo i:before {
  margin: 0;
}
.navbar-1 .nav-items li a {
  font-size: 15px;
}
@media (width <= 1024px) {
  .navbar-1 .nav-items {
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    padding: 60px 25px;
    box-shadow: -7px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: 0.4s ease-in-out;
    transform: translateX(100%);
  }
  .navbar-1 .nav-items li:not(:last-child) {
    border-bottom: 1px solid #ededed;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .navbar-1 .nav-items .close-btn {
    top: 3%;
    left: 5%;
  }
}
@media (min-width: 1200px) {
  .navbar-1 .dropdown .dropdown-item,
  .navbar-1 .dropdown .sub-menu {
    position: absolute;
    background-color: #fff;
    z-index: 1;
    padding: 15px;
    min-width: 247px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .navbar-1 .dropdown .dropdown-item li a,
  .navbar-1 .dropdown .sub-menu li a {
    font-size: 14px;
    padding: 5px 0;
  }
  .navbar-1 .dropdown .dropdown-item li:not(:last-child),
  .navbar-1 .dropdown .sub-menu li:not(:last-child) {
    margin-bottom: 5px;
  }
  .navbar-1 .dropdown:hover .dropdown-item {
    opacity: 1;
    visibility: visible;
  }
  .navbar-1 .dropdown:hover .dropdown-item li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}
.navbar-1 .dropdown .sub-menu {
  right: calc(100% + 15px);
  top: -15px;
  min-width: 180px;
}
@media (max-width: 1024px) {
  .navbar-1 .dropdown .dropdown-item,
  .navbar-1 .dropdown .sub-menu {
    margin-right: 15px;
    padding-left: 15px;
    display: none;
  }
}
.navbar-1 .hamburger i {
  font-size: 1.8rem;
}
.navbar-1 .hamburger i::before {
  margin: 0;
}
.navbar-1 .wb-shopping-cart-count {
  background-color: var(--wb-primary-color);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  bottom: 0;
  color: #fff;
}
.navbar-1.fixed {
  position: fixed !important;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
  animation: slideDown 0.3s ease;
}
@media (width >= 320px) {
  .navbar-1.fixed {
    margin: 10px;
    width: calc(100% - 20px) !important;
  }
}
@media (width >= 1200px) {
  .navbar-1.fixed {
    padding: 15px 30px !important;
    margin: 30px 70px;
    width: calc(100% - 140px) !important;
  }
}
@media (width >= 1920px) {
  .navbar-1.fixed {
    margin: 30px 200px;
    width: calc(100% - 400px) !important;
  }
}
.navbar-1.fixed hr {
  display: none !important;
}
.navbar-1.fixed .nav-items li a {
  font-size: 14px;
}

.rotate-180 {
  transform: rotate(180deg);
}

.open-menu {
  transform: translateX(0) !important;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.single-slider img:first-child {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width >= 320px) {
  .single-slider img:first-child {
    height: 300px;
  }
}
@media (width >= 1200px) {
  .single-slider img:first-child {
    height: 100%;
  }
}

#scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -11%;
}
@media (width >= 320px) {
  #scroll-down {
    width: 72px;
  }
}
@media (width >= 1200px) {
  #scroll-down {
    width: 160px;
  }
}

.product-box-1 {
  position: relative;
}
.product-box-1 .discount-percentage {
  position: absolute;
  left: 3%;
  top: 3%;
  background-color: var(--wb-primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 5px;
  padding: 1px 6px 0px;
}
.product-box-1 .discount-percentage__title {
  font-size: 0.6rem;
  opacity: 0.8;
  margin-top: 4px;
}
.product-box-1 .wb-add-to-shopping-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: absolute;
  bottom: -55px;
  left: -55px;
  width: 50px;
  height: 50px;
  border-radius: 0 6px 0 0;
  border: 0;
  transition: 0.4s cubic-bezier(0.565, 0.1, 0.44, 1);
}
.product-box-1 .wb-add-to-shopping-cart i {
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
}
.product-box-1 .wb-add-to-shopping-cart::before {
  content: "";
  background: 0 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 1px;
  box-shadow: -1px 7px #fff;
  border-bottom-left-radius: 8px;
}
.product-box-1 .wb-add-to-shopping-cart::after {
  content: "";
  background: 0 0;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 0px;
  left: 50px;
  box-shadow: -6px 7px #fff;
  border-bottom-left-radius: 8px;
}
.product-box-1:hover .wb-add-to-shopping-cart {
  bottom: 0;
  left: -1px;
}

.copyright-willaarts a .company-name,
.copyright-willaarts a .copy-right-content,
.copyright-willaarts i {
  color: #fff !important;
}

.footer-1 {
  color: #fff;
}
.footer-1 .separator {
  background-color: #dbdbdb;
}
@media (width >= 320px) {
  .footer-1 .separator {
    width: 100%;
    height: 1px;
  }
}
@media (width >= 1200px) {
  .footer-1 .separator {
    width: 1px;
    height: 40px;
  }
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.price-box del {
  color: #a6a6a6;
  font-size: 0.9em;
}
.price-box .price {
  font-size: 1.1em;
}
.price-box .toman {
  font-size: 0.8em;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.padding-for-absolute-header {
  padding-top: 120px;
  padding-bottom: 40px;
}

.subheader-1 {
  position: relative;
}
.subheader-1 img:first-of-type {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.subheader-1__title {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 11px 0 11px 20px;
  border-radius: 0 0 0 10px;
}
.subheader-1__title::before {
  content: "";
  background: 0 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  left: -40px;
  box-shadow: 10px -10px #fff;
  border-top-right-radius: 9px;
}
.subheader-1__title::after {
  content: "";
  background: 0 0;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -40px;
  right: 0px;
  box-shadow: 6px -6px #fff;
  border-top-right-radius: 8px;
}
.subheader-1 #scroll-down {
  bottom: -35px;
}

.square-box__item {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding-block: 70px;
  background-color: #f4f4f4;
}
.square-box__item.top-right {
  border-top-right-radius: 55px;
}
.square-box__item.top-left {
  border-top-left-radius: 55px;
}
.square-box__item.bottom-left {
  border-bottom-left-radius: 55px;
}
.square-box__item.bottom-right {
  border-bottom-right-radius: 55px;
}

.form-1 input,
.form-1 textarea {
  border: 1px solid #e6e6e6 !important;
  border-radius: 5px;
}
.form-1 label {
  position: absolute;
  top: -12px;
  right: 30px;
  background: #fff;
  padding-inline: 10px;
  color: #ccc;
}

.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 1.3em;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 30px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 0.8em;
  width: 0.8em;
  border-radius: 20px;
  left: 0.3em;
  bottom: 0.26em;
  background-color: white;
  transition: 0.4s;
}
.switch input:checked + .slider {
  background-color: rgb(0, 221, 80);
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px rgb(0, 221, 80);
}
.switch input:checked + .slider:before {
  transform: translateX(1.1em);
}

.accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
  opacity: 0.5;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
}

@media (width >= 1200px) {
  .sidebar-1 {
    border-left: 1px solid #efefef;
    padding-left: 15px;
  }
}

.wb-variation-text-item {
  background: #fff;
  padding: 0px 9px;
  border-radius: 5px;
  outline: 1px solid #f2f2f2;
  margin-left: 10px;
  cursor: pointer;
}
.wb-variation-text-item.active {
  border: 1px solid var(--wb-primary-color);
}

.wb-variation-color-item {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  outline: 1px solid #f2f2f2;
  outline-offset: 2px;
}
.wb-variation-color-item.active {
  outline: 1px solid var(--wb-primary-color);
}

/* -------------- Pagination start ---------------- */
.pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pagination .page-link {
  border-radius: 9px !important;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wb-primary-color);
  cursor: pointer;
}
.pagination .text-next,
.pagination .text-perv {
  display: none;
}

.page-item.active span {
  background-color: var(--wb-primary-color);
  color: #fff;
  border-color: var(--wb-primary-color);
}

.disabled > .page-link,
.page-link.disabled {
  background-color: transparent;
  border: unset;
}

/* -------------- Pagination End ---------------- */
.zoomable {
  position: relative;
  overflow: hidden;
}

.zoomable__img {
  transform-origin: var(--zoom-pos-x, 0%) var(--zoom-pos-y, 0%);
  transition: transform 0.15s linear;
}

.zoomable--zoomed .zoomable__img {
  cursor: zoom-in;
  transform: scale(var(--zoom, 2));
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.6rem;
}

.close-btn {
  position: absolute;
  top: 3%;
  left: 4%;
  background: transparent;
  border: 0;
  font-size: 1.1rem;
}

.summary img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .sidebar-responsive {
    position: fixed !important;
    background: #fff;
    z-index: 1000;
    height: 101vh;
    width: 100%;
    overflow-y: auto;
    padding-block: 70px;
    top: 0;
    right: 0;
    transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}
@media (max-width: 767px) {
  .shop-page .row:nth-of-type(2) {
    margin-inline: -7.5px;
  }
  .shop-page .row:nth-of-type(2) .col-6 {
    padding-inline: 7.5px;
  }
  .article-page .row {
    margin-inline: -7.5px;
  }
  .article-page .row .col-6 {
    padding-inline: 7.5px;
  }
}/*# sourceMappingURL=style.css.map */