/** Fonts
 * 
 * ibm-plex-sans
 *  300 light
 *  400 regular
 *  700 semibold
 *  800 bold
 * 
 * degular-display
 *  600 semibold
 *  700 bold
 */



/* === Variables === */

:root {
    --primary-green: rgba(140,210,60,1.00);
	--dark-green: rgba(48,171,30,1.00);
	--darker-green: rgba(58,135,33,1.00);
	--light-green: rgba(140,210,60,0.20);
	
	--dark-blue: rgba(33,33,75,1.00);
	--dark-blue-hover: #9090a5;

	--light-grey: #444;	
	--dark-grey: #333;
	
	--primary-red: rgba(226,0,0,1.00);
	--light-red: rgba(226,0,0,0.08);
	
	--light-black: #1F1F1F;
	
	--primary-yellow: rgba(255,224,25,1.00);
	--light-yellow: rgba(255,224,25,0.30);
	
	--primary-dark-green: rgba(48,171,30,1.00);
	--light-dark-green: rgba(48,171,30,0.20);
	
	--body-color: rgba(247,249,246,1.00);
	
	--std-border-radius: 4px;
	--std-border-color: #ddd;
}



/* === Global Styles === */

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-stretch:normal;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: var(--body-color);
	color: var(--dark-blue);

	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1, h2, h3, h4, p {
	font-family: 'degular-display', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-stretch:normal;
	font-size: 22px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: var(--dark-blue);
	
	padding: 0;
	margin: 0;
	clear: both;
}

h1 {
	font-size: 30px;
	margin: 6px 0 20px 0;
}

h1.category {
	margin-top: 14px;
}

h1.space {
	margin-top: 30px;
	margin-bottom: 60px;
}

h1.large {
	font-size: 36px;
}

h2 {
	font-size: 22px;
	margin: 16px 0 8px 0;
}

h2:first-child {
	margin-top: 0;
}

h1, h2, h3 {
	letter-spacing: 1px;
}

h2.index-subheader {
	font-size: 30px;
	margin: 20px 0 0 5px;
}

h2.index-subheader.areas {
	margin: 20px 0 20px 5px;
}

h1.tight {
	margin-bottom: 10px;
	padding: 0;
}

h1.noSpacing {
	margin: 0;
	padding: 0;
}

h3 {
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin: 10px 0 0 0;
	letter-spacing: 0;
}

h3.large {
	font-size: 18px;
	margin: 20px 0 10px 0;
}

h3.header {
	font-family: 'degular-display', sans-serif;
	font-weight: 600;
	font-size: 24px;
	margin: 6px 0 10px 0;
	padding: 0;
}

h4 {
	font-size: 18px;
	padding: 0;
	margin: 0;
}

p {
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 12px;
}

p.lead {
	font-size: 1.4em;
	margin-bottom: 2em;
}

b,
.bold {
	font-weight: 700;
}

.black {
	font-weight: 800;
}


a:link, a:visited, a:active {
	color: var(--dark-blue);
	font-weight: 700;
}

strong, b {
	font-weight: 700;
}

a:hover {
	/*color: var(--dark-green);*/
	text-decoration: none;
}

input, textarea {
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 400;
}

ul.numbered li h2 {
	margin-top: 50px;
}

ul.numbered li:first-child h2 {
	margin-top: 0;
}

ul.numbered {
	counter-reset: list-counter; /* Initialize the counter */
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

ul.numbered > li {
    counter-increment: list-counter; /* Increment the counter for each li */
    margin-bottom: 20px;
    position: relative; /* Position relative to allow absolute positioning of the counter */
    padding-left: 40px; /* Add padding to leave space for the counter */
}

ul.numbered > li::before {
    content: counter(list-counter) ". "; /* Add the counter value before each li */
    font-weight: bold;
    position: absolute; /* Position absolute to place it outside the padding area */
    left: 0; /* Align to the left */
    top: 0px; /* Align to the top */
    font-size: 1.2em;
}

ul.numbered li ul {
	list-style-type: disc;
	margin: 0;
	padding: 5px 0 0 30px;
}

ul.numbered li ul li {
	padding-bottom: 10px;
}

ul.numbered li ul li:last-child {
	padding-bottom: 0;
}

a img {
    display: block; /* Ensures the image behaves like a block element */
    max-width: 100%; /* Prevents the image from exceeding its container */
    height: auto; /* Maintains the aspect ratio */
    border: 0; /* Removes any default border on links */
    padding: 0; /* Removes default padding, if any */
    margin: 0; /* Resets margins */
}


#mode-selection-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.mode-selection-popup-background {
	background: white;
	padding: 20px;
	border-radius: 5px;
	max-width: 400px;
	text-align: center;
}

.mode-selection-popup-background .link {
	display: block;
	margin-bottom: 10px;
	padding: 10px;

	color: white;
	text-decoration: none;
	border-radius: var(--std-border-radius);
}

.mode-selection-popup-background .link.b2b {
	background: var(--dark-green);
}

.mode-selection-popup-background .link.b2c {
	background: var(--primary-green);
}


#bear-1 {
    position: relative;
    width: 100%; /* Full width of its parent */
    padding-top: 85.77%; /* Maintain the aspect ratio (567 / 661 * 100) */
    background-image: url('/assets/pics/up-bjorn-1.png'); /* Specify the image path */
    background-size: 60%; /* Scale the image down to 60% of its original size */
    background-position: bottom; /* Align the image to the bottom */
    background-repeat: no-repeat; /* Prevent repeating */
}

#welcome p {
	position: relative;
}

#bear-2 {
	display: none;
	width: 200px;
	height: auto;
	float: right;
	margin: 0;
	
}

.highlight {
	color: #fff;
	padding: 2px 6px 4px 6px;
	border-radius: var(--std-border-radius);
	font-weight: 700;
}

.highlight.red {
	background-color: var(--primary-red);
}

.highlight.green {
	background-color: var(--dark-green);
}

.product-info .highlight {
	margin-left: 10px;
}

.product-info .highlight.nospace {
	margin-left: 0;
}

.lazyload {
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
    will-change: opacity, filter;
}

.lazyloaded {
    animation: lazyFadeIn 0.2s ease-in-out forwards; /* Fallback animation */
}

@keyframes lazyFadeIn {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}





.container {
	width: 100%;
	padding: 0; margin: 0;
}

.container.green {
	background: var(--primary-green);
}

/* Sticky header styles */
#sticky-header {
    position: static;
    transition: opacity 0.5s ease;
    z-index: 999; /* Ensure it appears above other elements */
}

#sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
}

/* Slide-down animation */
#sticky-header.slide-down {
    animation: slideDown 0.5s ease forwards;
}

/* Keyframes for slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.container.grey {
	background: #f0f0f0;
	padding: 20px 0;
	margin: 40px 0;
}

.container.top-margin,
.grid-container.top-margin {
	margin: 20px 0;
}

.container.dark-green {
	background: var(--dark-green);
}

.container.dark-grey {
	background: var(--dark-grey);
}

.container.light-black {
	background: var(--light-black);
}

.container.light-grey {
	background: var(--light-grey);
	padding: 26px 0;
}

.container.border {
	border-bottom: 1px solid #eee;
}



/* === Grid System === */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Creates 12 equal columns */
    gap: 0.5rem; /* Adjust the gap between columns and rows as needed */
	flex: 1; /* Allow the grid container to grow and fill the available space */
	position: relative;
}

/* Grid item classes for column spans 1 to 12 */
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

.grid-item {
    display: flex;
    align-items: stretch;
    background-color: none;
    padding: 1rem;
    text-align: center;
}

/* Responsive design adjustments */
/*
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(6, 1fr); /* Adjust to 6 columns on smaller screens */
    }
}
*/

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns on very small screens */
    }
}

@media (max-width: 1024px) {
    .col-3.product-box {
        grid-column: span 4; /* Adjust to span 6 columns on smaller screens */
    }
}

@media (max-width: 768px) {
    .col-3.product-box {
        grid-column: span 6; /* Adjust to span 6 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .col-3.product-box {
        grid-column: span 12; /* Adjust to span 6 columns on smaller screens */
    }
}

@media (max-width: 800px) {
    #main-menu-container {
        display: none;
    }
	
	#slider {
		grid-column: span 12;
	}
}

@media (max-width: 1200px) {
    #welcome {
        grid-column: span 6;
    }
	
	#bear-1 {
		grid-column: span 6;
		background-size: 70%;
	}
}

@media (max-width: 1000px) {
	#bear-1 {
		background-size: 100%;
	}
}

@media (max-width: 780px) {
    #welcome {
        grid-column: span 12;
    }
	
	#bear-1 {
		display: none;
	}
	#bear-2 {
		display: block;
	}
	#category-faq,
	#category-seo-text {
		grid-column: span 12;
	}
}

/* Align and center grid items */
.middle {
	display: flex;
	align-items: center;
}

.content .grid-container {
	/*gap: 30px;*/
	gap: 20px;
}

@media (max-width: 780px) {
	.content .grid-container {
		gap: 10px;
	}
}

.content .grid-container.tight {
	gap: 5px;
	font-size: 16px;
}

.content .grid-item {
	/*border: 1px solid #ddd;*/
	padding: 8px 16px;
	flex-direction: column;
	text-align: left;
	border-radius: var(--std-border-radius);
}

.content .grid-item.no-border {
	border: none;
	padding: 0;
}



/* === Header, Navigation & Footer === */
.header-container .grid-container {
	gap: 0;
}

.header-container .grid-container .grid-item {
	padding: 0;
}

.header,
.sub-header,
.header-usp,
.content {
	max-width: 1440px;
	margin: auto;
	padding: 0 30px; /* Global page margin. */
}

.header, .sub-header, .header-usp {
	display: flex;
	align-items: center;
	height: 30px;
}

.sub-header {
	color: #fff;
	height: 90px;
}

.sub-header .col-3:first-child {
	padding: 0;
	align-items: center;
}

.sub-header img.sub-header-logo {
	width: 276px;
	height: auto;
}

.sub-header .ph {
	font-size: 30px;
}

.sub-header .menu-toggle-btn .ph {
	font-size: 30px;
}

.sub-header .col-4,
.sub-header .col-8 {
	display: flex;
	align-items: center;
}

.mobile-search {
	display: none;
	padding: 0 30px 8px 30px;
	position: relative;
	top: -4px;
}

.mobile-search .search {
	height: 36px;
}

.mobile-search .search input {
	padding-left: 12px;
}

.mobile-search .search .ph, 
.search .ph {
	position: absolute;
	top: 6px;
	right: 4px;
	padding: 6px;
	color: var(--dark-green);
	font-size: 1.6em;
	cursor: pointer;
}

.mobile-search .search .ph {
	top: 3px;
	right: 3px;
	font-size: 1.4em;
}

.sub-header img.sub-header-logo {
	margin-left: 16px;
	padding-top: 1px
}

.search-container {
	text-align: left;
	border-radius: var(--std-border-radius);
	display: flex;
	align-items: center;
	width: 100%;
}

.search {
	background-color: #fff;
	width: 100%;
	height: 46px;
	display: flex;
	align-items: center;
	border-radius: var(--std-border-radius);
	position: relative;
}

.search input {
	padding-left: 16px;
	border: none;
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-stretch:normal;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: var(--dark-blue);
	background-color: #fff;
	width: 100%;
}

.search input:focus {
	outline: none;
	background: #fff;
}

.search input::placeholder {
	color: var(--dark-green);
	opacity: 0.6;
}

.header-usp {
	color: #fff;
	padding: 6px 30px;
}

.header-usp .grid-item {
	padding: 0;
	align-items: center;
}

.header-usp .grid-item {
	font-weight: 400;
	justify-content: flex-start;
}

.header-usp .grid-item:nth-child(2) {
	justify-content: center;
}

.header ul,
.header-usp ul {
	display: flex;
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.header ul {
	height: 100%;
	
}

.header ul li {
	align-content: center;
	margin: 0 0 0 20px;
	padding: 0;
}

/*
.header ul li:nth-child(2) {
	color: #8C8C8C;
	background-color: #ddd;
}
*/

.header ul li a {
	font-weight: 400;
	text-decoration: none;
	color: var(--dark-blue);
}

.header ul li a:hover {
	text-decoration: underline;
	color: var(--dark-blue);
}

.header ul li.mode {
	align-content: center;
	margin: 0;
	padding: 0 12px;
	background-color: var(--primary-green);
}

.header ul li.mode.inactive {
	background-color: var(--light-green);
}

.header ul li.mode a {
	color: #fff;
	font-weight: 700;
}

.header ul li.mode.inactive a {
	color: var(--dark-green);
}

.header-usp ul li {
	margin-right: 20px;
}

.header-usp ul li:last-child {
	margin-right: 0;
}

.header-usp ul li .ph {
	margin-right: 3px;
}

.header-usp span.ph.ph-list {
	margin-right: 8px;
	font-size: 1.4em;
	position: relative;
	top: 1px;
}

button.checkout {
	height: 46px;
	border: 2px solid var(--dark-green);
	padding: 0 8px;
	position: relative;
	
	background-color: var(--dark-green);
	border-radius: var(--std-border-radius);
}

button.checkout:hover {
    background-color: transparent;
	color: var(--dark-green);
}

button.checkout:last-child {
	margin-left: 16px;
}

button.standard {
	padding: 4px 8px 8px 8px;
}

.cart-quantity-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: yellow;
    color: var(--dark-blue);
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden; /* Initially hidden */
}

button.menu-toggle-btn {
    border: 2px solid var(--dark-green);
    cursor: pointer;
	height: 46px;
	padding: 0 8px;
	
	background-color: var(--dark-green);
	border-radius: var(--std-border-radius);
	
	z-index: 2;
	
	/*display: flex;
	align-items: center;
	justify-content: center;*/
}

button.menu-toggle-btn:hover {
    background-color: transparent;
	color: var(--dark-green);
}

/* Media queries for .sub-header */
@media (max-width: 1200px) {
	.sub-header .grid-item.col-4 {
		grid-column: span 5;
	}
	.sub-header .grid-item.col-8 {
		grid-column: span 7;
	}
}

@media (max-width: 960px) {
	.sub-header .grid-item.col-4 {
		grid-column: span 6;
	}
	.sub-header .grid-item.col-8 {
		grid-column: span 6;
	}
}

@media (max-width: 800px) {
	.sub-header .grid-item.col-4 {
		grid-column: span 10;
	}
	.sub-header .grid-item.col-8 {
		grid-column: span 2;
		justify-content: flex-end;
	}
	.desktop-search .search-container {
		display: none;
	}
	.mobile-search {
		display: block;
	}
}

@media (max-width: 600px) {
	.mobile-search {
		padding: 0 20px 8px 20px;
	}
}

@media (max-width: 446px) {
	.sub-header {
		height: 70px;
	}
	.sub-header img.sub-header-logo {
		width: 230px;
		height: auto;
		margin-left: 8px;
	}
	.sub-header .ph,
	.sub-header .menu-toggle-btn .ph {
		font-size: 26px;
	}
	button.checkout,
	button.menu-toggle-btn {
		height: 40px;
		padding: 0 6px;
	}
}

@media (max-width: 340px) {
	.header ul li.hidable {
		display: none;
	}
}

/* Media queries for .sub-header */
/*
@media (max-width: 1160px) {
    .logo-col {
        grid-column: span 4;
    }
	
    .search-col {
        grid-column: span 4;
    }
	
    .cart-col {
        grid-column: span 4;
		display: flex;
		justify-content: flex-end;
    }
}

@media (max-width: 880px) {
    .logo-col {
		display: flex;
        grid-column: span 12;
    	justify-content: center;
    	align-items: center;
		height: 55px;
    }
	
    .logo-col img {
		width: 90%;
		max-width: 220px;
		height: auto;
		position: relative;
		top: 6px;
    }
	
    .search-col {
        grid-column: span 6;
		height: 55px;
		padding: 6px 6px 10px 0;
    }
	
    .cart-col {
        grid-column: span 6;
		height: 55px;
		padding: 6px 0 6px 6px;
    }
	
	.sub-header .grid-container {
		gap: 0;
	}
}
*/

@media (max-width: 600px) {
	.header {
		padding: 0 20px;
		font-size: 0.9em;
		height: 100%;
	}
	
	.header ul {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.header ul li {
		height: 28px;
	}
	
	.header ul li a {
		position: relative;
		top: 4px;
	}
	
	.sub-header {
		padding: 0 20px;
	}
	
	.header-usp {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.content {
		padding: 0 10px; /* Global page margin. */
	}
	
    .cart-col button.checkout:first-child {
        width: 100%;
    }
	
    .cart-col button.checkout:last-child {
        display: none;
    }
	.menu {
		width: 100%;
	}
	
	.content .grid-container {
		gap: 10px;
	}
}

@media (max-width: 560px) {
	.header-usp {
		display: none;
	}
}


.white-section {
	background-color: #fff;
	padding: 10px 20px !important;
	margin: 0
}

.light-green-section {
	background-color: var(--light-green);
	padding: 10px 20px !important;
	margin: 0
}



.breadcrumbs {
	font-size: 12px;
	margin: 0 0 3px 0;
}

.breadcrumbs a {
	text-decoration: none;
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

.breadcrumbs a:first-child:hover {
	text-decoration: none;
}

.breadcrumbs i.ph {
	position: relative;
	top: 1px;
}



ul.childCategories {
    list-style: none; /* Remove bullets */
    padding: 0; /* Remove default padding */
    margin: 20px 0 6px 0; /* Remove default margin */
    display: flex; /* Arrange items in a row */
	flex-wrap: wrap;
    gap: 10px; /* Add space between items */
	justify-content: flex-start;
	max-width: 100%;
}

ul.childCategories li {
    display: inline-block; /* Ensure items are inline */
	margin-bottom: 10px;
}

ul.childCategories li .ph {
	color: var(--dark-green);
	border: 2px solid var(--dark-green);
	padding: 7px 10px;
	border-radius: var(--std-border-radius);
	position: relative;
	top: 1px;
	
}

ul.childCategories li.filter {
	border: 2px solid var(--dark-green);
	padding: 5px 10px;
	border-radius: var(--std-border-radius);
	color: var(--dark-green);
	position: relative;
	top: -4px;
}

/*
ul.childCategories li.filter i.ph {
	padding: 10px 0;
	color: red;
}
*/

ul.childCategories a {
    text-decoration: none;
    color: #fff;
	background-color: var(--dark-green);
    padding: 2px 10px 4px 10px;
    border-radius: var(--std-border-radius);
	border: 2px solid var(--dark-green);
}

ul.childCategories a:hover {
    background-color: transparent;
	color: var(--dark-green);
}

.swiper-container {
	background-color: #fff;
	border: none !important;
}


.swiper-slide p {
	padding: 0;
	margin: 0;
	font-size: 12px;
}

p.price {
	font-size: 32px;
	color: var(--primary-red);
	font-weight: 700;
	margin: 0 0 4px 0;
}

p.price span.regular {
	color: #bbb;
	text-decoration: line-through;
	margin-right: 8px;
}

.swiper-slide h3,
.product-box h3,
#area-slider {
	font-size: 16px;
}

.swiper-slide a,
.product-box a {
	text-decoration: none;
	color: var(--dark-blue);
}

.swiper-slide a:hover,
.product-box a:hover {
	text-decoration: underline;
}

.swiper-slide img {
	border-radius: var(--std-border-radius);
}

.discount {
	position: absolute;
	top: 32px;
	left: 32px;
	padding: 0px 10px 4px 10px;
	background-color: var(--primary-red);
	color: #fff;
	border-radius: var(--std-border-radius);
	z-index: 1;
}

.discount .black {
	font-size: 24px;
}

.discount p.small {
	font-size: 12px;
	color: #fff;
	font-weight: 400;
}

.product-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space between items */
    height: 100%; /* Ensure full height for alignment */
    padding: 10px; /* Optional for spacing */
    box-sizing: border-box; /* Include padding in dimensions */
	position: relative;
	background-color: #fff;
}

.product-box:hover {
	box-shadow: 0 0 16px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 0 16px rgba(0,0,0,0.15);
	-moz-box-shadow: 0 0 16px rgba(0,0,0,0.15);
}

.product-box .discount {
	top: 8px;
	left: 8px;
}

.product-box p.small {
	font-size: 12px;
}

.product-box .discount p.small {
	margin-bottom: 0;
}

.product-box p.category {
	margin: 0 0 0 0;
	font-size: 13px;
}

.product-box span.description {
	margin: 14px 0 20px 0;
}

.product-box span.description p,
#areas-slider p {
	font-size: 13px;
}

#areas-slider p {
	font-size: 14px;
	margin-top: 6px;
}

.product-box span.description a,
#areas-slider p a {
	font-weight: 400;
	color: var(--dark-blue);
}

.product-box img {
	width: 100%;
	height: auto;
	margin-top: 8px;
	border-radius: var(--std-border-radius);
}

.product-box ul {
	margin: 0 0 16px 0;
	padding: 0 0 0 16px;
}

.product-box ul li::marker {
	font-size: 0.9em;
}

.bottom-align {
    margin-top: auto; /* Push these items to the bottom */
}

a.button-read-more,
.swiper-slide a.button-read-more {
	display: inline-block;
	width: auto;
	padding: 4px 8px;
	margin: 0 0 8px 0;
	color: #fff;
	background-color: var(--dark-green);
	border: 2px solid var(--dark-green);
	border-radius: var(--std-border-radius);
}

.swiper-slide a.button-read-more {
	margin: 12px 0 0 0;
}

a.button-read-more:hover,
.swiper-slide a.button-read-more:hover {
	color: var(--dark-green);
	background-color: transparent;
	text-decoration: none;
}




/* Center the button */
.load-more-button-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically (if needed) */
    margin: 20px 0; /* Add spacing around the button */
}

/* Style the button */
#load-more, form .submit-btn {
    display: inline-block; /* Prevent full-width stretch */
    text-align: center; /* Center the text */
    white-space: nowrap; /* Prevent text wrapping */
    padding: 10px 16px 10px 16px; /* Adjust padding for better appearance */
    background-color: var(--dark-green); /* Use your green color variable */
    color: #fff;
    font-weight: 700;
    border-radius: var(--std-border-radius); /* Match your border style */
    border: none; /* Remove default border */
    cursor: pointer;
    font-size: 16px; /* Adjust font size as needed */
	border: 2px solid var(--dark-green);
	margin: 20px 0;
	width: 172px;
	height: 40px;
}

#load-more:hover, form .submit-btn:hover {
    background-color: transparent;
    color: var(--dark-green);
}

/*
#load-more .ph {
	font-size: 20px;
	position: relative;
	top: 4px;
	left: 3px;
}
*/

.spinner {
	width: 20px;
	height: 20px;
	border: 3px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	color: white;
	position: relative;
	top: -2px;
}

#load-more:hover .spinner {
    border-color: var(--dark-green);
    border-bottom-color: transparent;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}






.product-images {
	margin-top: 10px;
}


.product-images p {
	margin-bottom: 28px;
	/*
	position: absolute;
	bottom: 12px;
	left: 8px;
	color: white;
	background-color: rgba(0,0,0,0.50);
	padding: 4px 8px 6px 8px;
	border-radius: var(--std-border-radius);
	max-width: calc(100% - 17px);
*/
}

.product-info {
	position: relative;
	padding: 7px 0 7px 0;
}

.product-info .on-sale {
	background-color: var(--primary-red);
	color: #fff;
	padding: 4px 8px;
	border-radius: var(--std-border-radius);
	font-weight: 700;
	margin-bottom: 18px;
}

.product-info .discount {
	left: auto;
	right: 0px;
	top: 10px;
	padding-bottom: 0;
	font-weight: 
}

.product-info h1 {
	margin: 0 0 20px 0;
	line-height: 38px;
}

.product-info p.info {
	margin: 0;
}

.product-info p.info.vat {
	margin: 0 0 20px 0;
}

.product-info img.payment-options {
	width: 100%;
	height: auto;
	margin: 0 0 30px 0;
}

.product-info img.payment-options.b2c {
	max-width: 404px;
}

.product-info img.payment-options.b2b {
	max-width: 121px;
}


.product-info p.price {
	margin: 30px 0 0 0;
}

.add-to-cart-quantity,
.add-to-cart-button {
	border: 1px solid var(--primary-green);
	padding: 0;
	display: inline-block;
	border-radius: calc(var(--std-border-radius) + 2px);
	background-color: var(--primary-green);
}

.add-to-cart-button {
	border: 1px solid transparent;
	border-radius: calc(var(--std-border-radius) + 2px);
	background-color: transparent;
}

.add-to-cart-quantity-content {
	display: flex;
}

.add-to-cart-quantity-content .dark {
	background-color: var(--dark-green);
	padding: 10px;
	border: 3px solid var(--primary-green);
	border-radius: calc(var(--std-border-radius) + 3px);
}

.add-to-cart-quantity-content .dark:hover {
	cursor: pointer;
	background-color: #fff;
}

.add-to-cart-quantity-content .dark:hover .ph {
	color: var(--dark-green);
}

/*.add-to-cart select,*/
.add-to-cart-quantity input { 
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-stretch:normal;
	font-size: 16px;
	line-height: 16px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: var(--primary-blue);
}

/*
.add-to-cart select {
	width: 100%;
	border: 2px solid var(--primary-green);
	padding: 13px;
	border-radius: var(--std-border-radius);
	margin: 0 0 16px 0;
}

.add-to-cart select:hover {
	cursor: pointer;
}

.add-to-cart select:focus {
	outline: none;
}

*/

.add-to-cart-quantity input {
	font-weight: 700;
	width: 68px;
	border: none;
	text-align: center;
	background: transparent;
	color: #fff;
	font-size: 20px;
	padding: 0;
	margin: 0;
	position: relative;
	top: -1px;
}

.add-to-cart-quantity input:focus {
	outline: none;
}

.add-to-cart-quantity .ph {
	font-size: 20px;
	backround-color: var(--dark-green);
	color: #fff;
	padding: 0;
	margin: 0;
	position: relative;
	top: 2px;
}

.add-to-cart-button button {
	font-size: 16px;
	border: 2px solid var(--dark-green);
	backround-color: var(--dark-green);
	color: #fff;
	padding: 15px 20px 15px 20px;
	margin: 0 0 0 10px;
}

.add-to-cart-button button:hover {
	background-color: transparent;
	color: var(--dark-green);
}


/* Style the wrapper container */
.select-wrapper {
    position: relative;
    width: 100%;
    margin: 0 0 16px 0;
    border: 2px solid var(--primary-green);
    border-radius: var(--std-border-radius);
    background-color: #fff;
}

/* Style the select element */
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0px 35px 0px 16px; /* Adjust padding for vertical alignment */
    border: none;
    border-radius: var(--std-border-radius);
    outline: none;
    background-color: transparent;
    color: var(--primary-blue);
    cursor: pointer;
	font-family: 'ibm-plex-sans', sans-serif;
    font-size: 16px;
    line-height: 3.2; /* Ensures no extra spacing */
    height: 54px; /* Fixed height for consistent alignment */
    display: inline-block; /* Ensures proper alignment */
    box-sizing: border-box; /* Includes padding in height */
}

/* Add custom arrow */
.select-wrapper::after {
    content: '\25BC'; /* Unicode for down arrow */
    font-size: 14px;
    color: #222;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
	color: var(--dark-green);
}

/* Change arrow color when invalid */
.select-wrapper.invalid-select::after {
    color: var(--primary-red); /* Highlight the arrow in red when invalid */
}

/* Hover effect */
.select-wrapper:hover {
    border-color: var(--dark-green);
}

/* Style for invalid selection */
.invalid-select {
	border: 2px solid var(--primary-red);
	color: var(--primary-red);
}

.invalid-select:hover {
	border: 2px solid var(--primary-red);
	color: var(--primary-red);
}

#qty-minus:active,
#qty-plus:active {
    transform: scale(0.9); /* Shrinks the element slightly */

}


.product-description-container {
    border: 1px solid var(--light-green);
    border-radius: var(--std-border-radius);
    overflow: hidden;
	margin-top: 50px;
}

.product-description-container h2 a {
	font-weight: 600;
}

.product-description-header {
    background-color: var(--light-green);
    color: var(--dark-blue);
    padding: 10px 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
	
	border-bottom: 1px solid rgba(140,210,60,0.25);
}

.product-description-header:last-of-type {
	border-bottom: none;
}



.product-description-toggle {
    font-size: 18px;
}

.product-description-content {
    max-height: 0; /* Hidden by default */
    overflow: hidden;
    transition: max-height 0.1s ease, padding 0.1s ease; /* Smooth slide effect */
    padding: 0 15px; /* Hidden padding to maintain smooth transitions */
}

.product-description-content.visible {
    max-height: 500px; /* Adjust this value to the maximum height of your content */
    padding: 15px; /* Add padding when visible */
}

@keyframes spin-clockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

@keyframes spin-counterclockwise {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.product-description-toggle i {
    transition: transform 0.3s ease;
    display: inline-block; /* Ensure the icon behaves like a block for rotation */
}

.product-description-toggle i.spin-clockwise {
    animation: spin-clockwise 0.3s forwards;
}

.product-description-toggle i.spin-counterclockwise {
    animation: spin-counterclockwise 0.3s forwards;
}

.tip {
	background-color: var(--light-green);
	padding: 8px 12px 12px 12px;
	border-radius: var(--std-border-radius);
	border-left: 3px solid var(--primary-green);
	margin: 20px 0;
}

ul.downloads {
	margin-top: 0;
}


@media (max-width: 932px) {
	#product-images,
	#product-info {
		grid-column: span 12;
	}
}








.footer-space {
	margin-top: 100px;
}

.footer {
    padding: 30px 0 52px 0;
}

.footer h3,
.footer p,
.footer ul {
    color: #999;
    font-size: 1em;
    font-weight: 400;
    margin: 0;
}

.footer h3 {
    font-size: 1.2em;
    font-weight: 400;
    color: #ddd;
    padding: 20px 0 0;
}

.footer h3.large {
    font-size: 1.4em;
}

.footer h3.xl {
    font-size: 2em;
    margin-bottom: 10px;
}

.footer p {
    padding-top: 3px;
}

.footer p a,
.footer ul li a {
	font-weight: 400;
    color: #999;
    text-decoration: none;
}

.footer p a {
	text-decoration: underline;
}

.footer p a:hover {
	color: #bbb;
}
.footer ul li a:hover {
    color: #bbb;
    text-decoration: underline;
}

.footer ul {
    list-style-type: none;
    padding: 0;
}

.footer ul li {
    padding: 3px 0;
}

.footer .grid-item.no-border.col-6 {
    padding-right: 100px;
}

.footer p .light {
    color: #ddd;
}

.light-black .footer p {
	font-size: 1em;
	opacity: 0.6;
}

.light-black .footer img {
	max-width: 460px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	opacity: 0.5;
}

.usp-container {
    display: flex; /* Enable Flexbox for horizontal alignment */
    justify-content: space-between; /* Evenly distribute USPs */
    align-items: center; /* Vertically align icons and text */
}

.usp-item {
    display: flex;
    align-items: center;
	font-family: 'degular-Display', sans-serif;
	letter-spacing: 1px;
    font-size: 24px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.usp-item i {
    margin-right: 8px; /* Space between icon and text */
    color: rgba(255,255,255,0.85);
}

@media (max-width: 1280px) {
	.usp-item {
		font-size: 22px;
	}
}

@media (max-width: 1040px) {
	.usp-item {
		font-size: 20px;
	}
}

@media (max-width: 820px) {
	.usp-item {
		font-size: 18px;
	}
}

@media (max-width: 1080px) {
	#footer-about {
		grid-column: span 8;	
	}
	#footer-customer {
		grid-column: span 4;
	}
	#footer-customer-terms,
	#footer-customer-service {
		grid-column: span 12;
	}
	#footer-customer-service h3 {
		padding: 0;
	}
}



@media (max-width: 768px) {
    .usp-container {
        flex-direction: column; /* Stack the items vertically */
        align-items: flex-start; /* Align items to the left */
        gap: 10px; /* Add spacing between items */
    }
}

@media (max-width: 720px) {
	#footer-about {
		grid-column: span 12;	
	}
	#footer-customer {
		grid-column: span 12;
	}
	#footer-customer-terms,
	#footer-customer-service {
		grid-column: span 6;
	}
	#footer-customer-terms h3 {
		padding: 0;
	}
}

@media (max-width: 540px) {
	#footer-customer-terms,
	#footer-customer-service {
		grid-column: span 12;
	}
	#footer-customer-terms h3 {
		padding-top: 20px;
	}
	#footer-customer-service h3 {
		padding-top: 10px;
	}
	#footer-info {
		font-size: 0.8em;
	}
}

[class*="col-"].center {
	text-align: center;
}



/* === Button Styles === */

button {
    display: flex; /* Enable flexbox */
    align-items: center; /* Vertically center all children */
    justify-content: center; /* Horizontally center all children */
	border: none;
	font-family: 'ibm-plex-sans', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-stretch:normal;
	font-size: 16px;
	line-height: 16px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: #fff;
	background: var(--dark-green);
	border-radius: var(--std-border-radius);
}

button:hover {
	cursor: pointer;
}





/* === Menu === */
#menu-toggle-text {
	font-size: 0.9em;
	padding: 10px 0 0 10px;
	text-decoration: underline;
	cursor: pointer;
}

#main-menu a {
	color: var(--dark-blue);
	font-weight: 400;
	text-decoration: none;
}

#main-menu .grid-item {
	border-left: 6px solid var(--primary-green);
	border-radius: var(--std-border-radius);
}

#main-menu .grid-item:first-child {
	border-left: 6px solid var(--primary-red);
}

#main-menu .grid-item:nth-child(2) {
	border-left: 6px solid var(--primary-yellow);
}

#main-menu .grid-item:hover {
	background-color: var(--light-green);
}

#main-menu .grid-item:first-child:hover {
	/*background-color: var(--light-red);*/
	background-color: var(--primary-red);
}

#main-menu .grid-item:first-child:hover a {
    color: white;
}

#main-menu .grid-item:nth-child(2):hover {
	/*background-color: var(--light-yellow);*/
	background-color: var(--primary-yellow);
}

#main-menu .grid-item:hover a {
	text-decoration: none;
}

#main-menu .grid-item {
	/*border: 1px solid var(--std-border-color);*/
	background-color: #fff;
}

#main-menu .grid-item.no-border {
	border: none;
}

#main-menu .category-item {
    display: flex; /* Enable Flexbox for alignment */
    align-items: center; /* Vertically center content */
    justify-content: flex-start; /* Horizontally align content to the left */
    height: 100%; /* Ensure the div takes up the full height of its container */
    padding: 0; /* Add spacing between text and the left edge */
    text-align: left; /* Ensure left alignment for text */
}

#main-menu .category-item a {
    display: flex; /* Ensure the link takes up the space inside the flex container */
    width: 100%; /* Make the link cover the full width */
    text-decoration: none; /* Remove underline for links */
    color: var(--dark-blue); /* Ensure text color is consistent */
	height: 100%;
	align-items: center;
	padding-left: 14px;
}

span#menu-toggle-btn {
	/*height: 100%;*/
	/*cursor: pointer;*/
	/*display: inline-flex;*/
	/*align-items: center;*/
	
	/*padding: 6px 16px;*/
	
	

	/*width: 50px;*/
	/*height: 50px*/
}

span#menu-toggle-btn:hover .menu-text {
	text-decoration: underline;
}

#menu-container {
    position: absolute;
    width: 100%;
    overflow: hidden; /* Prevent container scroll */
}

.menu-checkbox {
    display: none;
}

/* Disable scrolling for the body when the menu is open */
.no-scroll {
    overflow: hidden;
    height: 100vh; /* Ensure the body doesn't scroll vertically */
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 350px;
	max-width: 100vw;
    height: 100%;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
    color: #fff;
    overflow: hidden; /* Prevent horizontal scrolling */
	/*box-shadow: 4px 0 8px rgba(0, 0, 0, 0.8);*/
	
    overflow-y: auto; /* Enable vertical scrolling within the menu */
}

.menu-bottom-space {
	margin: 0 0 140px 0;
}

.menu-checkbox:checked + .menu {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translateX(0);
}

.menu-header {
    background: var(--primary-green);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px; /* Fixed height */
    box-sizing: border-box; /* Include padding in height */
    z-index: 1002;
	font-size: 18px;
	position: relative;
}

#menu-title {
    cursor: pointer;
	color: var(--darker-green);
	color: #fff;
	font-weight: 700;
}

.menu .ph-caret-left {
	position: relative;
	top: 1px;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
	background-color: var(--dark-green);
	border-radius: var(--std-border-radius);
	padding: 0 4px;
	border: 2px solid var(--dark-green);
	
	position: relative;
	right: -6px;
}

.close-btn:hover {
	background-color: transparent;
	color: var(--dark-green);
}

.menu-content {
    position: relative;
    top: 0; /* Align correctly under the header */
    width: 100%;
    height: calc(100vh - 60px); /* Subtract height of the header */
    overflow-y: auto; /* Allow vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    padding: 0;
    margin: 0;
	box-sizing: border-box; /* Include padding and border in width and height */
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    background: #fff;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
    z-index: 1002;
	font-size: 16px;
}

.menu ul#rendered {
	padding-bottom: 140px;
}

.menu ul.category-menu {
    transform: translateX(0); /* Initially visible */
    opacity: 1;
    position: relative;
}


.menu ul.category-menu li {
	border-left: 8px solid var(--primary-green);
}

.menu ul.category-menu li.red {
	border-left: 8px solid var(--primary-red);
}

.menu ul.category-menu li.red:hover a {
	/*background-color: var(--light-red);*/
	background-color: var(--primary-red);
	color: white;
}

.menu ul.category-menu li.yellow {
	border-left: 8px solid var(--primary-yellow);
}

.menu ul.category-menu li.yellow:hover a {
	/*background-color: var(--light-yellow);*/
	background-color: var(--light-yellow);
}

.menu ul.category-menu li.dark-green {
	border-left: 8px solid var(--primary-dark-green);
}

.menu ul.category-menu li.dark-green:hover a {
	/*background-color: var(--light-yellow);*/
	background-color: var(--light-dark-green);
}

.menu ul.submenu {
    transform: translateX(100%); /* Start off-screen to the right */
    opacity: 0;
    display: none; /* Initially hidden */
    z-index: 1002;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%; /* Align to the parent menu */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu ul.submenu.visible {
    transform: translateX(0); /* Slide in to be visible */
    opacity: 1;
    display: block; /* Make it visible */
}

.menu ul.hidden {
    transform: translateX(-100%); /* Slide out to the left */
    opacity: 0;
    display: none; /* Hide the element */
}

.menu li {
    border-bottom: 1px solid rgba(140,210,60,0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
	color: var(--dark-blue);
}

.menu li a:hover {
	background: var(--light-green);
}

.menu a.menu-item {
    padding: 16px;
    color: var(--dark-blue);
    text-decoration: none;
    text-align: left;
    width: 100%;
	
    font-size: 16px;
	font-weight: 400;
}
		
.menu a.menu-item:hover {
    /*text-decoration: underline;*/
	/*font-weight: 700;*/
}

.menu li a:hover {
	/*color: #fff;*/
}

.submenu-toggle {
    display: inline-block;
    width: 16px;
    height: 100%;
	text-align: center;
	background: #fff;
    cursor: pointer;
	padding: 16px 28px;
	border-left: 1px solid rgba(140,210,60,0.25);
}

.submenu-toggle:hover {
	background: var(--light-green);
	/*color: #fff;*/
}

.submenu-toggle .ph {
	position: relative;
	margin-left: -9px;
	margin-top: 4px;
	top: 1px;
	font-size: 1.2em;
}

.arrow {
    /*filter: invert(1); /* Make the arrow white */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none; /* Initially hidden */
    /*transition: opacity 0.35s ease-in-out;*/
	transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.menu ul.general {
	background-color: var(--body-color);
}

.menu ul.general li,
.menu ul.headline li {
	padding: 8px 16px;
	font-size: 0.9em;
}

.menu ul.general {
	margin-bottom: 20px;
}

.menu ul.general a {
	font-weight: 400;
	text-decoration: none:
	color: var(--dark-blue);
}

.menu ul.general a:hover {
	text-decoration: underline;
	background: none;
	/*color: var(--dark-blue-hover);*/
}

.pre-menu {
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out;
    transform: translateX(0);
}





.faq-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(48,171,30,0.15);
}

h2.faq-header {
	padding-bottom: 20px;
}

h3.faq-question {
	font-family: 'degular-display', sans-serif;
	font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
	letter-spacing: 1px;
}

.faq-question:hover {
    color: var(--dark-blue);
}

.faq-toggle i {
    transition: transform 0.3s ease; /* Smooth rotation */
    display: inline-block; /* Ensures proper rotation behavior */
}

.faq-answer {
    margin-top: 10px;
    color: #333;
    font-size: 0.9rem;
    padding: 0 30px 0 10px;
}

.faq-answer ul {
    list-style: none; /* Removes the bullets */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes default margin */
}

.faq-answer ul li {
    margin-bottom: 8px; /* Optional: Add spacing between list items */
}






.specs-tabs {
    margin-bottom: 10px;
}

.specs-tab-headers {
    display: flex;
    flex-wrap: wrap; /* Allow tabs to wrap onto multiple rows */
    border-bottom: 1px solid var(--light-green);
    /*gap: 5px; Add spacing between tabs */
    justify-content: flex-start; /* Align tabs to the left */
}

.specs-tab-header {
    padding: 10px 14px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-top-left-radius: var(--std-border-radius);
	border-top-right-radius: var(--std-border-radius);
    background-color: #fff; /* Default background for unselected tabs */
    /*border: 1px solid var(--light-green); /* Border for individual tabs */
}

.specs-tab-header.active {
    background-color: var(--light-green);
    border-bottom: 2px solid var(--dark-green);
}

.specs-tab-content {
    position: relative;
    overflow: hidden; /* Ensures smooth transitions */
}

.product-description-container ul {
	padding: 10px 0px 20px 20px;
	margin: 0;
}

.specs-tab-panel {
    display: none; /* Default hidden */
    opacity: 0;
    position: relative;
    transition: opacity 0.3s ease-in-out;
    padding: 10px;
	padding-bottom: 20px;
}

.specs-tab-panel.active {
    display: block;
    opacity: 1;
}

.specs-tab-panel h4 {
    font-family: "ibm-plex-sans", sans-serif;
    font-size: 16px;
}




/* SHOPPING CART */
/* Cart Container */
#cart-container {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1001;
}

/* Cart Panel */
.cart {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 350px;
    max-width: 100vw;
    height: 100%;
    transform: translateX(100%); /* Initially hidden */
    transition: transform 0.3s ease-in-out;
    z-index: 1001;
}

/* Cart Header */
.cart-header {
    background: var(--primary-green);
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
	height: 50px;
}

#cart-title {
	/*color: var(--darker-green);*/
	/*color: #3A8721;*/
	color: #fff;
	font-weight: 700;
}

.close-cart-btn {
    font-size: 20px;
    cursor: pointer;
	background-color: var(--dark-green);
	border-radius: var(--std-border-radius);
	padding: 4px 4px;
	border: 2px solid var(--dark-green);
	
	position: relative;
	right: -6px;
}

.close-cart-btn:hover {
	background-color: transparent;
	color: var(--dark-green);
}

/* Cart Content */
.cart-content {
    padding: 15px;
    overflow-y: auto;
    height: calc(100% - 110px); /* Adjust for header and footer */
    box-sizing: border-box;
}

ul#cart-items {
	list-style-type: none;
	margin: 8px 0 0 0;
	padding: 0;
}

ul#cart-items li {
	margin: 0 0 20px 0;
	color: var(--dark-blue);
	font-size: 16px;
}

.cart-item-name {
	font-weight: 700;
}

.cart-item-name,
.cart-item-quantity,
.cart-item-sku,
.cart-item-shipping {
	font-size: 16px;
}

#checkout-cart .cart-item-name {
	font-size: 18px;
}

.cart-item-sku,
.cart-item-shipping {
	font-size: 14px;
}

.cart-item-quantity {
	font-size: 20px;
}

.cart-item-quantity .ph {
	font-size: 30px;
	color: rgba(0,0,0,0.25);
	position: relative;
	top: 6px;
	margin: 0 10px;
	display: inline-block;
}

.cart-item-quantity .ph:first-child {
	margin-left: 0;
}

.cart-item-quantity .ph:hover {
	cursor: pointer;
	color: var(--dark-blue);
}

.cart-item-quantity .ph:active {
    transform: scale(0.9);
}

.cart-x {
	margin-right: 14px;
}

/* Cart Footer */
.cart-footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
    padding: 15px;
    background: var(--light-green);
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
	font-size: 20px;
}

.cart-footer img.payment-options {
	display: block;
	margin: 0 auto 10px auto;
}

.cart-footer img.payment-options.b2c {
	width: 100%;
	height: auto;
}

.cart-footer img.payment-options.b2b {
	width: 120px;
	height: auto;
}

.cart-total,
.cart-vat,
.cart-shipping {
    flex: 1;                            /* Makes it take up remaining space */
    display: flex;
    justify-content: space-between;     /* Aligns label left, value right */
    margin-right: 1rem;                 /* Adds spacing between total and button */
}

#cart-total-label,
#cart-vat-label,
#cart-shipping-label {
    font-weight: 700;                  /* Optional styling for the label */
}

#cart-total-value,
#cart-vat-value,
#cart-shipping-value {
    text-align: right;                  /* Ensures the value aligns properly */
}

#cart-shipping-value {
	color: var(--primary-red);
}

.small-text {
    font-size: 0.7em;
}

a.checkout-button {
	width: 100%;
	padding: 10px;
	border: 2px solid var(--dark-green);
	background-color: var(--dark-green);
	margin: 20px 0;
	font-size: 18px;
	
	border-radius: var(--std-border-radius);
	text-decoration: none;
	color: #fff;
	text-align: center;
}

a.checkout-button:hover {
	background-color: transparent;
	color: var(--dark-green);
}

/* Overlay */
#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

#checkout-summary {
	position: relative;
}

#checkout-overlay {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	z-index: 1;
}

.checkout-summary-container {
    width: 100%; /* Ensures the container spans the full width of its parent */
	border: 2px solid rgba(0,0,0,0.3);
	border-radius: var(--std-border-radius);
	padding: 5px 15px;
	margin: 20px 0 10px 0;
}

.checkout-summary {
    display: flex; /* Enables flexbox for alignment */
    justify-content: space-between; /* Distributes items to the left and right */
    align-items: center; /* Vertically aligns items */
    width: 100%; /* Ensures the row spans the full width */
    padding: 10px 0; /* Adds vertical padding */
    border-bottom: 1px solid #eee; /* Optional: Adds a separator line for better visibility */
    font-size: 18px; /* Adjust font size as needed */
}

.checkout-summary:last-child {
	border-bottom: none;
}

.checkout-summary-label {
    text-align: left; /* Aligns the label to the left */
    flex: 1; /* Ensures the label takes up available space */
	font-weight: 700;
}

.checkout-summary-value {
    text-align: right; /* Aligns the value to the right */
    flex: 0; /* Keeps the value at its content width */
    white-space: nowrap; /* Prevents wrapping if the value is long */
}

.checkout-summary-value.red {
	color: var(--primary-red);
}

@media (max-width: 1000px) {
	#order-confirmation,
	#order-summary,
	#contact-phone,
	#contact-email,
	#checkout-cart,
	#checkout-snippet {
		grid-column: span 12;
	}
}

h3.checkout-notice {
	font-size: 17px;
}

ul.checkout-notice li {
	font-size: 15px;
}








.product-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 26px 12px 12px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    background: none;
}

.form-group textarea {
	min-height: 200px;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 8px;
    font-size: 11px;
    color: #888;
    transform: translateY(-50%);
    transition: 0.2s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 11px;
    font-size: 11px;
    color: #555;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #3a8721;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.submit-btn:hover .spinner {
    border-color: var(--dark-green);
    border-bottom-color: transparent;
}

.product-description-content button {
	margin: 0 0 30px 0;
}

.recaptcha-terms {
	display: inline;
	font-size: 0.9em;
	padding: 4px 0 24px 0;
	color: #aaa;
}

.recaptcha-terms a {
	font-weight: 400;
	color: #aaa;
}

/*.grecaptcha-badge {
	visibility: hidden;
}*/

.thank-you {
    font-size: 16px;
    font-weight: 400;
}

.hidden-msg {
	display: none;
}

#contact-email form {
	margin: 20px 0 0 0;
}





/* Search */
#search-results-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(255, 255, 255, 0.95);*/
	background-color: var(--body-color);
    z-index: 99;
    padding: 20px;
    overflow-y: auto;
	border: 2px solid var(--primary-green);
	border-radius: var(--std-border-radius);
}

#search-results-container {
    max-width: 1440px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}