/* === Variables === */

:root {	
	--light-black: #212121;
	
	--std-border: 4px;
}



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

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	font-family: articulat-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-stretch:normal;
	font-size: 14px;

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

body.light {
	background-color: #fff;
	color: #000;
}

body.dark {
	background-color: #000;
	color: #fff;
}

p {
	letter-spacing: 0.04em;
	text-align: left;
}

p span.highlight.green {
	background-color: #28a745;
	background-color: #006039;
	color: #fff;
	padding: 0 6px;
	font-weight: 700;
	border-radius: 3px;
}

body.light p.cursive {
	font-family: linotype-didot, serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: italic;
	font-size: 1.5em;
	margin: 20px 0 40px 0;
}

h3 {
	margin: 10px 0 5px 0;
}

.bold {
	font-weight: 700;
}

a:link,
a:visited,
a:active,
a:hover {
	color: #888;
	font-weight: 400;
	text-decoration: underline;
}

a:hover {
	color: #ccc;
}

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

input {
	font-family: articulat-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-stretch:normal;
}

input[type=submit]:hover {
	cursor: pointer;
}

input[type=submit]:focus {
	outline: none;
}

.btn-standard {
	width: auto;
	height: auto;
	margin: auto;
	padding: 10px 20px;
	border-radius: 1000px;
	border: 0;
	background-color: #333;
	background-color: #006039;
	
	font-family: articulat-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-stretch:normal;
	letter-spacing: 0.03em;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	color: #fff;
	
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-standard:hover {
	background-color: #fff;
	color: #006039;;
	cursor: pointer;
}


.section {
	width: 100%;
}

.section.dark {
	background-color: #000;
}

.section.products {
	padding: 40px 0 200px 0;
	background: #000;
}

.section.products .btn-standard {
	margin-top: 30px;
	margin-bottom: 16px;
}

.section.products .col-4 {
	background-color: #141414;
	/*background-color: #10161C;*/
	border-radius: 4px;
}

.section.products img {
	border-radius: 4px;
	border: 1px solid #000;
	width: 100%;
	height: auto;
}

.section.products a h2,
.section.products .price {
	font-family: linotype-didot, serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.section.products a:hover h2 {
	text-decoration: none;
	color: #fff;
}

.section.products h2 {
	margin: 34px 0 14px 0;
	padding: 0;
	font-size: 1.4em;
	color: #fff;
	font-weight: 700;
	line-height: 1.6em;
}

.section.products .price {
	font-size: 2.6em;
	font-weight: 400;
	color: #fff;
}

.section.products p {
	font-weight: 200;
	color: #888;
	font-size: 0.9em;
	text-align: center;
	padding: 0 10px;
	line-height: 1.5em;
}

.section.products a:link,
.section.products a:visited,
.section.products a:active {
	text-decoration: none;
}

.section.products a:hover p {
	text-decoration: none;
	color: #aaa;
}

.section.products a:hover h2 {
	text-decoration: underline;
}

.wrapper {
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 0 30px;
	display: block;
}

@media screen and (max-width: 1000px) {
	.wrapper {
		padding: 0 16px;
	}
}



/* === 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 */
}

.section.products .grid-container {
	gap: 1.5rem;
}

.grid-container.product-images {
	gap: 0;
}

.grid-container.product-images .grid-item {
	padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
	border-radius: 10px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 0 8px 0;
    cursor: pointer;
    z-index: 2;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}

.slider-container button.prev {
    left: 14px;
}

.slider-container button.next {
    right: 14px;
}

.slider-container button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}




/* 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; }


@media screen and (max-width: 1000px) {
    .col-4 { grid-column: span 6; }
}

@media screen and (max-width: 660px) {
    .col-4 { grid-column: span 12; }
}

.grid-item {
    display: flex;
	flex-direction: column; /* Stack items vertically */
    align-items: stretch;
    background-color: none;
    padding: 1rem;
    text-align: center;
}

.section.products .grid-item {
	position: relative;
	padding: 1.2rem;
	padding-bottom: 170px
}

.section.products .grid-item .btn-container {
	position: absolute;
	bottom: 20px;
	left: 0px;
	width: 100%;
}


/* === Index Page === */
.index-header {
    /*background-image: url('/assets/pics/bg_login.webp'); /* Set the image URL */
    /*background-size: cover; /* Cover the entire div */
    /*background-position: center; /* Center the image */
    /*background-repeat: no-repeat; /* Prevent the image from repeating */
    /*width: 100%; /* Set the width of the div */
    /*height: 500px; /* Set the height of the div */
	position: relative;
    width: 100%;
	height: 100%;
    /*max-height: 800px;*/
	overflow: hidden; /* Ensures the video doesn’t spill over */
	background-color: #000;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Fade-in over 2 seconds */
    /* Remove z-index for testing */
}

.background-video.loaded {
    opacity: 1; /* Show the video once loaded */
}

.index-header .header,
.header {
    position: relative; /* Ensures the header stays above the video */
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent black background */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
	z-index: 10;
}

.index-header .header .ph,
.header .ph {
	font-size: 2em;
	color: #fff;
}

.index-header .header .ph:hover,
.header .ph:hover {
	cursor: pointer;
}

.index-header .header .logo img,
.header .logo img {
	height: 40px;
	width: auto;
}

.logo {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.header {
	background-color: #fff;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Horizontal | Vertical | Blur | Spread | Color */
}

.header .ph {
	color: #000;
}

.header .cart-icon {
	position: relative;
}

.cart-count {
	position: absolute;
	top: -10px;
	right: -10px;
	background-color: #28a745;
	background-color: #006039;
	color: #fff;
	border-radius: 50%;
	padding: 5px 10px;
	font-size: 1em;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}


/* Cart dropdown styles */
.cart-icon {
    position: relative;
}

/* Cart content sliding in from the right */
.cart-content {
    position: fixed;
    top: 0;
    right: -100%; /* Initially hidden off the screen */
	right: -420px;
    width: 400px;
    height: 100%;
    background-color: white;
    border-left: 1px solid #ccc;
    padding: 15px;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: right 0.4s ease; /* Smooth transition for sliding */
	color: #000;
}

/* Adjust the width and position for screens smaller than 400px */
@media screen and (max-width: 400px) {
    .cart-content {
        width: 100%; /* Full screen width on small devices */
    }
}

/* Close icon in the top-right corner of the cart */
.cart-content .close-cart {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

/* Show the cart by changing the right property */
.cart-content.show {
    right: 0; /* Bring the cart into view */
}

.cart-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cart-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-content p {
    margin: 10px 0;
}

.cart-items {
	margin: 20px 0;
}

table.cart {
	width: 100%;
	margin-bottom: 30px;
}

table.cart tr.price td {
	padding-bottom: 20px;
}

table.cart tr:nth-last-child(2) td {
	padding-bottom: 0;
}

table.cart tr:nth-last-child(2) td:last-child,
table.cart tr:last-child td:last-child {
	text-align: right;
	font-size: 1.2em;
	font-weight: 700;
}

.cart-content table.cart i.ph {
	color: #aaa;
	/*transition: transform 0.1s ease-in-out;*/
}

.cart-content table.cart i.ph:active {
    transform: scale(0.95);
}

.cart-content table.cart i.decrease-btn:hover {
	/*background-color: #FF0000;
	color: #fff;
	border-radius: 1000%;*/
	color: #006039;
}

.cart-content table.cart i.increase-btn:hover {
	/*background-color: #28a745;
	color: #fff;
	border-radius: 1000%;*/
	color: #006039;
}

.cart-content table.cart i.ph.ph-minus-circle {
	margin-right: 10px;
}

.cart-content table.cart i.decrease-btn,
.cart-content table.cart i.increase-btn {
	display: inline-block;
}

.cart-content table.cart i.decrease-btn:active,
.cart-content table.cart i.increase-btn:active {
	transform: scale(0.90);
}



.checkout-button {
    background-color: #28a745;
	background-color: #006039;
    color: #fff;
    border: 2px solid #28a745;
	border: 2px solid #006039;
	border-radius: 1000px;
    padding: 10px;
	font-size: 1.2em;
    cursor: pointer;
    width: 100%;
    text-align: center;
	font-weight: 700;
	
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.checkout-button:hover {
    background-color: #fff;
	color: #28a745;
	color: #006039;
}

.ph.ph-x.close-cart {
	color: #000;
}

#klarna-checkout-container {
	margin-bottom: 200px;
}






/* Menu content sliding in from the left */
.menu-content {
    position: fixed;
    top: 0;
    left: -420px; /* Initially hidden off the screen */
    width: 400px;
    height: 100%;
    background-color: white;
	background-color: #006039;
    border-right: 1px solid #ccc;
	border-right: 1px solid #004629;
    padding: 20px;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: left 0.4s ease; /* Smooth transition for sliding */
    color: #fff;
}

/* Adjust the width and position for screens smaller than 400px */
@media screen and (max-width: 400px) {
    .menu-content {
        width: 100%; /* Full screen width on small devices */
    }
}

/* Close icon in the top-left corner of the menu */
.menu-content .close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    font-size: 24px;
	color: #fff;
}

body.dark .menu-content .close-menu {
	color: #fff;
}

/* Show the menu by changing the left property */
.menu-content.show {
    left: 0; /* Bring the menu into view */
}

.menu-content ul {
    list-style-type: none;
    margin: 60px 0 0 0;
    padding: 0;
}

.menu-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
	border-bottom: 1px solid #004629;
}

.menu-content ul li a {
	color: #fff;
	font-weight: 700;
	font-size: 1.4em;
	text-decoration: none;
}

.menu-content ul li a:hover {
	text-decoration: underline;
}







.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 8vw;
    z-index: 1;
    opacity: 1; /* Set to visible by default */
    animation: fadeInText 1s ease forwards;
    animation-delay: 1s; /* Delay the entire text block */
    display: inline-block; /* Shrinks to fit content */
    text-align: center; /* Center the text inside the container */
}

/* Each span will appear after a delay */
.center-text span {
    opacity: 0; /* Initially hidden */
    display: inline-block; /* Ensures the animation affects each span individually */
    visibility: hidden; /* Use visibility to control their appearance */
}

.first {
    animation: showSpan 0s forwards; /* No fading effect */
    animation-delay: 2s; /* Delays visibility after .center-text */
}

.second {
    animation: showSpan 0s forwards; /* No fading effect */
    animation-delay: 3s; /* Delays visibility after .first */
}

.third {
    animation: showSpan 0s forwards; /* No fading effect */
    animation-delay: 4s; /* Delays visibility after .second */
}

/* New keyframes for showing without fading */
@keyframes showSpan {
    to {
        visibility: visible;
        opacity: 1;
    }
}

/* Optional: You can keep fadeInText to fade the entire block if needed */
@keyframes fadeInText {
    to {
        opacity: 1;
    }
}



.bounce-arrow {
    position: absolute;
    bottom: 0px; /* 25px from the bottom */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    font-size: 6em;
    color: #fff;
    opacity: 0; /* Initially hidden */
    animation: bounceArrow 2s infinite ease-in-out 1.5s, fadeInArrow 4s forwards 1s; /* Bounce after 3s delay */
}

/* Bounce animation */
@keyframes bounceArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0); /* Neutral position */
    }
    50% {
        transform: translateX(-50%) translateY(-20px); /* Move up */
    }
}

/* Fade-in animation */
@keyframes fadeInArrow {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bounce-arrow:hover {
	cursor: pointer;
}

.section.product {
	margin: 80px 0;
}

.section.product .grid-container {
	gap: 5rem;
}

.section.product .grid-item,
.section.product .col-6 {
	text-align: left;
}

.section.product h1,
.section.product h2,
.section.product p {
    text-align: left;
}

.section.products h1,
.section.products h2,
.section.products p {
    text-align: center;
}

.section.product h1 {
	margin-top: 30px;
}

.section.product p a {
	color: #000;
	font-weight: 700;
}

.section.product .note {
	border: 1px solid #ddd;
	padding: 20px;
	margin: 20px 0;
	border-radius: 8px;
}

.section.product .note p:last-child {
	padding: 0;
	margin: 0;
}

.section.product ul.downloads {
	list-style-type: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.section.product ul.downloads li {
	letter-spacing: 0.04em;
	position: relative;
	margin: 0 0 10px 0;
	padding: 0 0 0 36px;
}

.section.product ul.downloads .ph {
	font-size: 2em;
	position: absolute;
	top: 3px;
	left: 0;
}

.section.product ul.downloads li a {
	color: #000;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.section.single-page {
	margin-top: 60px;
	margin-bottom: 200px;
}

.section.single-page a {
	color: #000;
	font-weight: 700;
}

.section.single-page ul {
	margin: 0 0 30px 0;
}


@media screen and (max-width: 1000px) {
    /* Ensure the .col-6 spans the entire screen width on screens smaller than 1000px */
    .section.product .grid-container {
        gap: 0rem;
    }
    .section.product .grid-item.col-6 {
        grid-column: span 12; /* Full width on smaller screens */
		max-width: 100%;
    }
	
	.section.product p {
		/*text-align: left;*/
	}
}



.price-box {
	border: 1px solid #eee;
	padding: 40px;
	border-radius: 10px;
	background-color: #000;
}

.price-box p.info {
	font-weight: 400;
	font-size: 1em;
	margin: 0;
	padding: 0;
	color: #fff;
	text-align: left;
}

.price-box p.info.large {
	font-weight: 700;
	font-size: 2em;
}

.select-wrapper {
	margin-top: 30px;
    position: relative;
	width: calc(100% + 10px);
    display: inline-block; /* Allows for width to adjust */
	left: -5px;
}

.select-wrapper select {
    appearance: none; /* Remove default styling */
    padding: 10px; /* Add padding */
    border: 2px solid #ddd;
	border: none;
    border-radius: 1000px;
    width: 100%; /* Full width */
    background: transparent; /* Make background transparent */
	background: #333;
    padding-right: 30px; /* Space for the icon */
	
	font-family: articulat-cf, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-stretch:normal;
	letter-spacing: 0.03em;
	font-size: 1.2em;
	color: #fff;
	text-indent: 8px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	
	height: 50px;
}

.select-wrapper select:focus {
    outline: 0;
}

.select-wrapper i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent interaction with the icon */
    font-size: 16px; /* Adjust size as needed */
    color: #fff; /* Change color to match your design */
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.select-wrapper select:hover {
    background: #fff;
	color: #000;
	cursor: pointer;
}

.select-wrapper select:hover + i {
    color: #000; /* Change to your desired hover color */
}

.add-to-cart-wrapper {
	margin-top: 30px;
}

.add-to-cart-wrapper .grid-container {
	gap: 0 !important;
	padding: 0 !important;
}

.add-to-cart-wrapper .col-6.qty {
	display: flex; flex-direction: row; padding: 0;
}

.add-to-cart-wrapper .col-6.submit {
	padding: 0 0 0 30px;
}

.add-to-cart-wrapper .set-qty-icon {
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-to-cart-wrapper .set-qty-icon .ph-fill,
.add-to-cart-wrapper .set-qty-icon .ph {
	color: #fff;
	font-size: 3em;
}

.add-to-cart-wrapper .set-qty-icon .ph-fill:hover,
.add-to-cart-wrapper .set-qty-icon .ph:hover {
	cursor: pointer;
}

.add-to-cart-wrapper .set-qty-icon .ph:active {
	transform: scale(0.90);
}
.add-to-cart-wrapper .set-qty {
	width: calc(100% - 100px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-to-cart-wrapper input[type=text] {
	font-size: 1.6em;
	border-radius: 1000px;
	text-align: center;
	border: none;
	width: 100%;
	padding: 6px 0px;
}

.add-to-cart-wrapper input[type=text]:focus {
	outline: none;
}

.add-to-cart-wrapper input[type=submit] {
	width: 100%;
	border-radius: 1000px;
	padding: 10px 0;
	font-size: 1.2em;
	background-color: #333;
	color: #fff;
	border: none;
	
    background-color: #28a745;
	background-color: #006039;
    color: #fff;
	
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	
	height: 50px;
	border-radius: 10000px;
}

.add-to-cart-wrapper input[type=submit]:hover {
	background-color: #fff;
	color: #28a745;
	color: #006039;
}

.add-to-cart-wrapper {
	text-align: center;
}

.product-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
	margin-top: 40px;
	border-radius: 10px;
}

.product-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

img.payment-icons {
	width: 80%;
	height: auto;
	margin: 40px 0 0 0;
}

@media screen and (max-width: 1000px) {
	.add-to-cart-wrapper .col-6.submit {
		padding: 0;
	}
	.add-to-cart-wrapper input[type=submit] {
		clear: both;
		margin-top: 30px;
		width: 100%;
		padding: 10px 0;
		font-size: 1.2em;
	}
}



.section.checkout {
	margin-top: 60px;
}
table.checkout {
	width: 100%;
	margin-bottom: 60px;
}

table.checkout td,
table.checkout th {
	font-size: 1em;
	text-align: right;
}

table.checkout th:first-child,
table.checkout td:first-child {
	text-align: left;
}

table.checkout tbody td {
	padding-top: 20px;
}

table.checkout tfoot tr:first-child th {
	padding-top: 30px;
}

table.checkout tfoot tr:last-child th {
	font-size: 1.2em;
}

/* Select for Country selection */
.section.footer p.footer-country-info {
	padding: 0;
	margin: auto;
	margin-top: 36px;
	margin-bottom: 10px;
}

.section.footer p.footer-country-info img {
	width: 26px;
	height: auto;
	position: relative;
	vertical-align: middle;
	top: -2px;
	margin: 0 0 0 8px;
}

form#countrySelectionForm {
    position: relative;
    width: 170px;
    display: inline-block; /* Allows for width to adjust */
	margin: auto;
}

select#country_footer {
    appearance: none; /* Remove default styling */
    
    width: 170px;
	height: 36px;
	
    /*margin: 12px 0 60px 0;*/
    padding: 8px 12px;
    padding-right: 32px; /* Add padding to the right for the caret */
    border-radius: 1000px;
    background-color: #333;
    border: none;
        
    font-family: articulat-cf, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-stretch:normal;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.03em;
	text-indent: 2px;
    
    transition: background-color 0.3s ease, transform 0.3s ease;
}

select#country_footer:focus {
    outline: none;
}

select#country_footer:hover {
    cursor: pointer;
    background-color: #fff;
    color: #000;
}

/* Style the caret icon */
form#countrySelectionForm i {
    position: absolute;
    right: 14px; /* Position it on the right side of the select */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent interaction with the icon */
    font-size: 16px; /* Adjust size as needed */
    color: #fff; /* Change color to match your design */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Change icon color when select is hovered */
select#country_footer:hover + i {
    color: #000;
}



body.dark h1,
body.light h1 {
	font-family: linotype-didot, serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	
	display: block;
	margin: 80px 0 40px 0;
	color: #fff;
	font-size: 3.5em;
}

body.light h1 {
	padding: 0;
	margin: 0 0 50px 0;
	color: #000;
	font-size: 2.5em;
	text-align: left;
	font-weight: 700;
}

body.dark h1 .trademark:after,
body.light h1 .trademark:after {
	content: "\00AE"; /* Unicode for ® */
    font-size: 0.5em; /* Adjust size */
	position: relative;
	top: -10px;
}

body.dark p,
body.light p {
	display: block;
	font-size: 1.1em;
	font-weight: 200;
	text-align: center;
	max-width: 1440px;
	margin: auto;
	padding: 0 0 70px 0;
	line-height: 1.4em;
	color: #888;
}

body.light p {
	text-align: left;
	padding: 0 0 20px 0;
	color: #111;
	font-size: 1em;
	font-weight: 500;
}

body.light p.intro {
	padding: 0;
	margin: 0 0 50px 0;
	font-family: linotype-didot, serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: italic;
	color: #111;
	
	font-size: 1.7em;
	letter-spacing: 0;
}

body.dark p .trademark:after,
body.light p .trademark:after {
	content: "\00AE"; /* Unicode for ® */
    font-size: 0.65em; /* Adjust size */
	position: relative;
	top: -6px;
}


@media screen and (max-width: 440px) {
	.section.product {
		margin: 30px 0;
	}
	body.light h1 {
		font-size: 2em;
	}
	
	body.light h1 .trademark:after {
		top: -8px;
	}
	
	body.light p.intro {
		font-size: 1.4em;
	}
	body.light p .trademark:after {
		top: -4px;
	}
}




body.dark .section.footer,
body.light .section.footer {
	/*margin-top: 200px;*/
	background: #141414;
}

.section.footer {
	padding-top: 40px;
}

.section.footer ul {
	list-style-type: none;
	color: #fff;
	letter-spacing: 0.06em;
	word-spacing: 20px;
	margin: 60px 0 26px 0;
	padding: 0;
}

.section.footer ul li {
	display: inline-block;
}

.section.footer ul li a {
  position: relative;
  color: #ccc;
  text-decoration: none;
}

.section.footer ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.section.footer ul li a:hover::after {
  background-color: #fff;
  transform: scaleX(1);
}

.section.footer ul li a:hover {
  color: #fff;
}

.footer img.footer-logo {
	width: 160px;
	height: auto;
	margin: auto;
	opacity: 0.9;
}

body.dark .footer p,
body.light .footer p {
	color: #888;
	font-size: 0.85em;
	letter-spacing: 0.04em;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 40px 0;
}

.footer p .trademark:after {
	content: "\00AE"; /* Unicode for ® */
    font-size: 0.65em; /* Adjust size */
	position: relative;
	top: -4px;
}

body.light h1.center {
	text-align: center;
}

form#contactForm {
	width: 100%;
	max-width: 500px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}

form#contactForm label {
	letter-spacing: 0.03em;
	display: block;
	text-align: left;
}

form#contactForm input,
form#contactForm textarea {
	width: 100%;
	border: 1px solid #ccc;
	letter-spacing: 0.03em;
	font-size: 1.4em;
	padding: 6px 10px;
	
	font-family: articulat-cf, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-stretch:normal;
	
	border-radius: 3px;
}

form#contactForm textarea {
	height: 200px;
}

form#contactForm input:focus,
form#contactForm textarea:focus {
	outline: none;
}

form#contactForm button.btn-standard {
	border: 2px solid #006039;;
	margin-top: 20px;
}

body.light .status-message {
	margin: 40px 0 200px 0;
}

body.light .status-message p {
	text-align: center;
}



/* CSS for Tabs */
.tab-wrapper {
	margin-top: 20px;
}

.tab-wrapper h3 {
	text-align: left;
	margin-bottom: 20px;
}

.tab-wrapper table {
	border-collapse: collapse;
	margin: 0 0 4px 0;
}

.tab-wrapper table tr td {
	text-align: left;
	padding: 6px 60px 6px 0;
	border-bottom: 1px solid #ddd;
	letter-spacing: 0.03em;
}

.tab-wrapper table tr:first-child td {
	border-top: 1px solid #ddd;
}

.tab-wrapper table tr:last-child td {
	border-bottom: none;
}

.tab-container {
    display: flex;
    /*border-bottom: 2px solid #ccc;*/
    cursor: pointer;
}
.tab {
    padding: 10px 20px;
    margin-right: 5px;
    background: #f1f1f1;
    /*border: 1px solid #ccc;*/
    border-bottom: none;
    transition: background 0.3s;
	font-size: 1em;
}

@media screen and (max-width: 1180px) {
	.tab {
		padding: 4px 8px;
		font-size: 0.9em;
	}
}

@media screen and (max-width: 600px) {
	.tab {
		padding: 2px 6px;
		font-size: 0.9em;
	}
	.variation-part {
		display: none;
	}
}

.tab:hover {
    background: #ddd;
}
.tab.active {
    background: #fff;
    border-bottom: 2px solid #006039;
    font-weight: bold;
}

/* Tab content with fade-in effect */
.tab-content {
    display: none;
    opacity: 0;
    padding: 15px;
    /*border: 1px solid #ccc;*/
    background: #fff;
    animation: fadeIn 0.5s ease forwards;
}
.tab-content.active {
    display: block;
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
