@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//ertebatsaz.com/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=8.1.2") format("woff2");
}

:root {
	--wd-text-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #767676;
	--wd-text-font-size: 14px;
	--wd-title-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: #242424;
	--wd-entities-title-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 600;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "iransans", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 700;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 13px;
	--wd-primary-color: rgb(74,165,240);
	--wd-alternative-color: rgb(216,135,48);
	--wd-link-color: #333333;
	--wd-link-color-hover: #242424;
	--btn-default-bgcolor: #f7f7f7;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-bgcolor: rgb(216,135,48);
	--btn-accented-bgcolor-hover: rgb(216,135,48);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	--wd-popup-width: 800px;
}
:is(.woodmart-archive-shop .wd-builder-off,.wd-wishlist-content,.related-and-upsells,.cart-collaterals,.wd-shop-product,.wd-fbt) .wd-products-with-bg, :is(.woodmart-archive-shop .wd-builder-off,.wd-wishlist-content,.related-and-upsells,.cart-collaterals,.wd-shop-product,.wd-fbt) .wd-products-with-bg :is(.wd-product,.wd-cat) {
	--wd-prod-bg:rgb(255,255,255);
	--wd-bordered-bg:rgb(255,255,255);
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
.wd-page-title {
	background-color: #0a0a0a;
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.wd-footer {
	background-color: #ffffff;
	background-image: none;
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1350px;
--wd-form-brd-radius: 5px;
--btn-default-color: #333;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 5px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-accented-brd-radius: 5px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--wd-brd-radius: 12px;
}


rs-slides :is([data-type=text],[data-type=button]) {
font-family: iransans !important;
}
rs-slides :is(h1,h2,h3,h4,h5,h6)[data-type=text] {
font-family: iransans !important;
}

@font-face {
	font-family: "iransans";
	src: url("//ertebatsaz.com/wp-content/uploads/2022/09/IRANSansWeb.woff2") format("woff2"), 
url("//ertebatsaz.com/wp-content/uploads/2022/09/IRANSansX-Light.woff") format("woff");
	font-weight: 400;
	font-style: normal;
}

.hero-float-1{
  display:inline-block;
  will-change: transform;
  transform-origin: 50% 45%;
  animation: heroBob 3.5s ease-in-out infinite alternate;
  /* اگر می‌خوای کمتر/بیشتر حرکت کنه: */
  --bob-range: 14px;   /* مقدار جابه‌جایی عمودی */
  --tilt: 1.2deg;      /* مقدار چرخش رفت و برگشتی */
}

@keyframes heroBob{
  0%   { transform: translateY(0) rotate(calc(var(--tilt) * -1)); }
  100% { transform: translateY(var(--bob-range)) rotate(var(--tilt)); }
}

/* 2) سایه نرم که با شناور‌بودن پالس بده (اختیاری) */
.hero-float-1-shadow{
  position: relative;
}
.hero-float-1-shadow::after{
  content:"";
  position:absolute; left:50%; bottom:-8px; transform:translateX(-50%);
  width:60%; height:10px; border-radius:999px; filter: blur(6px);
  background: rgba(0,0,0,.18);
  animation: heroShadow 3.5s ease-in-out infinite alternate;
}
@keyframes heroShadow{
  0%   { transform: translateX(-50%) scale(0.95); opacity:.65; }
  100% { transform: translateX(-50%) scale(1.05); opacity:.35; }
}

/* 3) برای حلقه/دایره‌های تزئینی: چرخش یکنواخت آرام */
.hero-rotate-slow{
  display:inline-block;
  will-change: transform;
  animation: heroSpin 12s linear infinite;
}
@keyframes heroSpin{
  to { transform: rotate(360deg); }
}


/*flter banner frist page*/
.wrapper-content-banner.wd-fill.wd-items-middle.wd-justify-left {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.blure-glass{
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); 
}
/*blure button in sanral page*/
.blure-pro-santral{
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 200ms ease;
  overflow: hidden;
}
.blure-pro-santral:before {
  content: "";
  position: absolute;
  height: 150%;
  width: 50px;
  transform: rotate(30deg);
  background-color: rgba(255, 255, 255, 0.2);
  left: -100px;
}
.blure-pro-santral:hover {
  transform: scale(1.1);
}
.blure-pro-santral:hover:before {
  transition: left 500ms ease;
  left: 250px;
}
/*wiget filter shop*/
.wd-widget, .widget, .sidebar-widget, .wd-widget-collapse
 {
    padding: 15px;
    background: #f4f4f4;
    border-radius: 15px;
    border: unset;
}