main,
.content-area {
	flex-grow: 1;
}

:root {
	--main-color: #ac850a;
	--second-color: #ffc601;

	--clr-300: #8c8b8b;

	--fz-90: 5.625rem;
	--fz-30: 1.875rem;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	color: #181b2b;
}

body {
	word-break: break-word;
	line-height: 1.2;
	font-family: 'Oswald', sans-serif;
}

header,
main,
footer {
	flex-shrink: 0;
}

ul,
address {
	list-style: none;
}

:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
}

img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h5,
p {
	padding: 0;
	margin: 0;
}

.container {
	max-width: 88%;
	margin-inline: auto;
}

h1,
.baner-box h2 {
	font-size: var(--fz-90);
	color: var(--second-color);
}

.baner-box h2 {
	max-width: 58rem;
}

.logo-img {
	max-width: 240px !important;
}

.d-box {
	display: flex;
	align-items: flex-end;
	margin-bottom: 34px;
	gap: 50px;
}

.link-cat {
	color: #000;
	text-decoration: underline;
	font-weight: 700;
}

.link-cat:hover {
	color: #000;
}

/*top bar*/
.page-header {
	background-color: #fff;
	position: relative;
	z-index: 5;
}

.top-bar {
	background-color: #000;
	color: #fff;
	padding-block: 0.625em;
}

.left-column {
	align-items: center;
}

.switcher {
	padding-inline: 1em;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	margin-inline: 1em;
}

.top-bar a {
	color: #fff;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-o-transition: color 0.3s;
}

.top-bar a path,
.top-bar path {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.top-bar a:hover {
	color: var(--main-color);
}

.top-bar a:hover path,
.top-bar svg:hover path {
	fill: var(--main-color);
}

.container-top {
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.section-tittle {
	font-size: var(--fz-30);
	text-align: center;
}

.bestsellers .section-tittle {
	margin-left: 40px;
	line-height: 1;
}

.home .product-title h2 {
	font-size: 1.125rem;
	color: #000;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-o-transition: color 0.3s;
}

.home .product-title h2:hover {
	color: #ac850a;
}

.icons {
	display: flex;
	gap: 30px;
	justify-content: end;
}

.social-icons {
	gap: 16px;
}

.contact-top__link:nth-child(2) {
	padding-left: 1rem;
	border-left: 1px solid #fff;
	margin-left: 16px;
}

.contact-top__link svg {
	margin-right: 8px !important;
}

/*main bar*/

.element {
	flex: 1; /* Sprawia, że wszystkie elementy rozciągają się, aby zajmować taką samą przestrzeń */
	text-align: center; /* Opcjonalnie, aby wycentrować tekst w każdym elemencie */
}

.logo {
	flex: 0 1 auto; /* Dla logo, możesz chcieć zastosować auto, aby zachować oryginalny rozmiar,
					   lub dać mu konkretną szerokość */
}

.main-bar {
	padding-block: 0.75em;
	position: relative;
	z-index: 1111111111111111111111111111;
}

.main-bar .menu {
	display: flex;
}

.page-header .menu-item + .menu-item {
	padding-left: calc(20px + 20 * ((100vw - 600px) / 1000));
}

.sub-menu .menu-item {
	padding: 0 !important;
}

.menu-item-has-children:hover .sub-menu {
	display: Flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.menu-item-has-children:hover body {
	position: fixed !important;
}

.main-bar .menu a {
	color: var(--clr-300);
	text-transform: uppercase;
	padding-bottom: 0.75em;
	transition: color 0.5s ease;
	-webkit-transition: color 0.5s ease;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
}

.main-bar .menu li:hover a {
	color: var(--main-color);
	border-bottom: 2px solid var(--main-color);
}

/*baner */
.baner {
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.baner img {
	position: absolute;
	inset: 0;
	z-index: -3;
	height: 100%;
}

.baner .buttons {
	margin-top: 26px;
}

.buttons {
	gap: 12px;
}

.btn {
	padding: 1rem 1.5rem;
	font-size: 1.5rem;
	width: auto;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
	display: inline-block;
	border: 0;
	color: #fff;
}

.gold-btn {
	background: linear-gradient(-36deg, #ac850a 0%, #ffd759 100%);
	padding: 14px 26px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.gold-btn svg {
	position: absolute;
	left: -120%;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.gold-btn:hover svg {
	left: 10px;
}

.gold-btn:hover {
	padding-left: 40px;
}

.baner-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.baner-box p {
	font-size: 3.125rem;
	color: #fff;
}

.additional-box {
	position: fixed;
	z-index: 1;
	top: 50%;
	overflow: hidden;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	height: 100%;
}

.extra {
	display: flex;
	background: linear-gradient(322.39deg, #ecccff -21.6%, #fff9e4 99.56%);
	position: fixed;
	transition: right 1s;
	-webkit-transition: right 1s;
	-moz-transition: right 1s;
	-ms-transition: right 1s;
	-o-transition: right 1s;
	right: -528px;
	top: 50%;
	z-index: 1111111111111111;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.contact-msg {
	position: fixed;
	top: 90%;
	right: 20px;
	z-index: 11;
}

.scroll {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 170px;
}

.extra:hover {
	right: 0;
}

.extra-info {
	min-width: 100px;
	rotate: 270deg;
}

.left {
	/* display: flex; */
	background-color: var(--second-color);
	text-align: center;
	display: block;
	display: flex;
	max-width: 50px;
	align-content: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.additional-box .social-icons {
	display: flex;
	flex-direction: column;
}

.additional-box .social-icons path {
	fill: #000;
}

.contentt {
	padding: 14px 60px 39px 67px;
}

.contentt h3 {
	font-size: 161px;
}

.scroll-down {
	display: flex;
	flex-direction: column;
}

.scroll-down p {
	rotate: 270deg;
}

.scroll-down p svg {
	rotate: 90deg;
	margin-right: 20px;
}

.woocommerce-noreviews {
	display: none;
}

/*features*/

.features {
	display: grid;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	grid-template-columns: repeat(5, 1fr);
	margin-top: -120px;
	background-color: #fff;
	padding: 40px 10em;
	position: relative;
	z-index: 2;
}

.features-inner {
	text-align: center;
	align-items: center;
	gap: 10px;
}

.features-inner + .features-inner {
	border-left: 1px solid #979dad;
	padding-inline: 2.5vw;
}

.features-inner h3 {
	font-size: 1rem;
	color: var(--clr-300);
	padding-left: 5px;
}

.features-inner img {
	max-width: 35px;
}

/*Category Shop*/
.nav-tabs {
	justify-content: center;
	border: 0;
	margin-bottom: 30px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	border: 0px;
	border-bottom: 5px solid black;
}

.nav-tabs .nav-link {
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

.products-list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 30px;
	margin-bottom: 78px;
}

.products-list li:nth-child(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.products-list li:nth-child(2) {
	grid-column: 3 / 5;
	grid-row: 1 / 2; /* Adjusted to span only one row */
}

.products-list li:nth-child(3) {
	grid-column: 5 / 6;
	grid-row: 1 / 2; /* Ensures it's placed in the first row */
}

.products-list li:nth-child(4) {
	grid-column: 6 / 7;
	grid-row: 1 / 2; /* Ensures it's placed in the first row */
}

.products-list li:nth-child(5) {
	grid-column: 3 / 4;
	grid-row: 2 / 3; /* Adjusted to place it in the second row */
}

.products-list li:nth-child(6) {
	grid-column: 4 / 5;
	grid-row: 2 / 3; /* Adjusted to place it in the second row */
}

.products-list li:nth-child(7) {
	grid-column: 5 / 7;
	grid-row: 2 / 3; /* Confirmed to span only the second row */
}

.products-list li:nth-child(1) .product-box__img img,
.products-list li:nth-child(1) .product-box__img {
	max-height: 100%;
}

.category-shop img {
	position: absolute;
	inset: 0;
	height: 100%;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.product-tittle a {
	color: #fff;
}

.products-list li {
	position: relative;
	display: flex;
	padding: 2em;
	min-height: 400px;
	flex-direction: column;
	justify-content: end;
}

.product-info {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #fff;
}

.product-bottom {
	background: #fdfdfd;
	padding: 11px 23px;
}

/*Strona Sklepu*/

.shop-category__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1.125rem;
	color: #000;
}

.archive .product {
	background-color: #fdfdfd;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price {
	color: #ff4f04;
	font-size: 1.125rem;
}

.star-rating {
	color: var(--second-color);
	margin-bottom: 12px;
}

.home .woocommerce-Price-amount {
	background-color: #f4f4f4;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	padding: 4px 10px;
}

.tab-pane .woocommerce-Price-amount {
	background-color: #fff;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	background-color: #ac850a;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	width: 28px;
	height: 28px;
	top: -0.7em;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: #000;
}

.widgettitle {
	font-size: 30px;
}

.widget form {
	margin-top: 20px;
}

.woocommerce-widget-layered-nav-list {
	display: flex;
	flex-wrap: wrap;
	margin-block: 50px;
	gap: 13px;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
	display: flex;
	min-width: 58px;
	height: 58px;
	justify-content: center;
	align-items: center;
	border: 0.5px solid #707070;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:hover {
	border-color: #ac850a;
}

.woocommerce-widget-layered-nav-list__item a {
	width: 100%;
	text-align: center;
	color: #000;
}

.woocommerce-widget-layered-nav-list__item .count,
.woocommerce-result-count {
	display: none;
}

/* share*/
.home .vbm-social-share,
.archive .vbm-social-share {
	position: absolute;
	bottom: 50px;
	right: 50px;
}

.vbm-social-share a {
	padding: 8px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: background-color 0.3s;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-ms-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
	width: 40px;
	height: 40px;
	display: block !important;
	position: absolute;
	min-height: auto !important;
}

.vbm-social-share a:hover {
	background-color: #ac850a;
}

.vbm-social-share a:hover path {
	fill: #fff;
}

/*Footer */

.social-box a:hover path {
	fill: #ac850a;
}

.credit-cards__img {
	margin-top: 18px;
	flex-wrap: wrap;
}

.footer-wrapper .menu {
	margin-top: 23px;
}

.footer-wrapper .menu a {
	font-size: 1.125rem;
	color: #fff;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-o-transition: color 0.3s;
}

.footer-wrapper .menu a:hover {
	color: #ac850a;
}

.footer-wrapper .menu li {
	margin-bottom: 7px;
}

.second-column {
	padding-left: 63px;
}

.footer-lilusso {
	background-color: #000;
	padding-top: 66px;
}

.wp-block-heading {
	margin-bottom: 0.5em;
}

.wp-block-list {
	margin-bottom: 20px;
	list-style: inherit !important;
	margin-left: 30px;
}

.single-page p {
	margin-bottom: 10px;
}

.footer-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 2.5em;
	margin-bottom: 5.375em;
	gap: 20px;
}

.footer-tittle {
	font-size: 1.25rem;
	color: var(--main-color);
	text-transform: uppercase;
}

.baner .white-btn {
	background-color: rgba(0, 0, 0, 0.2);
	color: #fff;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-ms-border-radius: 30px;
	-o-border-radius: 30px;
}

.white-txt {
	color: #fff;
}

.footer-copyright {
	border-top: 1px solid var(--main-color);
	padding-block: 0.75em;
}

.otgs-development-site-front-end {
	display: none !important;
}

footer .social-icons {
	padding: 32px 0 28px;
}

footer .social-box {
	display: flex;
	gap: 1rem;
	margin-top: 18px;
}

.credit-cards__img {
	display: flex;
	gap: 14px;
}

.credit-cards__img img {
	object-fit: contain;
	max-width: max-content;
}

/*sellers*/

.sellers .inner {
	position: relative;
}

.sellers .sale {
	padding: 107px 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sellers .inner img {
	z-index: -1;
	object-fit: cover;
}

.sellers .inner h3 {
	font-size: 6rem;
	color: #fff;
}

.sellers .hurry h3 {
	font-size: 80px;
	font-weight: 400;
}

.black-btn {
	background: #111010;
	border: 1px solid #111010;
	color: #fff;
	padding: 1.5em 3em;
	margin-top: 20px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.black-btn:hover {
	color: #000;
	background-color: #fff;
}

.hurry {
	align-items: center;
	justify-content: space-between;
	padding: 26px 88px;
}

.product-brand {
	font-size: 24px;
	font-weight: 700;
	color: #000;
}

.page-template-brands .product-brand {
	position: absolute;
	left: 21px;
	top: 26px;
}

.product-bottom {
	display: flex;
}

/*slider prodcuts*/

.multiple-items {
	position: relative;
	margin-inline: 40px;
	padding-block: 20px;
}

.slick-arrow {
	border: none;
	padding: 30px 6px;
	background: #bababa;
	position: absolute;
	top: 50%;
	transform: translateY(-90%);
	-webkit-transform: translateY(-90%);
	-moz-transform: translateY(-90%);
	-ms-transform: translateY(-90%);
	-o-transform: translateY(-90%);
	z-index: 10;
	transition: background-color 0.3s;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	-ms-transition: background-color 0.3s;
	-o-transition: background-color 0.3s;
}

.slick-arrow:hover {
	background-color: var(--main-color);
}

.slick-next {
	right: -40px;
}

.slick-prev {
	left: -40px;
}

.product-bottom .woocommerce-Price-amount {
	display: inline-block;
	color: #ff4f04;
	background: #f4f4f4;
	padding: 4px 10px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	font-size: 1.125rem;
}

.product-bottom {
	flex-direction: column;
}

.product-bottom .price {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
}

.product-top {
	position: relative;
}

/*single product*/
.stars a {
	color: #ac850a;
}

.quantity {
	display: none !important;
}

.subcategory-name {
	font-size: 32px;
	color: #000;
	font-weight: 700;
	margin-bottom: 0.42em;
}

.single-product span.onsale {
	right: 0;
	left: auto;
	top: 50px;
}

.single-product__brand-img {
	max-width: 110px !important;
	margin-bottom: 12px;
}

.entry-summary .brand-img {
	max-width: 110px !important;
}

ins,
del {
	text-decoration: unset;
}

.single-product .woocommerce-product-rating {
	display: none;
}

.single_add_to_cart_button svg {
	margin-right: 5px;
}

.woocommerce div.product form.cart .button {
	text-transform: uppercase;
}

.woocommerce div.product form.cart {
	margin-top: 30px;
}

.variations_form div:has(.single_variation_wrap) {
	display: flex;
	flex-direction: column;
}

.variations tbody {
	display: flex;
	flex-direction: column-reverse;
}

.price {
	margin-bottom: 14px;
}

.single-product .type-product {
	border-top: 1px solid var(--main-color);
	padding-top: 1.5em;
}

.product_title.entry-title {
	color: #000;
	font-size: 2.375rem;
	font-weight: bold;
	margin: 0.42em 0 0;
}

.sku_wrapper {
	font-size: 1.5rem;
	margin-bottom: 10px;
	display: block;
}

.sku_wrapper .sku {
	color: var(--main-color);
}

.summary .woocommerce-Price-amount {
	font-size: 2rem;
	color: #000;
	font-weight: bold;
}

.single_add_to_cart_button,
.components-button {
	max-width: 550px;
	background-color: #000 !important;
	padding-block: 0.875em !important;
	border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-ms-border-radius: 8px !important;
	-o-border-radius: 8px !important;
	color: #fff !important;
	width: 100%;
}

.single-product .vbm-social-share a {
	position: unset;
}

.variable-item-span {
	text-transform: uppercase;
	border-radius: 0 !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
	height: 50.5px !important;
	width: 50.5px !important;
}

.woocommerce-variation-add-to-cart {
	display: flex;
	gap: 30px;
	align-items: center;
}

.woocommerce-variation-add-to-cart svg {
	width: 26px;
	height: 26px;
}

.woo-variation-swatches .variable-items-wrapper .variable-item {
	border: 0.5px solid #707070;
	border-radius: 8px !important;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	-ms-border-radius: 8px !important;
	-o-border-radius: 8px !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:has(.variable-item-span-color) {
	border: none !important;
}

.quantity,
.product_meta {
	display: none;
}

.woocommerce div.product .woocommerce-product-rating {
	margin: 0;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce div.product .woocommerce-tabs .panel {
	background-color: #f4f4f4;
	border: 1px solid #fff;
}

.woocommerce div.product .woocommerce-tabs .panel {
	padding: 1.5em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background-color: #fff;
	border-color: #f4f4f4;
	border-width: 1px;
	border-style: solid;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs .panel p {
	font-size: 1.5rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0;
	padding: 0;
	border: 0px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	border: 0;
}

.product:hover .add_to_cart_button {
	opacity: 1;
}

.add-to-cart a {
	width: 100%;
	text-align: center;
	background: linear-gradient(-36deg, #ac850a 0%, #ffd759 100%) !important;
	color: #fff !important;
	display: inline-block;
	padding: 12px 16px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.add-to-cart a:hover {
	background: linear-gradient(-36deg, #d4a80c 0%, #ffe27b 100%) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.slick-dots button {
	display: block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: #fff;
	text-indent: -9999px;
	transition: width 0.3s;
	-webkit-transition: width 0.3s;
	-moz-transition: width 0.3s;
	-ms-transition: width 0.3s;
	-o-transition: width 0.3s;
	border: 1px solid var(--main-color);
}

.slick-dots li.slick-active button {
	background-color: #ac850a;
	width: 40px;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.single-item {
	height: 100%;
}

.slick-dots {
	position: absolute;
	transform: translateX(-50%);
	display: flex;
	gap: 20px;
	left: 50%;
	bottom: 10px;
}

.baner-section .slick-dots {
	bottom: 20%;
	left: 50%;
}

.multiple-items__brand .slick-slide img {
	height: 100%;
	display: block;
	object-fit: contain;
}

.multiple-items__brand .slick-slide {
	height: 80px;
}

.multiple-items__brand {
	margin: 32px 0;
}

.slick-track {
	display: flex;
	gap: 15px;
}

.single-item .slick-track {
	gap: 0;
}

/* TAbs*/

.tab-content .product-brand {
	color: #fff;
	font-size: 2.125rem;
	font-weight: 700;
}

.tab-content .product-tittle {
	font-size: 1.75rem;
	padding-bottom: 14px;
}

.tab-content .woocommerce-Price-amount {
	color: #ff4f04;
	display: inline-block;
}

.tab-content .product-categories-list {
	position: absolute;
	top: 25px;
	left: 25px;
	z-index: 1;
	background-color: #000;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.tab-content .product-categories-list p {
	color: #fff;
	font-size: 1.125rem;
	padding: 7px 21px;
}

.white-btn {
	font-size: 1.5rem;
	font-weight: 400;
	color: #000;
	padding: 14px 18px;
	background-color: #fff;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
}

.relative {
	position: relative;
}

.relative a {
	position: absolute;
	bottom: 43%;
	left: 5%;
}

/* searcher */

.searcher-box {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	inset: 0;
	z-index: 3;
}

.searcher svg {
	cursor: pointer;
}

.searcher-box h2 {
	font-size: 126px;
	font-weight: 700;
	padding-top: 151px;
}

.box-opened {
	display: flex;
	background-color: #000;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type='search'].dgwt-wcas-search-input {
	background-color: #fff;
}

input::placeholder {
	color: red;
	font-weight: 700;
	font-size: 26px;
}

/*wish list*/
.adfy-wishlist-woo-title {
	font-size: 24px;
	color: #000;
	font-weight: 700;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
}

.adfy-wishlist-woo-title:hover a {
	color: #ac850a !important;
}

.adfy-wishlist-woo-price del {
	display: none;
}

.wishlist:hover {
	cursor: pointer;
}

.addonify-right {
	right: 0 !important;
}

#addonify-wishlist-sticky-sidebar-container {
	padding: 0 !important;
	max-width: 670px !important;
	width: 100%;
}

.adfy-wishlist-clear-button-style {
	display: none !important;
}

.home .addonify-add-to-wishlist-btn,
.archive .addonify-add-to-wishlist-btn {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.addonify-add-to-wishlist-btn {
	background-color: #fff !important;
	padding: 8px;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	z-index: 1111111111;
}

.addonify-add-to-wishlist-btn:hover {
	background-color: var(--main-color) !important;
}

.close-wishlist {
	background: transparent;
	border: none;
}

.addonify-add-to-wishlist-btn:hover path {
	stroke: #fff;
}

#addonify-wishlist-sticky-sidebar-container
	.addonify-wishlist-ssc-body
	.addonify-wishlist-scs-header
	.adfy-wishlist-sidebar-title {
	font-size: 2.375rem !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.addonify-wishlist-scs-header {
	background-color: #000 !important;
	padding: 28px 70px 28px 70px !important;
	margin: 0 !important;
}

.addonify-wishlist-ssc-body {
	background-color: #f4f4f4;
}

#addonify-wishlist-sidebar-ul li {
	padding: 32px 50px !important;
	border-bottom: 1px solid #fff;
}

.adfy-wishlist-woo-price .woocommerce-Price-amount.amount {
	font-size: 30px;
	font-weight: 700;
	color: #000;
	background-color: transparent !important;
}

.adfy-wishlist-btn {
	background-color: #fff !important;
}

.woocommerce span.onsale {
	width: 80px;
	height: 80px;
	background: red;
	padding: 14px;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	z-index: 2;
}

.home .top-offer .onsale {
	width: 55px;
	height: 55px;
	background: red;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	position: absolute;
	top: 22px !important;
	left: 22px;
}

.product-bottom__info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
}

.discount-amount {
	font-size: 14px;
}

.product-bottom .sale-price .woocommerce-Price-amount {
	color: #000;
	background-color: #f4f4f4;
	font-weight: 700;
	padding: 4px 8px !important;
}

.product-bottom__sales {
	display: flex;
	flex-direction: column;
}

.regular-price .woocommerce-Price-amount.amount {
	color: #ff0000 !important;
	font-size: 16px;
	background-color: transparent !important;
	text-decoration: line-through;
	padding-left: 0 !important;
}

.wrap-flex {
	display: flex;
	flex-wrap: wrap;
}
/*responsive*/

.related .vbm-social-share,
.related .adfy-wishlist-btn {
	display: none !important;
}

.archive .product span.onsale {
	width: 56px;
	height: 56px;
	left: 25px !important;
	top: 21px !important;
	right: auto !important;
	font-size: 1rem;
	padding: 9px;
}

.woocommerce.widget_layered_nav .widgettitle {
	background-color: #f4f4f4;
	border-left: 8px solid #ac850a;
	padding: 8px;
	font-size: 30px;
	color: #2e313d;
	margin-block: 10px;
}

.woocommerce-widget-layered-nav-list {
	margin-left: 18px !important;
}

.related h2 {
	margin-bottom: 20px;
}

/* breadcrums*/
.site-main .woocommerce-breadcrumb {
	color: #000;
	font-size: 22px;
}

/* my bag*/

/* cart page*/

.wc-block-components-product-name {
	color: #000 !important;
}

/* Shop */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: 100%;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative;
}

.products ul,
ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.woocommerce ul.products li.product .add_to_cart_button,
.wc-block-cart__submit-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #000 !important;
	color: #fff !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	margin: 0 17px 32px 0;
}

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	display: none;
}

.product.type-product .vbm-social-share {
	top: 250px;
}

.product.type-product .addonify-add-to-wishlist-btn {
	top: 310px;
	bottom: auto;
}

/* .addonify-add-to-wishlist-btn {
	display: none !important;
} */

.woocommerce ul.products li.product a img {
	min-height: 300px;
}

.archive .product.type-product .vbm-social-share {
	top: 250px;
}

.archive .adfy-wishlist-btn {
	position: absolute !important;
	top: 230px !important;
	right: 20px !important;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	width: 40px;
	height: 40px;
	z-index: 1111111111111;
}

.archive .woocommerce-Price-amount bdi {
	font-size: 1.125rem;
	color: #000;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	background: #f4f4f4;
}

/* My account*/

.woocommerce-account .woocommerce {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -0.5);
	margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.woocommerce-MyAccount-navigation-link {
	padding: 0.8em 0;
}

.woocommerce-MyAccount-navigation-link a {
	color: #000;
	font-weight: bold;
	transition: color 0.3s;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-o-transition: color 0.3s;
}

.woocommerce-MyAccount-navigation-link a:hover {
	color: #ac850a;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea {
	padding: 0.6em;
}

.woocommerce-MyAccount-content a {
	color: #ac850a;
}

.woocommerce-MyAccount-content a:hover {
	text-decoration: underline;
}

.woocommerce-MyAccount-content p {
	margin-bottom: 0.5em;
}
.woocommerce .star-rating {
	float: unset;
}

.product-bottom_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home .product-title {
	padding-block: 6px;
}

.xoo-wsc-body .variation {
	display: none !important;
}

@media (max-width: 1600px) {
	.products-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.products-list li:nth-child(7) {
		display: none;
	}

	.tab-pane .product {
		width: 31% !important;
	}

	.features {
		padding: 40px 5em;
	}
}

@media (max-width: 576px) {
	.product-bottom_box {
		flex-direction: column;
		align-items: start;
	}

	.second-column {
		padding-left: 0;
	}

	.footer-wrapper div {
		margin-bottom: 20px;
	}

	.container {
		max-width: 95%;
	}

	.xoo-wsc-product,
	.xoo-wsc-header {
		padding: 20px;
	}

	.footer-wrapper .menu a {
		padding: 10px 0;
	}

	.section-tittle {
		margin-left: 0;
		font-size: 1.25rem;
	}

	.relative {
		display: none;
	}

	.features-inner {
		text-align: left;
	}

	.multiple-items {
		margin-inline: 0px;
	}

	.sellers .inner h3 {
		font-size: 2rem;
	}
	.hurry {
		padding: 0.5em 1em;
	}

	.products-list {
		gap: 5px;
		row-gap: 1rem;
	}

	.tab-pane .product {
		width: 49% !important;
	}

	.tab-pane .product-title h2 {
		font-size: 1.125rem !important;
	}

	.tab-content .product-brand {
		font-size: 1rem;
	}

	.footer-wrapper {
		display: flex;
		flex-wrap: wrap;
	}

	.additional-box,
	.extra {
		display: none;
	}

	.top-bar .container-top {
		flex-direction: column;
		row-gap: 1rem;
	}

	.contact-top {
		display: flex;
		flex-direction: column;
		gap: 1em;
	}

	.contact-top__link:nth-child(2) {
		padding-left: 0;
		border-left: 0;
		margin-left: 0;
	}

	h1 {
		font-size: 2.8125rem;
	}

	.buttons {
		flex-direction: column;
	}

	.features {
		margin-top: -80px;
	}
}

.woocommerce.widget_layered_nav:has(h2) .woocommerce-widget-layered-nav-list {
	display: none !important;
}

.widgettitle {
	position: relative;
}

.widget_layered_nav .widgettitle::after {
	content: '';
	position: absolute;
	background-image: url('http://liluso.cleancodeas.pl/wp-content/uploads/2024/04/Group-16383.svg');
	width: 18px;
	height: 18px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.widget_layered_nav {
	cursor: pointer;
}

.woocommerce.widget_layered_nav:has(h2.active) .woocommerce-widget-layered-nav-list {
	display: flex !important;
}

.widget_layered_nav .widgettitle.active::after {
	content: '';
	position: absolute;
	background-image: url('http://liluso.cleancodeas.pl/wp-content/uploads/2024/04/Icon.svg');
	width: 18px;
	height: 2px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.woocommerce-info {
	border-top-color: #ac850a;
}

.woocommerce-info::before {
	color: #ac850a;
}

select.orderby {
	padding: 15px 30px;
	border-color: #d2d1d1;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
}

#comments {
	border-bottom: 1px solid var(--main-color);
}

.woocommerce-Reviews-title {
	display: inline-block;
	width: auto;
	background-color: #ac850a;
	font-size: 24px;
	color: #fff;
	padding: 8px 30px;
	margin-bottom: 30px;
}

.commentlist .avatar {
	width: 40px !important;
	height: 40px !important;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	border: 0;
	border-left: 1px solid #d2d1d1;
}

.woocommerce-review__author {
	font-size: 28px;
	color: #231f20;
}

.tab-pane .product-title h2 {
	font-size: 28px;
	margin-block: 5px;
	color: #fff;
}

.product {
	height: 100%;
}

@media (max-width: 1600px) {
	.products-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.products-list li:nth-child(3) {
		grid-column: 3/4;
	}
}

@media (max-width: 1200px) {
	.features-inner {
		flex-direction: column;
	}

	.features {
		padding: 30px 20px;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
		width: 100%;
	}
}

@media (max-width: 992px) {
	.hurry {
		flex-direction: column-reverse;
	}

	.sellers .inner h3 {
		font-size: 4rem;
	}

	.main-bar {
		flex-direction: column-reverse;
		gap: 40px;
	}

	.logo {
		order: 1;
	}

	.features {
		grid-template-columns: auto;
		gap: 10px;
	}

	.features-inner + .features-inner {
		border-left: 0;
		padding-inline: 0;
	}

	.footer-wrapper {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.products ul,
	ul.products {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 575.98px) {
	.related .products {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}

.woocommerce ul.products[class*='columns-'] li.product,
.woocommerce-page ul.products[class*='columns-'] li.product.type-product {
	width: 100%;
}

.wpc-filters-main-wrap li.wpc-term-item a {
	color: #000;
	text-transform: uppercase !important;
}

@media (max-width: 600px) {
	.baner-box h2 {
		font-size: 3.4rem;
	}

	.baner {
		height: 60vh;
	}

	.gold-btn {
		padding: 12px;
		font-size: 18px;
	}

	.products ul,
	ul.products {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}
