@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//serene.pl/wp-content/themes/woodmart/fonts/woodmart-font-2-400.woff2?v=8.2.7") format("woff2");
}

:root {
	--wd-text-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: rgb(118,118,118);
	--wd-text-font-size: 15px;
	--wd-title-font: "Parkinsans", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 400;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Parkinsans", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 400;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Parkinsans", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 400;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 18px;
	--wd-header-el-font: "Parkinsans", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 400;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 14px;
	--wd-primary-color: rgb(17,17,17);
	--wd-alternative-color: rgb(207,162,119);
	--wd-link-color: rgb(3,47,46);
	--wd-link-color-hover: rgb(0,0,0);
	--btn-default-font-weight: 300;
	--btn-default-transform: uppercase;
	--btn-default-bgcolor: #f7f7f7;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-font-weight: 300;
	--btn-accented-transform: uppercase;
	--btn-accented-bgcolor: rgb(0,0,0);
	--btn-accented-bgcolor-hover: rgb(51,51,51);
	--wd-form-brd-width: 1px;
	--notices-success-bg: rgb(174,255,208);
	--notices-success-color: rgb(46,204,113);
	--notices-warning-bg: rgb(179,223,252);
	--notices-warning-color: rgb(52,152,219);
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: url(https://serene.pl/wp-content/uploads/2025/07/hero-section-img-v1.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	--wd-popup-width: 800px;
	--wd-popup-padding: 15px;
}
:is(.woodmart-woocommerce-layered-nav, .wd-product-category-filter) .wd-scroll-content {
	max-height: 223px;
}
.wd-page-title {
	background-color: #0a0a0a;
	background-image: url(https://serene.pl/wp-content/uploads/2025/07/page-title-img-v7.webp);
	background-size: cover;
	background-position: center top;
}
.wd-footer {
	background-color: rgb(17,17,17);
	background-image: none;
}
.page .wd-page-content {
	background-color: rgb(244,244,244);
	background-image: none;
}
.single-product .wd-page-content {
	background-color: rgb(244,244,244);
	background-image: none;
}
 {
	font-weight: 300;
	text-transform: uppercase;
}
body, [class*=color-scheme-light], [class*=color-scheme-dark], .wd-search-form[class*="wd-header-search-form"] form.searchform, .wd-el-search .searchform {
	--wd-form-color: rgb(51,51,51);
	--wd-form-placeholder-color: rgb(142,142,142);
	--wd-form-brd-color: rgb(201,201,201);
	--wd-form-brd-color-focus: rgb(0,0,0);
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 0px;
--btn-default-color: #333;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-brd-radius: 0px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--btn-accented-box-shadow-active: none;
--btn-accented-bottom: 0px;
--wd-brd-radius: 0px;
}

@media (min-width: 1222px) {
section.elementor-section.wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


@media (min-width: 769px) {
	.wd-checkout-steps .step-active>:is(a,span) {
    text-decoration: underline 2px solid #fff !important;
  }
}

.woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper) {
	background: #333;
	color: #fff;
}

.fs-free-shipping-notice-progress-bar>span {
	border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.fs-free-shipping-notice-progress-bar {
	border-radius: 0;
}

.fs-free-shipping-notice-progress-bar > span {
  background-color: #f2f2f2;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.fs-free-shipping-notice-progress-bar > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    #fff 0px,
    #fff 5px,
    #ccc 5px,
    #ccc 10px
  );
  animation: stripe-animation 1s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes stripe-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40px);
  }
}

.wd-products-nav .wd-dropdown .iworks-omnibus {
	display: none;
}

.product-element-bottom p.iworks-omnibus {
  max-width: 300px;
  display: block;
  margin: 10px auto 0;
	font-size: 12px;
	color: var(--wd-text-color);
}

.product-element-bottom p.iworks-omnibus .amount {
	color: var(--wd-primary-color);
}

tr.shipping.paczkomaty-shipping td {
  padding: 0;
}

.paczkomat_id_wrapper {
	padding: 15px 0;
	display: block;
}

.button.wc-backward {
	background: #000;
  color: #fff;
  font-weight: 300;
}

.button.wc-backward:hover {
	background: #333;
}

.wd-shipping-progress-bar.wd-style-bordered .wd-free-progress-bar {
    padding: 20px 0;
    border: none;
    border-radius: 0;
}

.star_rating_class {
    margin-top: 6px;
}

img.raty-cancel {
    display: none;
}

.section-shape-2 {
	position: relative;
	z-index: 2;
}
.section-shape-2:after {
	content: '';
	width: 800px;
	height: 390px;
	display: block;
	position: absolute;
	bottom: 0;
	right: -50px;
	background-image: url('https://serene.pl/wp-content/uploads/2025/07/serene-sygnet.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: 0.07;
	z-index: 1;
}

.page-template-maintenance {
	background-color: #000;
}

.cky-notice .cky-title,
.cky-preference-header .cky-preference-title {
	font-family: var(--wd-title-font) !important;
}

@media only screen and (max-width: 767px) {
	.cky-revisit-bottom-left {
    bottom: 67px !important;
    left: 15px;
	}
}

.cky-revisit-bottom-left {
	border: 1px solid #fff !important;
}

.cky-modal {
	border-radius: 0 !important;
}

.cky-btn {
	border-width: 1px !important;
	border-radius: 0 !important;
	text-transform: uppercase !important;
}

.cky-consent-container .cky-consent-bar {
	border-radius: 0 !important;
}

div[data-cky-tag="detail-powered-by"] {
	border-radius: 0 !important;
  background: #fff !important;
  opacity: 0.2 !important;
}

.cky-preference-header .cky-btn-close {
	outline: none !important;
}

:is(.woocommerce-checkout>.checkout-order-review,.woocommerce-order-pay #order_review) {
    background-color: #fff;
}

.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
	font-family: var(--wd-title-font) !important;
}

@media (max-width: 767px) {
	.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-button-horizontal {
		width: 100% !important;
		margin-top: 10px !important;
	}
	
	.ml-form-formContent.horozintalForm .ml-form-horizontalRow .ml-input-horizontal {
		width: 100% !important;
		display: flex !important;
		gap: 10px !important;
	}
	
	.ml-form-formContent.horozintalForm .ml-form-horizontalRow .horizontal-fields {
		padding-right: 0 !important;
	}
	
	.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
		font-size: 18px !important;
	}
	
	.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
		padding: 0 !important;
	}
}

:is(.woocommerce-checkout>.checkout-order-review,.woocommerce-order-pay #order_review):before, :is(.woocommerce-checkout>.checkout-order-review,.woocommerce-order-pay #order_review):after {
	content: none;	
}

.checkout-order-review>.woocommerce-checkout-review-order .wd-table-wrapper {
	box-shadow: none;
}

.payment_methods .payment_box {
	padding: 0 15px 0 0;
	box-shadow: none;
}

.woocommerce-checkout-payment {
	padding: 0 20px;
}

.text-animation-waves {
	position: relative;
/* 	width: 100vw;
	height: 200px; */
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-animation-waves h2 {
	color: #fff;
	font-size: clamp(2.5em, 4vw, 4em);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	margin: 0;
	line-height: 1;
	font-weight: 900;
}

.text-animation-waves h2:nth-child(1) {
	color: transparent;
	-webkit-text-stroke: 1px #fff;
}

.text-animation-waves h2:nth-child(2) {
	color: #fff;
	opacity: 0.5;
	animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
	0%,
	100% {
		clip-path: polygon(
			0% 45%,
			16% 44%,
			33% 50%,
			54% 60%,
			70% 61%,
			84% 59%,
			100% 52%,
			100% 100%,
			0% 100%
		);
	}

	50% {
		clip-path: polygon(
			0% 60%,
			15% 65%,
			34% 66%,
			51% 62%,
			67% 50%,
			84% 45%,
			100% 46%,
			100% 100%,
			0% 100%
		);
	}
}

.section-shape-1 {
	position: relative;
	z-index: 1;
}

.section-shape-1:after {
	content: '';
  width: 1200px;
  height: 660px;
  display: block;
  position: absolute;
  bottom: 0;
  right: -150px;
  background-image: url(https://serene.pl/wp-content/uploads/2025/07/serene-sygnet.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.5;
  z-index: -1;
}

.postid-30356 .container.related-and-upsells,
.postid-31561 .container.related-and-upsells {
	padding-top: 0;
}

.postid-30356 .wd-content-layout,
.postid-31561 .wd-content-layout {
	padding-block-end: 0;
}

.postid-30356 .product-tabs-wrapper,
.postid-31561 .product-tabs-wrapper {
	border-bottom: 0;
}

.wd-checkout-steps .step-active>:is(a,span) {
	text-decoration: none;
}

.wd-checkout-steps li>:is(a,span) {
	opacity: 1;
}

/* :is(.wd-breadcrumbs,.yoast-breadcrumb) {
	--wd-link-color: #fff;
  --wd-bcrumb-color-active: #fff;
} */

.wp-block-woocommerce-coming-soon {
	text-align: center;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
    font-weight: var(--wd-title-font-weight);
    font-size: 28px;
    margin-bottom: 20px;
}

/* .labels-rounded-sm .product-label {
    border-radius: 5px !important;
} */

.wd-before-add-to-cart p {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #333;
	border: 1px solid var(--brdcolor-gray-300);
	padding: 10px;
/* 	border-radius: 4px; */
	background: #eee;
	
}

/* .wd-product .hover-img {
	background-color: transparent !important;
} */

.box-icon-align-top .box-icon-wrapper {
  margin-bottom: 0;
	line-height: 1;
}

.whb-header .info-box-inner a {
	color: #fff !important;
}

.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
	max-width: 100% !important;
}

.ml-form-embedContainer .ml-form-embedWrapper {
	background: transparent !important;
}

.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p {
	display: none !important;
}

.ml-form-successContent {
	text-align: center;
}

.wd-copyrights {
	z-index: 1;
	position: relative;
}

.wd-footer .main-footer {
	position: relative;
	z-index: 2;
}

.wd-footer:after {
	content: '';
	width: 800px;
	height: 390px;
	display: block;
	position: absolute;
	bottom: 0;
	right: -50px;
	background-image: url('https://serene.pl/wp-content/uploads/2025/07/serene-sygnet.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: 0.07;
	z-index: 0;
}

.wd-prefooter {
	background-image: url('https://serene.pl/wp-content/uploads/2025/07/section-bg-v1.webp');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-top: 1px solid var(--brdcolor-gray-300);
  border-bottom: 1px solid var(--brdcolor-gray-300);
}

@media (max-width: 767px) {
	.wd-prefooter {
		padding: 20px 0 !important;
	}
}

.btn.btn-style-bordered {
  --btn-brd-width: 1px !important;
}
/* 
:is(.btn,.button,button,[type=submit],[type=button]) {
	border-radius: 4px;
} */

.wd-builder-off .single-product-page>div:not(:last-child) {
	margin-bottom: 0 !important;
}

.container.related-and-upsells {
    padding-top: 40px;
}

.product-tabs-wrapper {
	background-color: #fff !important;
}

.wd-review-style-1 .comment_container {
	gap: 15px;
}

/* #comments .avatar {
	display: none;
} */