/*
Embed fonts families:
-------------------
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}


animation:
-------------------
transition: all 0.5s;

Content:
1. Main styles override
2. Contact form 7 
3. Navbar bootstrap
4. ACF elements
5. Theme styles  
6. Responsive fixes
*/

/* ============================================= */
/* 1. Main styles override                       */
/* ============================================= */

body {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color:#010101;
	background-color: #efeef1;
}
body.admin-bar .navbar.fixed-top {
	margin-top: 32px;
}
html {
	scroll-behavior:smooth;
	font-display: swap
}
strong {
	font-weight: 700;
}
/* Links */
a {
	transition: all 0.5s;
	text-decoration: none;
	color:#062c07;
}
a:focus, a:hover {
	text-decoration: none;
	outline: 0;
}
a:focus {
	outline: 0;
	outline-offset: -2px;
}
button, button:focus, button:active {
	outline: 0;
	box-shadow: 0
}
.bg-glass {
	backdrop-filter: blur(10px);
	transition: all linear 0.3s;
}

/* /Links */

/* Image responsive fix */
img {
	width: initial;
	max-width: 100%;
	height: auto;
}
/* /Image responsive fix */



/* Headers */
h1, h2, h3, h4, h5 {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
}
h1 {
	font-size: 44px;
}
h2 {
	font-size: 40px;
	font-weight: 500;
}
.h2-below {
	font-size: 20px;
	color:#898989;
	font-weight: g30;
}
.dark .h2-below {
	color:#fff;
}
#banner h2 {
	font-size: 65px;
	font-weight: 500;
}
h3 {
	font-size: 24px;
	font-weight: 500;
	color:#010101;
}
.post-box--title h3 {
	font-size: 20px;
}
.h3-above {
	font-size: 20px;
	color:#898989;
}
.h3-below {
	font-size: 20px;
	color:#898989;
}
.contacts h3 {
	font-size:22px;
	font-weight: 500;
	margin-bottom: 15px;
}
.desc-2-cols h3 {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 25px;
}
h4 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 25px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
@media only screen and (max-width : 768px) {
	h1 {
		font-size: 32px;
	}
	#banner h2 {
		font-size: 35px;
	}
	h2 {
		font-size: 28px;
	}
}
/* /Headers */

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

/* Bootstrap extra spaces */
.pt-6,
.py-6 {
	padding-top: 5rem !important;
}

.pe-6,
.px-6 {
	padding-right: 5rem !important;
}

.pb-6,
.py-6 {
	padding-bottom: 5rem !important;
}

.ps-6,
.px-6 {
	padding-left: 5rem !important;
}
.mt-6,
.my-6 {
	margin-top: 5rem !important;
}

.mr-6,
.mx-6 {
	margin-right: 5rem !important;
}

.mb-6,
.my-6 {
	margin-bottom: 5rem !important;
}

.ms-6,
.mx-6 {
	margin-left: 5rem !important;
}
.py-6-fixed {
	padding-top: 4rem !important;
	padding-bottom: 7rem !important;
}
@media only screen and (max-width : 768px) {
	.py-6-fixed {
		padding-top: 4rem !important;
		padding-bottom: 7rem !important;
	}
	.pt-6,
	.py-6 {
		padding-top: 4rem !important;
	}

	.pr-6,
	.px-6 {
		padding-right: 4rem !important;
	}

	.pb-6,
	.py-6 {
		padding-bottom: 4rem !important;
	}

	.pl-6,
	.px-6 {
		padding-left: 4rem !important;
	}
	.mt-6,
	.my-6 {
		margin-top: 4rem !important;
	}

	.me-6,
	.mx-6 {
		margin-right: 4rem !important;
	}

	.mb-6,
	.my-6 {
		margin-bottom: 4rem !important;
	}

	.ms-6,
	.mx-6 {
		margin-left: 4rem !important;
	}
}
/* /Bootstrap extra spaces */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
  border-color: transparent;
  box-shadow: none;
  outline: 0 none;
}
/* Buttons */
.btn-default {
	background-color: #2fbe2a;
	border:1px solid #2fbe2a;
	border-radius: 15px;
	font-size: 14px;
	color: #fff;
	font-family: "Poppins", sans-serif;
	padding:10px 20px;
	transition: all 0.5s;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
	background-color:#062c07;
	color: #fff;
	transition: all 0.5s;
}

.btn-add-to-cart {
	background-color: #062c07 !important; 
	border:1px solid #062c07 !important; 
	border-radius: 15px !important; 
	font-size: 14px !important; 
	font-weight: 500 !important;
	color: #fff !important; 
	font-family: "Poppins", sans-serif !important; 
	padding:10px 20px !important; 
	transition: all 0.5s !important; 
}
.single_add_to_cart_button {
	background-color: #2fbe2a !important; 
	border:1px solid #2fbe2a !important; 
	border-radius: 15px !important; 
	font-size: 15px !important; 
	font-weight: 500 !important;
	color: #fff !important; 
	font-family: "Poppins", sans-serif !important; 
	padding:13px 20px 13px 50px !important; 
	transition: all 0.5s !important; 
	background-image: url('../img/icon-cart-add.webp') !important;
	background-repeat: no-repeat;
	background-position: left 15px center;
}
.btn-add-to-cart:hover,
.btn-add-to-cart:focus,
.btn-add-to-cart:active {
	background-color:#062c07;
	color: #fff;
	transition: all 0.5s;
}
.btn-focus {
	background-color: #2fbe2a;
	border:0;
	font-weight: 600;
	border-radius: 15px;
	font-size: 16px;
	color: #fff;
	font-family: "Poppins", sans-serif;
	padding:18px 20px;
	transition: all 0.5s;
	position: relative;
	padding-left: 75px;
}
.btn-focus:hover,
.btn-focus:focus,
.btn-focus:active {
	background-color:#062c07;
	color: #fff;
	transition: all 0.5s;
}
.btn-focus:before {
	content: "";
	position: absolute;
	background-image: url('../img/icon-play-sm.webp');
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	left: 0;
	width: 60px;
	height: 100%;
	background-color: #062c07;
	border-radius: 15px;
}

.box-green .btn-default:hover,
.box-green .btn-default:focus,
.box-green .btn-default:active {
	background-color:#ffffff;
	color: #010101;
	transition: all 0.5s;
}
.btn-text {
	border:0;
	border-radius: 0;
	font-size: 15px;
	font-weight: 500;
	color: #010101;
	padding:0;
	padding-right:43px;
	transition: all 0.5s;
	background-image: url('../img/arrow-right.webp');
	background-repeat: no-repeat;
	background-position: right center;
}
.dark .btn-text {
	background-image: url('../img/arrow-right-white.webp');
}
.btn-text:hover,
.btn-text:focus,
.btn-text:active {
	color: #062c07;
	transition: all 0.5s;
}
.accordion-hide .btn-text {
	background-image: url('../img/arrow-left.webp');
}
.dark .accordion-hide .btn-text {
	background-image: url('../img/arrow-left-white.webp');
}
.btn-white {
	background-color: #ffffff;
	border:1px solid #ffffff;
	border-radius: 15px;
	font-size: 14px;
	color: #010101 !important;
	font-family: "Poppins", sans-serif;
	padding:10px 20px;
	transition: all 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
	background-color:#2fbe2a;
	color: #fff !important;
	transition: all 0.5s;
}
.btn-default.btn-search {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding-top: 16px;
	padding-bottom: 17px;
}
.cn-button.bootstrap {
	background-color: #2fbe2a !important;
	text-transform: uppercase !important;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
/* /Buttons */

section {
	position: relative;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

/* Vertical align */
.vertical-a {
	display: flex;
	justify-content: center;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
	.vertical-align {
		display: block;
	}
}
.vertical-b {
	align-self: center;
	width: 100%;
}
/* /Vertical align */

/* Placeholder  */
::-webkit-input-placeholder {
	color:#888;
}
:-moz-placeholder {
	color:#888;
}
::-moz-placeholder {
	color:#888;
}
:-ms-input-placeholder {
	color:#888;
}
/* /Placeholder  */

/* Selection  */
::selection {
	background: #2fbe2a; /* WebKit/Blink Browsers */
	color:#fff;
}
::-moz-selection {
	background: #2fbe2a; /* Gecko Browsers */
	color:#fff;
}
/* /Selection */

/* Box links (often used)  */
.box-link {
	position:absolute;
	height:100%;
	width:100%;
	left:0px;
	top:0px;
	cursor: pointer;
}
/* /Box links (often used)  */

.bg-test {
	background-color: rgba(255,0,0,0.5);
}

.dark, .dark p, .dark a, .dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
	color: #fff;
}

/* Element single post box */
.post-box--img {
	width: 100%;
	height: 380px;
	position: relative;
}
.post-box--img img {
	width: 100%;
	height: 380px;
	object-fit: cover;
}
/* /Element single post box */

/* ============================================= */
/* 2. Contact form 7                             */
/* ============================================= */
.wpcf7-form {
	font-size: 14px;
	font-weight: 500;
	padding-left: 20px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="date"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7-select,
.wpcf7 textarea {
	background-color: #efeef1;
	color: #010101;
	border-radius: 15px;
	border:1px solid #efeef1;
	padding: 13px 20px;
	font-size: 14px;
	width: 100% !important;
	margin-top: 5px;
	margin-left: -20px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
	background-color: #efeef1;
	border:1px solid #062c07;
	color: #010101;
	box-shadow: none;
	outline: 0 none;
}
.wpcf7-form select {
	padding: 0px;
	line-height: 40px;
}
.wpcf7-list-item {
	display: block;
}

.wpcf7-list-item-label {
	color:#010101; 
	font-size: 14px;
	margin-left: 20px;
}

.wpcf7-list-item-label a {
	color:#010101; 
	font-weight: 500;
}
.wpcf7-form label {
	width: 100%;
}
.wpcf7-form-control.wpcf7-acceptance label {
    display: flex;
    line-height: 1.2;
}

.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    margin-right: 5px;
    align-self: start;
}

.wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.wpcf7-submit {
	background-color: #062c07 !important;
	border:1px solid #062c07 !important;
	border-radius: 10px;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	padding:10px 25px;
	transition: all 0.5s;
}
.wpcf7-form.submitting .wpcf7-submit,
.wpcf7-form.invalid .wpcf7-submit {
	color: #fff !important;
}

.wpcf7-submit:disabled {
	opacity:0.7;
}
/* Placeholder  */
::-webkit-input-placeholder {
 color:#fff;
 opacity: 0.7;
}
:-moz-placeholder {
 color:#fff;
 opacity: 0.7;
}
::-moz-placeholder {
 color:#fff;
 opacity: 0.7;
}
:-ms-input-placeholder {
 color:#fff;
 opacity: 0.7;
}
:active::-webkit-input-placeholder,
:focus::-webkit-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-moz-placeholder,
:focus::-moz-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
:active::-ms-input-placeholder,
:focus::-ms-input-placeholder {
 color:#b5b5b5;
 opacity: 1;
}
/* /Placeholder  */

/* ============================================= */
/* 3. Navbar (bootstrap)                         */
/* ============================================= */
.navbar {
	font-family: "Poppins", sans-serif;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding-top: 0;
	padding-bottom: 0;
	background-color: #efeef1;
	transition: all 0.5s;
}
.navbar-brand {
	padding-bottom: 0;
	padding-top: 0;
}
.navbar-brand img {
	transition: all linear 0.5s;
	width: 214px; 
}
.navbar-nav .menu-item:not(.wpml-ls-item) .nav-link {
	color: #010101;
	background-color: #efeef1;
	border:1px solid #c9c9c9;
	border-radius: 15px;
	margin-right: 5px;
	font-size: 15px;
	padding:13px 20px !important;
	font-weight: 500;
	transition: all 0.5s;
}
@media only screen and (max-width : 991px) {
	.navbar-nav .menu-item:not(.wpml-ls-item) .nav-link {
		margin-bottom: 5px;
		display: block;
		width: 100% !important;
		padding:10px 20px !important;
	}
}


.navbar-nav .nav-link.telephone {
	border:1px solid transparent;
}

@media only screen and (max-width : 1350px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 12px;
		padding-right: 12px; 
	}
}
@media only screen and (max-width : 1040px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 10px;
		padding-right: 10px; 
	}
}
.navbar-nav .menu-item:not(.wpml-ls-item) .nav-link:hover,
.navbar-nav .menu-item:not(.wpml-ls-item) .nav-link:focus,
.navbar-nav .menu-item:not(.wpml-ls-item) .show > .nav-link,
.navbar-nav .menu-item:not(.wpml-ls-item) .nav-link.show {
	color: #fff;
	background-color: #062c07;
	border:1px solid #062c07;
	transition: all 0.5s;
}
.navbar-nav .current-menu-item .active > .nav-link,
.navbar-nav .current-menu-item .nav-link.active {
	color: #fff;
	background-color: #2fbe2a;
	border:1px solid #2fbe2a;
}
.sticky.navbar {
	padding-top:0px !important;
	padding-bottom:0px !important;
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.05);
}
.navbar-toggler {
	border-radius: 10px;
	border:1px solid #2fbe2a;
	transition: all 0.5s;
	background-color: #2fbe2a;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler span {
	display: block;
	background-color: #fff;
	height: 2px;
	width: 24px;
	margin-top: 6px;
	margin-bottom: 6px;
	position: relative;
	left: 0;
	opacity: 1;
	transition: all 0.35s ease-out;
	transform-origin: center left;
}
.navbar-toggler span:nth-child(1) {
	transform: translate(0%, 0%) rotate(0deg);
}
 
.navbar-toggler span:nth-child(2) {
	opacity: 1;
}
 
.navbar-toggler span:nth-child(3) {
	transform: translate(0%, 0%) rotate(0deg);
}
.navbar-toggler span:nth-child(1) {
	margin-top: 0.3em;
}
 
.navbar-toggler:not(.collapsed) span:nth-child(1) {
	transform: translate(15%, -33%) rotate(45deg);
}
 
.navbar-toggler:not(.collapsed) span:nth-child(2) {
	opacity: 0;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
	transform: translate(15%, 33%) rotate(-45deg);
}

.navbar .contact a.nav-link {
	background: #00465e;
	/*background: linear-gradient(0deg, rgba(33,37,41,1) 0%, rgba(0,62,83,1) 100%);*/
}
.search-activator {
	cursor: pointer;
}

.search-activator a.nav-link {
	text-indent: -9999px;
	background-image: url(../img/icon-main-menu-search.png);
	background-repeat: no-repeat;
	background-position: center;
}

.dropdown-menu {
	margin-top: -2px;
	border-radius: 0px;
	background-color: #062c07;
	border:0px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.10);
}
.dropdown-menu[data-bs-popper] {
	margin-top: -1px;
	border-top:1px solid #efeef1;
}
.dropdown-menu li a.dropdown-item {
	font-size: 15px;
	line-height: 35px;
	color: #efeef1;
	transition: all 0.5s;
	font-weight: 500;
}


.dropdown-menu li a.dropdown-item:hover {
	color:#2fbe2a;
	transition: all 0.3s;
}
.dropdown-menu li a.dropdown-item:hover,
.dropdown-menu li a.dropdown-item:focus,
.dropdown-menu li a.dropdown-item:active {
	background-color: transparent;
	transition: all 0.3s;
}
.dropdown-item.active {
	background-color: transparent;
	color:#2fbe2a !important;
}


/* Search window */
#search-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
	top:0px;
	left:0px;
	max-height: 100vh;
	z-index: 999999999;
}
#search-container .d-flex {
	height: 100%;
}
#search-close {
	position: absolute;
	right: 40px;
	top:25px;
	background-image: url(../img/search-close.png);
	background-repeat: no-repeat;
	background-color: transparent;
	height: 41px;
	width: 41px;
	z-index: 100000;
	cursor: pointer;
}
#search-close span {
	position: absolute;
	right: 50px;
	top:10px;
	width: 100px;
	text-align: right;
	color: #fff
}
#search-container .vertical-align {
	height: 100%;
}
#title .form-control {
	border:0;
}
.search-btn {
	background-image: url(../img/icon-search.png);
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}
.search-input {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	line-height: 56px;
	height: 56px;
	padding-left: 20px;
	padding-top: 0;
	padding-bottom: 0;
}
/* /Search window */

/* Open on hover for desktops only */
ul.nav li.dropdown:hover > ul.dropdown-menu {
	display: block;    
}
@media (min-width: 979px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}
/* /Open on hover for desktops only */


/* ============================================= */
/* 4. ACF elements                               */
/* ============================================= */
.embed-container { 
    position: relative; 
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
} 
.embed-container iframe,
.embed-container object,
.embed-container embed { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.acf-map {
	width: 100%;
	height: 475px;
	margin-bottom: 0px;
}
/* fixes potential theme css conflict */
.acf-map img {
	max-width: inherit !important;
}
.gm-style iframe + div { border:none!important; }

/* ============================================= */
/* 5. Theme styles                               */
/* ============================================= */

/* Tiny Slider Banner */

.slider-container .slider-controls {
	margin: 0;
    padding: 0;
    list-style: none;  
    display: inline-flex;
    align-items: center;    
    justify-content: space-between;
	width: auto;
	margin-top:20px;
	margin-left: auto !important;
	float: right;
}

.banner-slider-container .slider-item {
	padding: 0;
}
.arrow {
	height: 18px;
	width: 40px;
	background-image: url(../img/arrows.png);
	cursor: pointer;
}

.arrow.arrow-right {
	background-position: 40px 0;
}
.tns-nav {
	position: absolute;
	left:0;
	bottom: -50px;
}
.tns-nav button {
	background-color: #cfcfcf;
	border:0;
	margin: auto 5px;
	width: 60px;
	height: 2px;
}
.tns-nav button.tns-nav-active {
	background-color: #2fbe2a;
	border:0;
	margin: auto 5px;
}
/* /Tiny Slider Banner */
#main-menu .telephone a {
	display: inline-block;
	background-image: url(../img/icon-tel.webp);
	background-repeat: no-repeat;
	background-position: 20px 12px;
	padding-left: 45px !important;
	border:0 !important;
}
#main-menu .telephone:hover a {
	background-image: url(../img/icon-tel-white.webp);
}
#main-menu .shop a {
	display: inline-block;
	background-color: #062c07;
	color:#fff;
	background-image: url(../img/icon-shop.webp);
	background-repeat: no-repeat;
	background-position: 20px 14px;
	padding-left: 50px !important;
	border:0 !important;
}
#main-menu .shop:hover a {
	display: inline-block;
	background-color: #2fbe2a;
	color:#fff;
	background-image: url(../img/icon-shop.webp);
	background-repeat: no-repeat;
	background-position: 20px 14px;
	padding-left: 50px !important;
	border:0 !important;
}
.bg-dark-green {
	background-color: #062c07;
	color:#fff;
}
.bg-green {
	background-color: #2fbe2a !important;
	color:#fff;
}
#banner .height-keeper {
	min-height: 80vh;
}
.header-desc {
	font-size: 45px;
	font-weight: 500;
}
@media only screen and (max-width : 768px) {
	.header-desc {
		font-size: 25px;
	}
}
.box-green {
	background-color: #073909;
}
.box-green h3 {
	font-size: 22px;
	font-weight: 500;
}
.banner-wrapper--bg {
	top:0;
	width: calc(100% - 1.5rem);
	height: 100%;
	background-repeat: no-repeat;
	background-position: left center;
}	
@media only screen and (max-width : 768px) {
	.banner-wrapper--bg {
		background-position: left -600px top -300px;
		opacity: 0.3;
	}
}
.banner-wrapper--bg-gfx-a {
	background-image: url(../img/banner-curtine-a.webp);
	background-repeat: no-repeat;
	background-position: bottom left;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
}
.banner-wrapper--bg-gfx-b {
	background-image: url(../img/banner-curtine-b.webp);
	background-repeat: no-repeat;
	background-position: bottom right;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.banner-wrapper--content {
	padding-bottom: 80px
}
.banner-down-arrow {
	left: 50%;
	bottom:0;
	transform: translate(-50%, 38px);
}
.otgs-development-site-front-end {
	display: none;
}

.box-type-a {
	font-size: 15px;
	color:#898989;
	background-color: #fff;
	transition: all 0.5s;
}
.box-type-a:hover {
	background-color: #062c07;
	color:#fff;
	background-image: url(../img/bg-net-01.webp);
	background-repeat: no-repeat;
	background-position: top left;
}
.box-type-a:hover h3,
.box-type-a:hover .h3-above {
	color:#fff;
}

.box-type-a:hover .icon {
	background-color: #2fbe2a;
}
.box-type-a:hover .icon img {
	filter: brightness(0) invert(1);
}
.icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.icon-sm {
	width: 50px;
	min-width: 50px;
	height: 50px;
	background-color: #efeef1;
}
.contacts .icon-sm,
.features-tooltips .icon-sm {
	background-color: #062c07;
	cursor: pointer;
}
.dark .features-tooltips .icon-sm {
	background-color: #2fbe2a;
}
.contacts .contact:hover .icon-sm,
.features-tooltips .icon-sm:hover {
	background-color: #2fbe2a;
}
.dark .features-tooltips .icon-sm:hover {
	background-color: #40ce3b;
}
.features-tooltips .icon-sm img {
	filter: brightness(0) invert(1);
}
.arrow-icon-top-right {
	right: 0;
	bottom: 0;
}
.custom-tooltip {
	--bs-tooltip-bg: #062c07 !important;
	--tooltip-border-radius: 15px;
}
/* Accordion readmore */
.accordions-readmore-wrapper .read-more-btn .accordion-hide {
	display:inline
}
.accordions-readmore-wrapper .read-more-btn:not(.collapsed) .accordion-show {
	display:none
}
.accordions-readmore-wrapper .read-more-btn.collapsed .accordion-hide {
	display:none
}
.accordions-readmore-wrapper .accordion-read-more {
	position: relative;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-item,
#gallery .accordion-item,
.accordion-premises .accordion-item {
 background-color: transparent;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-body,
#gallery .accordion-read-more .accordion-body,
.accordion-premises .accordion-body {
 padding-left: 0;
 padding-right: 0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn {
	background-color: transparent;
	padding:0;
	position: relative;
	border:0;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::before {
	content:"";
	position: absolute;
	left: -5px;
	top:-100px;
	height: 100px;
	width: calc(100% + 10px);
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn:not(.collapsed)::before {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button.read-more-btn::after {
	display: none;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button {
	color:#000 !important;
	padding:0;
	font-size: 18px;
	font-weight: 400;
	position: relative;
	display: inline-block;
	box-shadow: none !important;
    border-color: rgba(0,0,0,.125) !important;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span {
	position: relative;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span::after{
	content:"";
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	height: 11px;
	transition: all 0.5s;
}

.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover{
	color:#000;
}
.accordions-readmore-wrapper .accordion-read-more .accordion-button span:hover::after{
	right: -30px;
}
/* Accordion readmore */

.cta .btn-default {
	background-color: #062c07;
	border:0;
	color: #fff;
	font-size: 20px;
	padding:20px 40px 40px 40px;
}
.cta-arrow {
	content:"";
	position: absolute;
	left:50%;
	bottom: 0;
	transform: translate(-50%, 20px);
}
.cta .btn-default:hover,
.cta .btn-default:focus,
.cta .btn-default:active {
	background-color:#2fbe2a;
	transition: all 0.5s;
}
.bg-net {
	background-image: url(../img/bg-net-02.webp);
	background-repeat: no-repeat;
	background-position: top left;
}
.cta.bg-net,
.spacer.bg-net {
	background-image: url(../img/bg-net-03.webp);
	background-repeat: no-repeat;
	background-position: top center;
}
.cta-incontent.bg-net {
	background-image: url(../img/bg-net-04.webp);
	background-repeat: no-repeat;
	background-position: top center;
}
.focus-promo-info .bg-dark-green{
	background-repeat: no-repeat;
	background-size: cover;
}
.font-size-28 {
	font-size: 28px;
}
.font-size-22 {
	font-size: 22px;
}
.font-size-16 {
	font-size: 16px;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-13 {
	font-size: 13px;
}
footer .font-size-22 strong {
	font-size: 40px;
	font-weight: 500;
}
@media only screen and (max-width : 768px) {
	footer .font-size-22 strong {
		font-size: 30px;
	}
}
footer .footer-menus ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
footer .footer-menus ul li {
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
footer .footer-menus ul li:hover a {
	color:#2fbe2a;
}
#flying-contact {
	display: none;
	position:fixed;
	bottom:30px;
	right:24px;
	width: auto;
	transition:all 0.5s
}
.pulse {
  animation:pulse-animation 2s infinite
}
#flying-contact.sticky {
  bottom:15px
}
@keyframes pulse-animation {
  0% {
    box-shadow:0 0 0 0 rgb(0 0 0 / .4)
  }
  100% {
    box-shadow:0 0 0 10px #fff0
  }
}
#breadcrumbs a {
	font-weight: 700;
}
.contacts p {
	margin-bottom: 0;
}
.title-legend {
	font-size: 20px;
	color:#898989;
}
body.error404 #heading-section .bg-dark-green {
	background-image: url(../img/bg-404.webp);
	background-repeat: no-repeat;
	background-position: center;
}
#heading-section .bg-dark-green {
	background-image: url(../img/bg-net-05.webp);
	background-repeat: no-repeat;
	background-position: top right;
}
.categories-wrapper li {
	display: inline-block;
	margin-right: 5px;
}
.categories-wrapper li a {
	background-color: transparent;
	border: 1px solid #c9c9c9;
	border-radius: 15px;
	font-size: 15px;
	font-weight: 500;
	color: #010101;
	padding:10px 20px;
	transition: all 0.5s;
}
.categories-wrapper li a:hover,
.categories-wrapper li.current-cat a {
	background-color: #2fbe2a;
	border: 1px solid #2fbe2a;
	color: #fff;
}
.post-box--date,
.post-box--excerpt {
	color:#898989;
	font-size: 15px;
}
.pagination .page-numbers {
	background-color: #062c07;
	color:#fff;
	border-radius: 15px;
	font-size: 15px;
	font-weight: 600;
	line-height: 41px;
	height:41px;
	width: 41px;
	min-width: 41px;
	display: inline-block;
	text-align: center;
	margin-left: 1px;
	margin-right: 1px;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus,
.pagination .page-numbers:active {
	background-color: #062c07;
}
.ms-skin-default .ms-tooltip-point .ms-point-center {
	background-color: #fff !important;
	border-color: #2fbe2a !important;
}
.ms-skin-default .ms-tooltip-cont {
	font-size: 13px !important;
	background-color: #062c07 !important;
	opacity: 1 !important;
	color: #fff !important;
	text-shadow: none !important;
	border-radius: 15px !important;
}
.ms-skin-default .ms-tooltip-top .ms-tooltip-arrow {
	border-top-color: #062c07 !important;
}
.even-odd .counter {
	margin-left: -5px;
	margin-top: -5px;
	width: 60px;
	height: 60px;
}
.wpmenucart-contents {
    display: flex;
    align-items: center; /* Wyrównanie w pionie */
    height: 100%;        /* Upewniamy się, że div zajmuje całą wysokość rodzica */
    background-color: #2fbe2a;
	border:1px solid #2fbe2a;
	border-radius: 15px;
	margin-right: 5px;
	font-size: 15px;
	padding:13px 20px !important;
	font-weight: 500;
	transition: all 0.5s;
	color:#fff;
}
/* Usuwamy margines dolny ceny, który psuje centrowanie w pionie */
.product-actions-wrapper .price {
    margin-bottom: 0 !important;
    line-height: 1; /* Reset wysokości linii dla lepszego wyśrodkowania */
}

/* Usuwamy ewentualny margines górny przycisku */
.product-actions-wrapper .button {
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
}

/* Opcjonalnie: wymuszamy, by cena nie zawijała się do nowej linii */
.product-actions-wrapper .price ins, 
.product-actions-wrapper .price del {
    display: inline-block;
}
/* 1. Upewniamy się, że lista produktów to Flexbox */
ul.products {
    display: flex;
    flex-wrap: wrap;
}

/* 2. Każdy boks produktu staje się kontenerem Flex o równej wysokości */
ul.products li.product {
    display: flex;
    flex-direction: column;
    height: auto; /* Pozwala na rozciąganie */
}

/* 3. KLUCZOWY MOMENT: Spychamy cenę i przycisk na sam dół */
/* Dzięki temu, nawet jeśli tytuł ma 1 linię, a w innym produkcie 3, 
   Twoja sekcja 'product-actions-wrapper' zawsze będzie w jednej linii u dołu. */
.product-actions-wrapper {
    margin-top: auto !important; 
    padding-top: 15px; /* Odstęp od treści powyżej */
}
.wc-block-cart-items__row .wc-block-components-product-metadata {
	margin-top: 30px;
}

.wc-block-cart__submit-button,
.wp-element-button  {
    background-color: #2fbe2a !important;
    color: #ffffff !important;
    border-color: #2fbe2a !important;
    text-shadow: none !important;
    box-shadow: none !important;
	border-radius: 15px;
	font-size: 15px;
	font-weight: 500;
	box-shadow: none !important;
	border:none !important;
}
.wc-block-components-order-summary-item__quantity {
	background-color: #2fbe2a !important;
	 border-color: #2fbe2a !important;
    color: #ffffff !important;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata, .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
	margin-top: 25px;
}
.searchandfilter .sf-field-taxonomy-product_cat ul {
	padding-left: 0;
}
.searchandfilter .sf-field-taxonomy-product_cat ul li {
	display: inline-block;
}
.searchandfilter .sf-field-taxonomy-product_cat ul li label {
	display: inline-block;
	background-color: #062c07;
	border:1px solid #062c07;
	border-radius: 15px;
	font-size: 15px;
	font-weight: 500;
	color: #fff;
	font-family: "Poppins", sans-serif;
	padding:20px 20px;
	transition: all 0.5s;
	margin-left: 5px;
	margin-right: 5px;
	cursor: pointer;
}
.searchandfilter .sf-field-taxonomy-product_cat ul li.sf-option-active label {
	background-color: #2fbe2a;
	border:1px solid #2fbe2a;
}
.searchandfilter .sf-field-taxonomy-product_cat ul li input {
	display: none;
}
.searchandfilter .sf-field-taxonomy-product_cat ul li:first-of-type {
	display: none;
}
.product-distinctions-container {
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left; /* Dopasuj do wyrównania tytułu */
}

.distinction-tag {
    display: block;
    color: #898989;      /* Ciemniejszy tekst */
    padding: 0px 10px 0px 40px;
    font-size: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
	position: relative;
}
.distinction-tag::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 12px;
    width: 20px;
    height: 1px;
    background-color:#2fbe2a;
}
/* Wyróżnik z zaznaczonym "stronged" w ACF */
.distinction-tag.is-stronged {
    font-weight: 600;
}
.woocommerce-loop-product__title {
	text-align: left;
	font-size: 20px;
	color:#010101;
	margin-bottom: 20px !important;
}
.price .price-integer {
    font-size: 20px !important;
    color: #010101 !important;
    font-weight: 500; /* Pogrubienie dla lepszego efektu */
}

/* Grosze i separator (przecinek) */
.price .price-fraction,
.price .price-decimal-separator {
    font-size: 16px !important;
    color: #010101 !important;
    font-weight: 500;
}

/* Waluta w kolejnym wierszu */
.price .price-currency-wrap {
    display: block;      /* Wymusza nową linię */
    font-size: 16px !important;
    color: #898989 !important;
    margin-top: -2px;    /* Lekka korekta odstępu od góry */
    font-weight: 400;
    line-height: 1.2;
}

/* Usunięcie domyślnych stylów WooCommerce dla symbolu waluty, 
   które mogłyby nadpisać nasze ustawienia */
.woocommerce-Price-currencySymbol {
	text-align: left;
}
.price-currency-wrap {
	text-align: left;
}
/* 1. Ustawienie bazy pod pozycjonowanie absolutne */
.my-custom-product-card {
    position: relative !important;
    overflow: hidden; /* Ważne: przycina tło komunikatu do zaokrąglonych rogów boksa */
}

/* 2. Stylizacja komunikatu "Zobacz koszyk" */
.my-custom-product-card .added_to_cart {
    position: absolute !important;
    bottom: 0;
    left: 0;
    width: 100%;
    
    /* Wygląd: zielone tło i biały napis */
    background-color: #2fbe2a !important; 
    color: #ffffff !important;
    
    /* Typografia i wyrównanie */
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    
    /* Warstwy */
    z-index: 100;
    
    /* Zaokrąglenie tylko dolnych rogów, by pasowały do boksa */
    border-radius: 0 0 16px 16px; 
    
    /* Animacja płynnego pojawienia się */
    animation: slideUpFade 0.3s ease-out;
}

/* Efekt najechania na komunikat */
.my-custom-product-card .added_to_cart:hover {
    background-color: #062c07 !important;
    color: #ffffff !important;
}

/* Animacja wejścia z dołu */
@keyframes slideUpFade {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Zapewnienie, że kontener produktu jest punktem odniesienia */
ul.products li.product {
    position: relative !important;
}

/* Stylizacja i pozycjonowanie znacznika */
.badge-promo-acf {
    position: absolute;
    top: 350px;      
    left: 0;        
    background-color: #2fbe2a; 
    color: #ffffff;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    z-index: 20;    
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(255,255,255,0.2);
}
/* Celujemy tylko w kafelki produktów na listach/karuzelach */
li.product:hover .add_to_cart_button,
li.product:hover .button.product_type_simple,
li.product:hover .button.product_type_variable,
.related.products .product:hover .button {
    background-color: #2fbe2a !important;
    border-color: #2fbe2a !important;
    color: #ffffff !important;
}

/* Zapewniamy płynne przejście dla wszystkich przycisków */
.add_to_cart_button, 
.button.product_type_simple, 
.button.product_type_variable {
    transition: all 0.3s ease !important;
}

.add_to_cart_button {
	transition: all 0.3s ease !important;
}
.shop-container #main > .product.bg-white {
	background-color: transparent !important;
}
/* Kontener dla ceny i przycisku */
.price-cart-row {
    display: flex;
    justify-content: space-between; /* Rozpycha elementy na boki */
    align-items: center;           /* Wyrównuje w pionie */
    margin: 20px 0;                /* Odstęp od góry i dołu */
    flex-wrap: wrap;               /* Pozwala na zawijanie na telefonach */
    gap: 15px;
}

/* Stylizacja ceny w tym konkretnym rzędzie */
.price-cart-row .price {
    margin-bottom: 0 !important;   /* Usuwa domyślne marginesy WooCommerce */
    font-size: 1.5rem;             /* Możesz dostosować wielkość */
}

/* Ustawienie formularza (ilość + przycisk) */
.price-cart-row form.cart {
    display: flex !important;
    align-items: center;
    margin-bottom: 0 !important;
    justify-content: flex-end;     /* Dosuwa przycisk do prawej */
}

//* --- Wymuszenie nowego rzędu --- */
.clear-product-layout {
    clear: both !important;
    display: block !important;
    width: 100% !important;
    height: 0;
}

/* --- Sekcja Cech --- */
.repeating-features-section {
    clear: both;
    display: block;
    width: 100%;
    margin: 40px 0;
    border-top: 1px solid #eee; /* Opcjonalna linia oddzielająca od góry */
}

/* Karta cechy */
.feature-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border-color: #2fbe2a;
}

/* Ikona */
.feature-icon img {
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

/* Mobile Fix */
@media (max-width: 768px) {
    .repeating-features-section {
        padding: 40px 15px;
        margin: 20px 0;
    }
    
    .feature-card {
        margin-bottom: 15px;
    }
}
.related.products {
 margin-top: 60px;
}
.related.products h2 {
 text-align: center;
 margin-bottom: 40px;
}
/* Kontener ilości - wymuszamy relatywność i szerokość */
.woocommerce .quantity {
    position: relative !important;
    display: inline-block !important;
    width: 90px !important; /* Stała szerokość całego elementu */
    height: 43px !important;
    padding: 0 !important;
    margin: 0 10px 0 0 !important;
    vertical-align: middle !important;
}

/* Pole input - musi zajmować 100% szerokości kontenera */
.woocommerce .quantity .qty {
    width: 100% !important;
    height: 43px !important;
    border-radius: 15px !important;
    border: 1px solid #ced4da !important;
    padding: 0 10px 0 20px !important; /* Miejsce na przyciski po prawej */
    text-align: left !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    font-size: 16px !important;
    position: relative;
    z-index: 1; /* Pod przyciskami */
}

/* Ukrycie systemowych strzałek */
.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Wrapper na przyciski - musi być wewnątrz zaokrąglonego pola */
.qty-nav-vertical {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    width: 30px;
    display: flex;
    flex-direction: column;
    z-index: 10; /* Nad polem input, żeby dało się klikać */
    background: #f8f9fa;
    border-left: 1px solid #eee;
    border-radius: 0 13px 13px 0; /* Dopasowanie do środka inputa */
    overflow: hidden;
}

/* Styl pojedynczego przycisku (span) */
.qty-up, .qty-down {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    user-select: none;
    line-height: 1;
    transition: background 0.2s;
}

.qty-up {
    border-bottom: 1px solid #eee;
}

.qty-up:hover, .qty-down:hover {
    background: #2fbe2a !important;
    color: #fff !important;
}
/* Ustawienie cen obok siebie na stronie produktu i w listach */
.price {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap; /* Pozwala na zawinięcie, jeśli cena jest bardzo długa */
    gap: 10px;       /* Odstęp między cenami */
    align-items: center; /* Wyrównanie w pionie */
}

/* Opcjonalnie: zmiana kolejności, jeśli chcesz najpierw nową, potem starą */
.price del {
    order: 2; /* Stara cena (przekreślona) */
    font-size: 0.8em; /* Możesz ją nieco zmniejszyć */
    opacity: 0.6;
}

.price ins {
    order: 1; /* Nowa cena */
    text-decoration: none; /* Usuwa podkreślenie, jeśli motyw je dodaje */
}
/* Wymuszenie jednego rzędu dla wariacji */
.woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
}

/* Ukrycie dodatkowego kontenera ceny, żeby nie dublować */
.woocommerce-variation-price {
    display: none !important;
}

/* Naprawa Twojej ceny PLN (żeby nie przeskakiwała do nowej linii) */
.price-currency-wrap {
    display: inline-block !important;
    margin-left: 5px;
}
.product .bg-white {
	position:relative;
}
.my-custom-product-card .woocommerce-loop-product__link img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.woocommerce-loop-product__title {
	text-align:center;
}
.wc-block-cart-items__header {
	font-size: 16px !important;
}
a.wc-block-components-product-name {
	font-size: 20px !important;
	font-weight: 500 !important;
}
.wc-block-components-product-price {
	font-size: 15px;
}
.wc-block-cart-item__total .wc-block-components-product-price {
	font-weight: 500;
	font-size: 16px;
}
.wc-block-components-product-metadata .wc-block-components-product-metadata__description > p {
	font-size: 13px;
}
.wc-block-cart .wc-block-cart__totals-title {
	font-size: 16px;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
	font-size: 15px;
}
.wp-block-woocommerce-checkout {
	padding-top: 0;
}
.variations select {
	border-radius: 25px;
	border:1px solid #062c07;
	padding:8px 25px;
}
table.variations th.label,
table.variations td.value {
    vertical-align: middle !important;
}

/* Wyrównanie samej listy rozwijanej i linku "Wyczyść" względem siebie */
table.variations td.value select,
table.variations td.value a.reset_variations {
    vertical-align: middle !important;
}
.woocommerce-variation-description {
	background-color: #062c07;

	color:#fff;
	border-radius: 25px;
	margin-bottom: 25px;
	background-image: url('../img/icon-woocommerce-variation-description.webp');
	background-position: left 25px top 25px;
	background-repeat: no-repeat;
}
.woocommerce-variation-description .woocommerce-product-details__short-description {
	padding: 40px 25px 25px 95px;
}
@media only screen and (max-width : 768px) {
	.woocommerce-variation-description {
		background-image: url('../img/icon-woocommerce-variation-description.webp');
		background-position: left 25px top 25px;
		background-repeat: no-repeat;
	}
	.woocommerce-variation-description .woocommerce-product-details__short-description {
		padding: 90px 25px 25px 25px;
	}
}
/* Kontener trzymający cenę i koszyk w jednej linii */
.wiersz-cena-koszyk {
    display: flex;
    flex-wrap: wrap; /* Na wąskich telefonach koszyk spadnie pod cenę, co uchroni układ przed ściśnięciem */
    align-items: center; /* Wyrównanie elementów do środka w pionie */
    justify-content: space-between; /* Wyrzucenie ceny na lewo, a koszyka na prawo */
    gap: 20px;
    margin-top: 15px; /* Odstęp od opisu wariantu */
    padding-top: 15px;
    border-top: 1px solid #eaeaea; /* Delikatna linia oddzielająca sekcję zakupu - opcjonalne */
}


/* Lewa strona: Cena */
.sekcja-ceny-wariantu {
    flex: 1; /* Pozwala cenie zająć wolną przestrzeń */
    min-width: 150px;
}
.sekcja-ceny-wariantu .price {
	margin-bottom: 0;
}

.sekcja-ceny-wariantu .price .price-integer {
    font-size: 24px !important;
    color: #062c07 !important;
    font-weight: 500; /* Pogrubienie dla lepszego efektu */
}

/* Grosze i separator (przecinek) */
.sekcja-ceny-wariantu .price .price-fraction,
.sekcja-ceny-wariantu .price .price-decimal-separator {
    font-size: 24px !important;
    color: #062c07 !important;
    font-weight: 500;
}
/* Prawa strona: Ilość i przycisk - resetujemy style z WooCommerce */
.wiersz-cena-koszyk .woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: center;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Wyrównanie wewnątrz prawej strony (odstęp między polem ilości a przyciskiem) */
.wiersz-cena-koszyk .woocommerce-variation-add-to-cart .quantity {
    margin-right: 5px !important;
    margin-bottom: 0 !important;
}
.wiersz-cena-koszyk .woocommerce-variation-add-to-cart .input-text.qty {
	padding-top:28px !important;
	padding-bottom:28px !important;
	margin-top: -7px !important;
}
.entry-summary .input-text.qty {
	padding-top:28px !important;
	padding-bottom:28px !important;
	margin-top: -7px !important;
}

.variations_form.cart {
	border:1px solid #c9c9c9;
	padding: 25px 35px;
	border-radius: 25px;
}
@media only screen and (max-width : 768px) {
	.variations_form.cart {
		padding: 15px 25px;
	}
	.variations th.label {
		display: none;
	}
}
.woocommerce-variation-add-to-cart {
	display: flex !important;
	align-items: center !important;
	flex-wrap: nowrap !important;
}
.single_add_to_cart_button {
	padding-top:20px !important;
	padding-bottom:20px !important;
}
/* 1. BIAŁE RAMKI I ZAOKRĄGLENIA DLA WSZYSTKICH PÓL */
input[type="text"],
input[type="number"],
select,
textarea,
.select2-container .select2-selection--single {
    border: 1px solid #c9c9c9 !important;
    border-radius: 15px !important;
    background-color: #ffffff; /* Możesz zmienić na transparent, jeśli tło strony jest jasne */
    padding: 8px 15px !important;
    outline: none;
}

/* 2. UKŁAD W JEDNEJ LINII (CENA + KOSZYK) */
.wiersz-cena-koszyk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.2); /* Delikatna linia separatora */
}

/* Cena na lewo */
.sekcja-ceny-prosty, .sekcja-ceny-wariantu {
    flex: 1;
    min-width: 150px;
}

.wiersz-cena-koszyk .price {
    margin-bottom: 0 !important;
    display: block;
}

/* Formularz koszyka na prawo (dla produktów prostych) */
.wiersz-prosty form.cart {
    display: flex !important;
    align-items: center;
    margin-bottom: 0 !important;
}

/* Ilość i przycisk w jednej linii (dla wariantów) */
.wiersz-wariantowy .woocommerce-variation-add-to-cart {
    display: flex !important;
    align-items: center;
}

/* Odstępy między polem ilości a przyciskiem */
.wiersz-cena-koszyk .quantity {
    margin-right: 15px !important;
    margin-bottom: 0 !important;
}

/* Poprawka dla telefonów - jeśli się nie mieszczą, spadają pod siebie */
@media (max-width: 480px) {
    .wiersz-cena-koszyk {
        flex-direction: column;
        align-items: flex-start;
    }
    .wiersz-prosty form.cart {
        width: 100%;
        justify-content: space-between;
    }
}

.woocommerce-tabs ul.tabs {
	padding:0;
	margin:0;
	display: block;
	overflow: auto;
	margin-bottom: 30px;
}
.woocommerce-tabs ul.tabs li {
	list-style: none;
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	background-color: #fff;
	color:#062c07;
	font-weight: 500;
	border-radius: 15px;
	padding: 20px 25px;
	border:1px solid #c9c9c9;
}
@media only screen and (max-width : 768px) {
	.woocommerce-tabs ul.tabs li a {
		padding: 15px 20px;
	}
}
.woocommerce-tabs ul.tabs li.active a {
	background-color: #062c07;
	color:#fff;
	border:1px solid #062c07;
}
.woocommerce-tabs ul.tabs li:hover a {
	background-color: #062c07;
	color:#fff;
	border:1px solid #062c07;
}
@media only screen and (max-width : 1550px) {
	#wpmenucartli {
		position: fixed;
		bottom:15px;
		right:55px;
	}
}
#background-video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 100%;
}
.wc-block-cart-item__product .wc-block-components-quantity-selector {
	border:0 !important;
}
.wc-block-cart-item__product .wc-block-components-quantity-selector input {
	background-color: #fff;
}
.contacts img {
	max-width: 200px;
}
.woocommerce-pagination {
	margin-bottom: 50px;
}
.page-numbers {
	border:0 !important;
}
.page-numbers > li {
	border:0 !important;
	margin-left: 2px !important;
	margin-right: 2px !important;
	display: inline-block;
}
span.page-numbers,
a.page-numbers  {
	display: inline-block;
	background-color: #062c07 !important;
	color:#fff !important;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	border:0 !important;
}

.page-numbers.current,
a.page-numbers:hover {
	background-color: #2fbe2a !important;
	color:#000;
}
/* ============================================= */
/* 6. Responsive fixes                           */
/* ============================================= */

@media only screen and (max-width : 1150px) {
	.slider-container .slider-controls {
		margin: 0;
	    padding: 0;
	    list-style: none;
	    position: absolute;   
	    top: 50%;
	    transform: translatey(-50%);
	    display: flex;
	    align-items: center;    
	    justify-content: space-between;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) { 

	.fixed-top.navbar-light .navbar-nav .nav-link {
		padding-top:8px;
		padding-bottom:8px;
	}
	.navbar-dark .navbar-nav .nav-link {
		padding-top:10px;
		padding-bottom:10px;
	}
	.navbar {
		padding-top:8px !important;
		padding-bottom:8px !important;
	}
	.navbar-brand img {
		width: 160px; 
		height: auto;
	}

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	/* WP image float fix */
	figure.alignleft, img.alignleft, figure.alignright, img.alignright {
		float:none;
	}
	/* /WP image float fix */

} 

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}


/* Height */
@media only screen and (max-height : 730px) {
}