/*
Theme Name: Afiltro
Text Domain: afiltro
Version: 1.0
Tested up to: 6.8.1
Author: Spytnik
*/
@font-face {
  font-family: 'SourceSansPro';
  src: url('fonts/SourceSansPro-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'SourceSansPro-bold';
  src: url('fonts/SourceSansPro-latin_latin-ext-700.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('fonts/PlayfairDisplay-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PlayfairDisplay-italic';
  src: url('fonts/SourceSansPro-latin_latin-ext-italic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/*CSS Reset*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
html {
	min-height:100%;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}
body {
	color: #fef9fa;
	font-family: "SourceSansPro", sans-serif;
	font-size: 18px;
	line-height: normal;
	font-weight: 400;
	background-color: #0C645C;
}
body.home{
	font-size:16px;
}
main p{margin-bottom:25px;}
a{color:#fef9fa;text-decoration: none;transition:0.3s}
a:hover{color:#fff;text-decoration: none;}
img{max-width: 100%;height:auto;}
h1,h2,h3,h4,h5,h6 {
	font-family: "PlayfairDisplay", serif;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 60px;
}
h1{
	font-size: 45px;
}
h2{
	font-size: 41px;
}
h3{
	font-size:31px;
}
h4{
	font-size: 23.5px;
}
.wrapper{
	min-height:90vh;
	max-width: 100%;
	overflow: hidden;
}
em{
  font-family: 'PlayfairDisplay-italic';
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
/* Header */
header.main-header {
	height:258px;
	background-color: transparent;
	position: relative;
	color:#fef9fa;
	z-index: 1;
	overflow: hidden;
}
header.main-header::after {
  content: '';
  position: absolute;
  top: -55%;
  left: 0;
  background: #00403E;
    width: 100%;
    height: 400px;
    object-fit: cover; 
    object-position: 50% 50%; 
    clip-path: polygon(
        0% 23.5%,
        100% 0%,
        100% 76.5%,
        0% 100% 
    );
  z-index: -1;
}
header.main-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	font-size:37px;
	font-weight:400;
	font-family: "PlayfairDisplay", serif;
	display:block;
	margin:24px 0;
}
.menu-container .menu-item a{
	color:#fef9fa;
	text-decoration: none;
	font-size:16px;
	font-weight: 400;
    padding: 8px 10px;
	border-radius: 4px;
	border:2px solid transparent;
}
.menu-container .current-menu-item a{
	border:2px solid #fef9fa
}
main section,
.container {
	width:960px;
	max-width: 100%;
	margin: 0 auto;
}
.menu-container {
  background: #00403E;
  white-space: nowrap;
  position: relative;
  display: flex;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap:7px;
}

.menu-container .menu-item {
  display: inline-block;
}

.menu-container .menu-item a {
  text-decoration: none;
  padding: 8px 10px;
  display: inline-block;
}
.menu-container .menu-item a:hover{
	color:#fef9fa;
	border-color:rgba(254, 249, 250, 0.1);
}
.menu-container .menu-item:nth-child(n + 6) {
  display: none;
}
.menu-toggle {
  display: inline-block;
  padding: 8px 10px;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00403e;
  box-shadow: 0 5px 6px -3px #0000001a, 0 9px 12px 1px #0000000f, 0 3px 16px 2px #0000000a;
  display: none;
  padding:24px;
}

.dropdown.show {
  display: block;
    top: 44px;
    right: 0;
    left: auto;
    max-width: 300px;
}

.dropdown .menu-item {
  display: block;
}

.hidden {
  display: none;
}
/* main */
main{
	width:960px;
	max-width: 100%;
	margin: 0 auto;
}
main.entry{
	padding:15px 0 -15px;
}
main > .wp-block-cover{
	width:100vw;
	position: relative;
	left:50%;
	transform: translateX(-50%);
}
.hero{
	margin-top:-101px;
	align-content: unset !important;
	height:880px;
}
.hero h2{
	font-size:56px !important;
	font-weight: 400;
	line-height: 1.2;
	margin-top:50px;
}
.hero .wp-block-cover__inner-container{
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	width:960px;
	max-width: 100%;
	margin: 0 auto;
}
.hero__links{
	position: absolute;
	bottom:100px;
	left: 0;
	width:200px;
}
.hero__links img{
	border-radius: 50%;
	box-shadow: 0 0 0 transparent;
	transition: box-shadow 0.3s ease;
}
.hero__links a:hover img{
	box-shadow: 0 0 16px rgba(0,0,0,.5);
}
.filtri{
    margin-top: -52px;
    overflow: visible;
    padding: 100px 0;
	z-index: 1;
}
.skew .wp-block-cover__background{
	top: -43px;
	left: 0;
    width: 100%;
    height: 400px;
    object-fit: cover; 
    object-position: 50% 50%; 
    clip-path: polygon(
        0% 23.5%,
        100% 0%,
        100% 76.5%,
        0% 100% 
    );
}
.filtri h2{
	margin-bottom: 60px;
}
.home-category{
    margin-top: -2px;
    overflow: visible;
    padding: 100px 0;
}
.home-category .wp-block-columns{
	gap:10px;
}
.home-category .wp-block-columns a{
	font-size:18px;
	font-weight: 700;
	text-decoration: underline;
	font-family: 'SourceSansPro-bold', sans-serif;
}
.home-category figure{
	position: relative;
	height:0;
	width: 100%;
	padding-bottom: 100%;
	overflow: hidden;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 40px;
}
.home-category figure a{
	width:100%;
	height:100%;
	display: block;
}
.home-category figure img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-category h4{
	margin-bottom: 20px;
}
footer{
	overflow: hidden;
}
.footer__widget{
	padding-top:100px;
}
.footer-wrap{
	overflow: visible;
	position: relative;
	min-height: 150px;
	background-color: #00403E;
}
.footer-wrap h2{
	font-size:37px;
}
.footer-wrap .wp-block-cover__background{
	position: absolute;
	top: -101px;
	left: 0;
    width: 100%;
    height: 430px;
    object-fit: cover; 
    object-position: 50% 50%; 
    clip-path: polygon(
        0% 23.5%,
        100% 0%,
        100% 100%,
        0% 100% 
    );
}
.footer__links{
	margin-top:20px;
}
.footer__links > div{
    display: flex;
    align-items: center;
    justify-content: center;
	width:250px;
	gap:10px;
	margin:0 auto;
}
.footer__links figure{
	margin:0 !important;
	width:27px;
	height:27px;
}
.footer__links a{
	line-height: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 transparent;
	transition: box-shadow 0.3s ease;
	border:2px solid transparent;
}
.footer__links a:hover{
	box-shadow: 0 0 16px rgba(255,255,255,.5);
}
/* woocommerce */
.woocommerce-breadcrumb{
    padding-bottom: 16px !important;
	font-size:14px !important;
	color:#fef9fa !important;
}
.woocommerce-breadcrumb a{
	font-size:14px !important;
	color:#fef9fa !important;
	text-decoration: none !important;
}
.woocommerce-breadcrumb a:hover{
	color:#25D366 !important;
}
.single-product .wp-block-columns{
	gap:24px;
}
.single-product h1{
    margin-bottom: 16px;
    font-size: 22px;
  	font-family: 'SourceSansPro-bold';
    line-height: 1.3;
}
.woocommerce-product-gallery__trigger{
	position: absolute;
	visibility: hidden;
}
.product-details{
	font-size:14px;
}
.product-details-module__title{
	font-size:16px;
  	font-family: 'SourceSansPro-bold';
	margin-bottom: 4px;
}
.product-details-module{
	margin-bottom: 24px;
}
.product-details__product-price{
	font-size: 22px;
    margin-bottom: 8px;
}
.details-product-purchase form{
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	gap: 15px;
}
.details-product-purchase input[type="number"] {
	width: 60px;
	height: 40px;
	padding: 0 10px;
	border-radius: 4px;
    color: #fff;
  	font-family: 'SourceSansPro-bold';
	background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .1);
	outline: none;
 	font-size: 16px;
}
#commentform #submit,
.woocommerce #review_form #respond .form-submit input,
.details-product-purchase button {
  background-color: #72A909 !important;
  color: #fef9fa !important;
  border: none;
  height:40px;
  width: 280px;
  max-width: 100%;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
#commentform #submit,
.woocommerce #review_form #respond .form-submit input{
	width:auto;
}
#commentform #submit:hover,
.woocommerce #review_form #respond .form-submit input:hover,
.details-product-purchase button:hover {
  background-color: #416005 !important;
}
.woocommerce #review_form #respond textarea{
	background-color: transparent !important;
	border:2px solid #fef9fa !important;
	outline: none !important;
	color:#fff !important;
	font-size:14px !important;
	padding:10px;
}
label[for="comment"]{
	display:block;
}
.logged-in-as{
	margin-bottom: 10px;
}
#reply-title{
	margin-bottom: 10px;
	font-size:20px;
}
.review-block svg path{
	fill:#fff;
}
.review-block__sub-title{
	margin-bottom: 8px;
}
.custom-whatsapp-btn a{
	color:#25D366;
  	font-family: 'SourceSansPro-bold';
}
.yith-wcwl-add-to-wishlist-button{
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #17BFB0;
	border: none;
	border-radius: 4px;
	padding: 0 10px;
	cursor: pointer;
	font-size: 14px;
	font-family: 'SourceSansPro-bold';
	color: #fef9fa;
	transition: background-color 0.3s ease;
}
.yith-wcwl-add-to-wishlist-button:hover{
	background-color: #0f7b71;
}
.yith-wcwl-add-to-wishlist-button svg{
	width: 16px !important;
	height: 16px;
}
#yith-wcwl-icon-heart-outline{
	color:#fff !important;
	stroke: #fff;
}
#yith-wcwl-icon-heart{
	color:#fff !important;
	fill:#fff !important;
	stroke: #fff;
}
.yith-wcwl-feedback-messages-container{
	display: none !important;
}
.product-details__share-links{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin-top: 20px;
}
.share-facebook,
.share-pinterest {
  fill:#fff;
}
.product-details__share-links svg {
  width: 20px;
  height: 20px;
}
.product-footer__links{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
	padding:32px 0 16px;
}
.product-footer__item a{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
	width:150px;
}
.product-details__action .product-details-module__title{
	margin-top:-10px;
	margin-bottom: 20px;;
}
.product-details__action .input-group{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 4px;
	overflow: hidden;
}
.product-details__action .input-group input{
	width: 70px;
	height: 40px;
	padding: 0 10px;
    text-align: center;
	border:0;
	border-radius: 0;
	border-left:1px solid rgba(0, 0, 0, .1);
	border-right:1px solid rgba(0, 0, 0, .1);
}
.product-details__action .input-group button{
	background-color: transparent !important;
	color:rgba(255,255,255,0.7);
	width:40px;
	height: 40px;
	border: none;
	cursor: pointer;
	transition: color 0.3s ease;
	border-radius: 4px;
}
.product-details__action .input-group button:hover{
	color:#fff;
}
.product-details__action .input-text.qty::-webkit-outer-spin-button,
.product-details__action .input-text.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}
.product-details__action .input-text.qty[type="number"] {
    -moz-appearance: textfield;
}
.product-details__action .input-text.qty::-ms-clear {
    display: none;
}
.product-details__action .input-text.qty::-ms-reveal {
    display: none;
}
.flex-control-thumbs{
	display:flex;
	justify-content: center;
	gap:8px;
	margin-top:8px;
}
.header-shop-block{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px !important;
	margin-left:auto;
}
.header-shop-block a{
	display: flex;
	align-items: center;
}
.header-shop-block svg{
	fill:#fef9fa;
	width:24px !important;
	height:24px !important;
}
.header-shop-block .woocommerce-product-search{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: transparent;
	border-radius: 4px;
	padding: 0 10px;
	height: 40px;
	border: 2px solid #fef9fa;
	outline: none;
	width:230px;
	height: 40px;
}
.header-shop-block input{
	width:178px;
	border:0;
	outline: none;
	background-color: transparent !important;
	color:#fef9fa !important;
	font-size:14px;
	padding: 0 10px;
}
.header-shop-block input::placeholder{
	color:#fef9fa;
	font-size:14px;
}
.header-shop-block button{
	font-size:0;
	width:20px;
	height:20px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	background: url(./img/search.svg) no-repeat center center;
	background-size: contain;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message{
	background: transparent !important;
	color: #fef9fa !important;
	border-color: #72A909 !important;
}
[name="login"],
[name="register"]{
	background: #72A909 !important;
	color: #fef9fa !important;
	border: none !important;
	font-weight: normal !important;
	border-radius: 4px !important;
	transition: background-color 0.3s ease !important;
}
[name="login"]:hover,
[name="register"]:hover{
	background: #416005 !important;
	color: #fef9fa !important;
}
.woocommerce-MyAccount-content .button,
[name="save_address"],
.wc-forward,
.wp-element-button,
.woocommerce-Button{
	background: #72A909 !important;
	color: #fef9fa !important;
	border: none !important;
	font-weight: normal !important;
	border-radius: 4px !important;
	transition: background-color 0.3s ease !important;
}
.woocommerce-MyAccount-content .button:hover,
[name="save_address"]:hover,
.wc-forward:hover,
.wp-element-button:hover,
.woocommerce-Button:hover{
	background: #416005 !important;
	color: #fef9fa !important;
}
.woocommerce-orders-table__cell a{
	margin-right:5px !important;
}
[name="save_address"]{
	margin-top: 15px !important;
}
.woocommerce-info::before{
	color: #72A909 !important;
}
input::placeholder{
	color: #fef9fa !important;
}
strong{
	font-family: 'SourceSansPro-bold', sans-serif !important;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.is-large.wc-block-cart .wc-block-cart__totals-title,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header th, table.wc-block-cart-items .wc-block-cart-items__header th,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-formatted-money-amount,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{
	font-family: 'SourceSansPro-bold', sans-serif !important;
}
.wc-block-grid__product .add_to_cart_button{
    background-color: #72A909 !important;
    color: #fef9fa;
    border: none;
    height: 40px;
    width: 280px;
    max-width: 100%;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.wc-block-grid__product .add_to_cart_button:hover{
	background-color: #416005 !important;
}
ul.products .add_to_cart_button,
.woocommerce-result-count,
.woocommerce-ordering{
	display: none !important;
}
ul.products li{
	text-align: center;
}
ul.products li .price bdi{
	font-family: 'SourceSansPro-bold', sans-serif !important;
	font-size: 22px !important;
	color: #fef9fa !important;
}
.ws-figure{
	position: relative;
	overflow: hidden;
	line-height: 0;
	border-radius: 3px;
}
a .ws-figure img{
	transition: transform 0.3s ease;
	margin:0 !important;
	width:100% !important;
	height:100% !important;
	object-fit: contain;
}
a:hover .ws-figure img{
	transform: scale(1.07);
}
li.product-category .ws-figure{
	aspect-ratio: 290 / 219;
	display: flex;
}
li.product-category a{
	position: relative;
	display: block;
    border-radius: 3px;
	overflow: hidden;
	border:1px solid #1A5653;
}
li.product-category a::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
	transition: opacity 0.3s ease;
	display: block;
	z-index: 0;
}
li.product-category a .woocommerce-loop-category__title{
	position: absolute;
	bottom: 10px;
	width:100%;
	text-align: center;
	z-index: 2;
	font-size: 18px !important;
	line-height: 22px !important;
	font-family: 'SourceSansPro-bold', sans-serif !important;
}
li.product-category a .woocommerce-loop-category__title mark{
	display:none !important;
}

.woo__search form{
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 0;
	width:720px;
	max-width: 100%;
	margin:20px auto;
	background-color: #108479;
	height:40px;
	border-radius: 4px;
	border:2px solid #fef9fa;
	outline: none;
	overflow: hidden;
	padding:0 15px;
}
.woo__search form input{
	background: transparent !important;
	border:0 !important;
	outline: none !important;
	color: #fef9fa !important;
	font-size: 14px !important;
	padding:0 10px;
	width:calc(100% - 22px);
}
.woo__search form:has(input:focus){
	background-color: transparent !important;
}
.woo__search form button{
	border:0 !important;
	outline: none !important;
	font-size: 0 !important;
	cursor: pointer;
	width:20px;
	height:20px;
	padding: 0;
	background: transparent url(./img/search.svg) no-repeat center center;
	background-size: contain;
}
.woocommerce-page h2:first-child,
.woocommerce-account h2:first-child,
.woocommerce-cart h2:first-child,
.search__title{
	font-size: 28px;
	font-family: 'SourceSansPro-bold', sans-serif !important;
	margin: 20px 0 15px;
}
.search h2:first-child{
	margin-bottom: 3px;
}
form .woocommerce-Input,
.woocommerce-MyAccount-content input,
.edit-account input{
	height:40px !important;
	border-radius: 4px;
	border:2px solid #fef9fa !important;
	background-color: #108479 !important;
	outline: none !important;
	color: #fef9fa !important;
	font-size: 14px !important;
	padding: 0 10px;
}
form .woocommerce-Input:focus,
.woocommerce-MyAccount-content input:focus,
.edit-account input:focus{
	background-color: transparent !important;
}
button[name="save_account_details"]{
	margin-top:15px !important;
}
.select2,
select{
	height:40px;
	border-radius: 4px;
	border:2px solid #fef9fa;
	background-color: #108479 !important;
	outline: none !important;
	color: #fef9fa !important;
	font-size: 14px !important;
	padding: 0 10px;
}
select:focus{
	background-color: transparent !important;
}

.select2-container--default .select2-selection--single{
	background-color: transparent !important;
	color: #fef9fa !important;
	border:0 !important;
	height:40px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
	color: #fef9fa !important;
	line-height: 34px !important;
}
.select2-selection__placeholder{
	color: #fef9fa !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px !important;
  right: 10px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fef9fa transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
}
.select2-container{
	color:#333;
}
.header-skew{
	margin-top:-101px;
}
.header-skew h1{
	margin-bottom: 40px;
}
.header-skew .wp-block-cover__image-background {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: 50% 50%; 
    clip-path: polygon(
        0% 23.5%,
        100% 0%,
        100% 76.5%,
        0% 100% 
    );
}
.social-media-container{
	display:flex;
	width:100%;
	justify-content: center;
	gap: 5px;
}
.contact-columns{
	margin-top:40px;
	font-size: 18px;
	line-height: normal;
}
.contact-columns .wp-block-buttons>.wp-block-button{
	width: 100%;
}
.contact-columns .wp-element-button{
	padding: 10px 20px !important;
	font-size:18px;
	margin-bottom: 15px !important;
	background-color: #25D366 !important;
	width:100%;
	border-radius:0px !important;
}

.contact-columns textarea,
.contact-columns input{
    height: 50px;
    border: 2px solid #fef9fa;
    background-color: transparent !important;
    outline: none !important;
    color: #fef9fa !important;
    font-size: 14px !important;
    padding: 0 15px;
	margin-bottom: 15px;
	width:100%;
	border-radius:0px !important;
}
.contact-columns textarea{
	height:258px;
	padding:5px 10px;
}
.contact-columns textarea:focus,
.contact-columns input:focus{
	border-color: #72a909;
}
.contact-columns input[type="submit"]{
    background: #72A909 !important;
    color: #2c2c2c !important;
    border: none !important;
    font-weight: normal !important;
    border-radius: 4px !important;
    transition: background-color 0.3s ease !important;
	height:43px;
	cursor: pointer;
	border-radius: 0px !important;
}
.contact-columns input[type="submit"]:hover {
    background: rgba(114, 169, 9, 0.9) !important;
    color: #2c2c2c !important;
}
.contact-columns label{
	display:block;
	margin-bottom: 5px;
}
.contact-columns input[type="file"]{
	border:0 !important;
}
.wpcf7-acceptance .wpcf7-list-item{
	margin-left:0 !important;
}
.wpcf7-acceptance label{
	display: flex;
	align-items: center;
	gap: 10px;
}
.wpcf7-acceptance input{
	width: 40px !important;
	height: 40px !important;
}
.wpcf7-acceptance label{
	font-size: 18px;
}
.contact-columns form br{
	display:none;
}
.select-file > p{
	display: flex;
	gap:15px;
	align-items: center;
	margin-bottom: 5px;
	margin-top:-20px;
}
.select-file .wpcf7-file{
	position: absolute;
	z-index: -9;
	visibility: hidden;
}
.original-file-input {
    width: 0.1px; 
    height: 0.1px;
    opacity: 0; 
    overflow: hidden; 
    position: absolute; 
    z-index: -1; 
}
.custom-file-upload {
    display: inline-block; 
    height: 43px; 
    line-height: 43px; 
    padding: 0 20px; 
    background-color: #72A909; 
    color: #2c2c2c; 
    border: none; 
    cursor: pointer; 
    text-align: center; 
    width:auto;
	border-radius: 0 !important;
    font-size: 16px; 
    font-weight: bold; 
    border-radius: 5px; 
    transition: background-color 0.3s ease; 
	font-weight: 400;
}
.custom-file-upload:hover {
    background-color: #8cc01a; 
}
#file-name-display {
    display: block; 
    font-size: 14px;
    color: #fef9fa;
}
#file-format{
	display:block;
	margin-bottom: 15px;
	font-size: 12px;
}

/* desktop */
.menu-toggle.hidden { display: none; }

/* mobile */
#burger { 
	display: none; 
	width:24px; 
	height:24px; 
	cursor: pointer;
	margin-top: 43px;
}
#mobile-menu { 
	display: none; 
	flex-direction: column; 
	list-style: none; 
	padding: 0 20px;
	width:100%;
	background-color: #00403E;
	text-align: center;
}
#mobile-menu li { margin: 10px 0; }

.shadow-layer{
	position: fixed;
	top: 0;
	left:0;
	background-color: #000;
	opacity: 0.6;
	z-index: -1;
	display: none;
	width:100%;
	height:100%;
}
.shadow-layer.show{
	display: block;
	z-index: 11;
}
.search-mobile,
.search-close{
	display: none;
}
.woocommerce-MyAccount-navigation li{
	margin-bottom: 15px;
}
.wpcf7-not-valid-tip{
	display: none !important;
}
textarea.wpcf7-not-valid,
input.wpcf7-not-valid{
	border-color: #f00 !important;
}
.commentlist li{
	padding:5px 15px;
	border:1px solid rgba(255,255,255,.5);
	border-radius: 4px;
	margin-bottom: 10px;
}
.commentlist li .meta{
	margin-bottom: 5px;
}
.commentlist li .description{
	font-size:18px;
}
.commentlist li .description p{
	margin-bottom: 5px;
}
.commentlist li .avatar{
	display:none;
}
textarea#comment{
	background-color: transparent !important;
	border:2px solid #fef9fa !important;
	height:60px;
}
.my-cart__text,
.product-footer__item-text{
	text-align: center;
	font-size: 14px;
}
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container{
	position: relative !important;
	border: 1px solid hsla(0, 0%, 7%, .11);
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	top:0 !important;
	padding-top:10px !important;
	padding-bottom: 0 !important;
    margin: 0 auto -15px !important;
	justify-content: center !important;
}

.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:before,
.wc-block-components-express-payment--checkout .wc-block-components-express-payment__title-container:after{
	display:none !important;
}
.wc-blocks-components-select .wc-blocks-components-select__select{
	color:#333 !important;
	background: #fef9fa !important;
}
.woocommerce-message{
	outline: 1px solid green !important;
}
.woocommerce-loop-product__title{
  	font-family: 'SourceSansPro' !important;
	font-size: 16px;
}
li.product .star-rating{
	display:none !important;
}
.wc-block-components-checkout-step__content .wc-block-components-checkbox label div{
	position: relative;
	top:5px;
}
.custom-child-category ul.products li.product {
	margin-bottom: 1.9em !important;
}
.custom-child-category ul.products li.product a{
	background-color: #fff;
}
.custom-child-category li.product-category a::after{
	display:none;
}
.custom-child-category .woocommerce-loop-category__title{
	color:#000 !important;
	transition: .3s;
}
.custom-child-category ul.products li.product a:hover .woocommerce-loop-category__title{
	transform:translateY(-5px);
}
main a{
	text-decoration: underline;
}
main a.wp-element-button,
main .woocommerce a,
main a:has(> .has-inline-color),
main button a{
	text-decoration: none;
}

.coockie__banner{
	display:none;
	position: fixed;
	width:100%;
	bottom:0;
	left:0;
	background-color: #fff;
	z-index: 9999;
	box-shadow: 0 -3px 8px -6px #000000a1;
}
.coockie__banner .container{
	width:1045px;
	max-width: 100%;
	margin:0 auto;
	padding:15px;
	display:flex;
	justify-content: space-between;
	align-items: center;
	color:#55647B;
	font-size:16px;
	line-height: 120%;
	gap:18px;
}
.coockie__banner svg{
	fill:#A0A0A0;
	min-width: 24px;
	min-height: 24px;
}
.coockie__content a{
	color:#1183d1;
	text-decoration: underline;
	display:block;
	margin-top: 5px;
}
.coockie__buttons{
	display:flex;
	gap:18px;
	align-items: center;
}
.coockie__buttons a{
	background-color: #A0A0A0;
	color:#fff;
	padding:8px;
    text-align: center;
    min-width: 84px;
	border-radius: 8px;
	display: inline-block;
	font-size:18px;
	line-height: 120%;
	transition: .3s;
}
.coockie__buttons a:hover{
	background-color: #1183d1;
}
@media (max-width: 1024px) {
	header,
	main,
	.wp-block-cover .wp-block-cover__inner-container,
	footer .wp-block-cover__inner-container{
		padding-left:20px;
		padding-right:20px;
	}
	.menu-container{
		display:none;
	}
	.menu-toggle, .dropdown { display: none !important; }
	#burger { 
		display: flex; 
		position: absolute;
		right: 20px;
		flex-direction: column; 
		justify-content: space-around;
		z-index: 10;
	}
  	#mobile-menu.show { 
		display: flex; 
		position: absolute;
		left:0;
		right:0;
		z-index: 9;
        padding-top: 40px;
		padding-bottom: 30px;
		box-shadow: 0 12px 12px -12px #0006;
	}
	#burger span{
		width:100%;
		height:2px;
		background-color: #fff;
		transition: all 0.3s ease;
	}
	.mobile-menu-toggle.show span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
	}
	.mobile-menu-toggle.show span:nth-child(2) {
		opacity: 0;
	}
	.mobile-menu-toggle.show span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}
	.header-shop-block{
		gap:10px !important;
	}
	.header-search{
		position: absolute;
		margin-top: 20px;
		left: 50%;
		width:calc(100% - 40px);
		transform: translateX(-50%);
		padding:20px;
		background-color: #00403E;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: -1;
	}
	.header-search.show{
		opacity: 1;
		visibility: visible;
		z-index: 12;
		position: fixed;
	}
	.search-mobile{
		display:block;
		background: url(./img/search.svg) no-repeat center center;
    	background-size: contain;
		width:20px;
		height:20px;
		cursor: pointer;
	}
	.header-search.show .search-close{
		display: block;
		position: absolute;
		top: -44px;
		right: 0px;
		cursor: pointer;
		z-index: 10;
		font-size: 40px;
	}
	.header-shop-block .woocommerce-product-search{
		width:100%;
	}
	.header-shop-block{
		margin-left: auto !important;
	}
	.coockie__banner .container{
		flex-wrap:wrap;
	}
	.coockie__content{
		width:calc(100% - 46px);
		font-size:14px;
	}
	.coockie__buttons{
		width:100%;
	}
	.coockie__buttons a{
		padding:6px;
		font-size:16px;
	}
}
@media (max-width:768px){
	.products:has(> .product-category){
		display:flex;
		flex-wrap: wrap;
		gap:14px;
	}
	.products .product-category.first:first-child{
		width:100% !important;
		float:unset;
	}
	.custom-child-category .products .product-category.first:first-child,
	.products .product-category{
		margin:0 !important;
		width:calc(50% - 7px) !important;
	}
	.custom-child-category ul:before{
		display:none !important;
	}
	.woocommerce-loop-category__title{
		padding-bottom: 0 !important;
	}
}
@media (max-width:480px){
	.logo{
		font-size:28px;
	}
	#burger{
		margin-top:34px;
	}
	.hero{
		height:490px;
	}
	.hero h2{
		font-size: 48px !important;
	}
	h2{
		font-size: 32px;
	}
	h3{
		font-size:24px;
	}
	h4{
		font-size: 20px;
	}
	.hero__links{
		bottom:60px;
	}
	.column-reverse{
		flex-direction: column-reverse;
	}
	li.product-category a .woocommerce-loop-category__title{
		font-size:15px !important;
		line-height: 16px !important;
    	min-height: 30px;
		padding-left:10px !important;
		padding-right:10px !important;
	}
	.woocommerce ul.products li.product-category a{
		max-height: 132px;
	}
	.woocommerce ul.products li.product-category a img{
		object-fit: contain;
		max-height: 132px;
		width:auto;
		margin:0 auto !important;
		padding:5px 0;
		display: block;
	}
	.details-product-purchase button{
		width:100% !important;
	}
}