@charset "UTF-8";
/*!
Theme Name: Tango_XYZ
Theme URI: https://dev.xyz-ks.com/dgroup/tango/theme
Author: XYZ
Author URI: https://xyz-ks.com
Description: Custom WP Theme made for Devolli Group
Version: 1.5.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: tango-xyz
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Custom WordPress theme for Tango (Devolli Group), developed by XYZ Agency - https://xyz-ks.com/. The theme embraces a modular architecture, rich editorial tooling, and performance-minded front-end experiences tailored for Tango's digital presence.

Tango_XYZ is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/**
 * Typography Mixins - Quick Reference
 * ====================================
 *
 * BASIC USAGE:
 * ------------
 * Instead of writing:
 *   font-family: $serif-font-family-bold;
 *   font-weight: $font-weight-black;
 *   font-size: 2rem;
 *
 * Simply write:
 *   @include text-bold(2rem);
 *
 * AVAILABLE MIXINS:
 * -----------------
 * @include text-bold(2rem);           // Bold serif text with black weight
 * @include text-serif(1rem);          // Regular serif text
 * @include text-sans(1rem);           // Sans-serif text
 * @include text-script(2rem);         // Script/decorative font
 * @include text-light(1rem);          // Light weight serif
 * @include text-heavy(1rem);          // Heavy weight sans
 * @include text-body();                // Default body text styling
 * @include text-caption();             // Small caption text
 *
 * @include heading(1);                 // H1 heading (auto-sized)
 * @include heading(2, 3rem);           // H2 with custom size
 *
 * PRESET COMBINATIONS:
 * --------------------
 * @include title-hero;                 // Large hero title
 * @include title-section;              // Section heading with margin
 * @include label-text;                 // Uppercase label style
 *
 * EXAMPLES:
 * ---------
 * .product-title {
 *   @include text-bold(3rem);
 *   color: $primary-color;
 * }
 *
 * .description {
 *   @include text-body(1.125rem);
 * }
 *
 * .badge {
 *   @include label-text;
 * }
 *
 * @version 1.1.0
 * @author XYZ
 */
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
:root {
	--accent-color: #f4f4f4;
	--text-color: #333;
	--bg-color: #fafafa;
	--card-bg: #ffffff;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Breakpoints Mixin System
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body,
button,
input,
select,
optgroup,
textarea {
	color: #1b1b1b;
	font-family: "ParafinaS", "ParafinaM", "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.text-xs {
	font-size: 0.75rem;
}

.text-sm {
	font-size: 0.875rem;
}

.text-base {
	font-size: 1rem;
}

.text-md {
	font-size: 1.125rem;
}

.text-lg {
	font-size: 1.25rem;
}

.text-xl {
	font-size: 1.5rem;
}

.text-2xl {
	font-size: 1.75rem;
}

.text-3xl {
	font-size: 2rem;
}

.font-light {
	font-weight: 300;
}

.font-regular {
	font-weight: 400;
}

.font-medium {
	font-weight: 500;
}

.font-semibold {
	font-weight: 600;
}

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

.font-extrabold {
	font-weight: 800;
}

.font-black {
	font-weight: 900;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.uppercase {
	text-transform: uppercase;
}

.lowercase {
	text-transform: lowercase;
}

.capitalize {
	text-transform: capitalize;
}

.normal-case {
	text-transform: none;
}

.tracking-tight {
	letter-spacing: -0.025em;
}

.tracking-normal {
	letter-spacing: 0;
}

.tracking-wide {
	letter-spacing: 0.025em;
}

.leading-none {
	line-height: 1;
}

.leading-tight {
	line-height: 1.2;
}

.leading-snug {
	line-height: 1.375;
}

.leading-normal {
	line-height: 1.5;
}

.leading-relaxed {
	line-height: 1.625;
}

.leading-loose {
	line-height: 2;
}

.text-fluid-sm {
	font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.text-fluid-base {
	font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
}

.text-fluid-lg {
	font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
}

@media (max-width: 768px) {
	html {
		font-size: 95%;
	}
}
@media (min-width: 1440px) {
	html {
		font-size: 105%;
	}
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "ParafinaS", "ParafinaM", "Helvetica Neue", sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #2d5016;
	max-width: 100%;
	word-wrap: break-word;
	hyphens: auto;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3.5rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw + 0.75rem, 2rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.5rem);
}

h5 {
	font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
	font-weight: 600;
}

h6 {
	font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
	font-weight: 600;
}

.heading-featured {
	position: relative;
	display: inline-block;
}
.heading-featured::after {
	content: "";
	position: absolute;
	bottom: -0.2em;
	left: 0;
	width: 2em;
	height: 0.15em;
	background-color: #fccf27;
	border-radius: 2px;
}

p {
	font-size: clamp(1.125rem, 2vw + 0.75rem, 1.175rem);
}
p:last-child {
	margin-bottom: 0;
}

.has-background--green h1, .has-background--green h2, .has-background--green h3, .has-background--green h4, .has-background--green h5, .has-background--green h6 {
	color: #fff;
}
.has-background--white h1, .has-background--white h2, .has-background--white h3, .has-background--white h4, .has-background--white h5, .has-background--white h6 {
	color: #2d5016;
}

.has-text-color--white {
	color: #fff !important;
}
.has-text-color--dark {
	color: #1b1b1b !important;
}
.has-text-color--black {
	color: #000 !important;
}
.has-text-color--green {
	color: #1B5E20 !important;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	position: relative;
	margin: 2rem 0;
	padding: 1.5rem 2rem 1.5rem 3rem;
	font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
	line-height: 1.6;
	font-style: italic;
	color: #333;
	background-color: rgba(0, 0, 0, 0.03);
	border-left: 0.25rem solid #fccf27;
	border-radius: 0.25rem;
}
blockquote::before {
	content: '"';
	position: absolute;
	left: 0.75rem;
	top: 0.5rem;
	font-size: 2.5rem;
	line-height: 1;
	color: rgba(0, 0, 0, 0.1);
}
blockquote p:last-child {
	margin-bottom: 0;
}
blockquote cite {
	display: block;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 600;
}
blockquote cite::before {
	content: "— ";
}
@media (max-width: 768px) {
	blockquote {
		padding: 1.25rem 1.5rem 1.25rem 2.5rem;
		margin: 1.5rem 0;
		font-size: 1rem;
	}
	blockquote::before {
		font-size: 2rem;
		left: 0.5rem;
	}
}

address {
	margin: 0 0 1.5em;
	font-style: normal;
	line-height: 1.6;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin: 0 0 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.25rem;
	border-radius: 0.25rem;
	font-size: 0.875rem;
}
@media (max-width: 768px) {
	pre {
		padding: 1rem;
		margin-bottom: 1.5em;
		font-size: 0.8125rem;
	}
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 0.9em;
	background: rgba(0, 0, 0, 0.05);
	padding: 0.2em 0.4em;
	border-radius: 0.2em;
}

dt {
	font-weight: 700;
	margin-bottom: 0.5em;
}

dd {
	margin: 0 0 1.5em 1em;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
	text-decoration: none;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
	padding: 0.1em 0.3em;
	border-radius: 0.2em;
}

::-moz-selection {
	background-color: #fccf27;
	color: #fff;
}

::selection {
	background-color: #fccf27;
	color: #fff;
}

ul, ol {
	padding-left: 1.5em;
	margin: 0 0 1.5em;
}
ul li, ol li {
	margin-bottom: 0.5em;
	line-height: 1.6;
}
ul li:last-child, ol li:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	ul, ol {
		padding-left: 1.25em;
		margin-bottom: 1.25em;
	}
}

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

.text-large {
	font-size: 1.25em;
}

@media (max-width: 768px) {
	.hide-on-mobile {
		display: none !important;
	}
}

.show-on-mobile {
	display: none !important;
}
@media (max-width: 768px) {
	.show-on-mobile {
		display: block !important;
	}
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

.has-background--green {
	background-color: #1B5E20 !important;
	color: #fff !important;
}
.has-background--white {
	background-color: #fff !important;
	color: #1b1b1b !important;
}

.has-text-color--white {
	color: #fff !important;
}
.has-text-color--dark {
	color: #1b1b1b !important;
}
.has-text-color--black {
	color: #000 !important;
}
.has-text-color--green {
	color: #1B5E20 !important;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #1B5E20;
}
a:visited {
	color: #4CAF50;
}
a:hover, a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/**
 * GSAP SplitText Animation Styles
 * Version: 1.0.0
 *
 * Styles for SplitText plugin animations
 * Provides smooth, performant text animations
 */
/* ===========================================
   BASE SPLIT TEXT STYLES
   =========================================== */
/* Split Characters - General */
.split-char {
	display: inline-block;
	position: relative;
	font-kerning: none; /* Disable kerning to prevent character shifting */
	text-rendering: optimizeSpeed; /* Optimize for speed over legibility */
}

.split-word {
	display: inline-block;
	position: relative;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}
.split-word:last-child {
	margin-right: 0;
}

/* Hero Split Text - Special Effects */
.hero-split-char {
	display: inline-block;
	position: relative;
	font-weight: inherit;
	color: inherit;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}

.hero-split-word {
	display: inline-block;
	position: relative;
	font-weight: inherit;
	color: inherit;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}
.hero-split-word:last-child {
	margin-right: 0;
}

.hero-split-line {
	display: block;
	position: relative;
	overflow: hidden;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}

/* Card Split Text */
.card-split-word {
	display: inline-block;
	position: relative;
	font-weight: inherit;
	color: inherit;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}
.card-split-word:last-child {
	margin-right: 0;
}

/* Navigation Split Text */
.nav-split-char {
	display: inline-block;
	position: relative;
	font-weight: inherit;
	color: inherit;
	font-kerning: none;
	text-rendering: optimizeSpeed;
}

/* ===========================================
   ANIMATION STATES
   =========================================== */
/* Initial hidden state for split characters */
.split-char,
.hero-split-char,
.card-split-word,
.nav-split-char {
	will-change: transform, opacity;
	transform-style: preserve-3d;
	backface-visibility: hidden;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */
@media (max-width: 768px) {
	/* Reduce animation intensity on mobile for better performance */
	.split-char,
	.hero-split-char {
		transform-style: flat; /* Disable 3D transforms on mobile */
	}
	/* Adjust stagger timing for mobile */
}
/* ===========================================
   ACCESSIBILITY & PERFORMANCE
   =========================================== */
/* Respect user preferences for reduced motion */
@media (prefers-reduced-motion: reduce) {
	.split-char,
	.hero-split-char,
	.card-split-word,
	.nav-split-char,
	.split-word,
	.hero-split-word,
	.hero-split-line {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}
/* Force hardware acceleration for better performance */
.split-animated .split-char,
.split-animated .hero-split-char,
.split-animated .card-split-word,
.split-animated .nav-split-char {
	transform: translateZ(0);
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */
/* Disable split text animations for specific elements */
.no-split.split-animated .split-char,
.no-split.split-animated .hero-split-char,
.no-split.split-animated .card-split-word,
.no-split.split-animated .nav-split-char {
	animation: none !important;
	transition: none !important;
	transform: none !important;
	opacity: 1 !important;
}

/* Custom split text animation delays */
.split-delay-1 {
	animation-delay: 0.1s;
}

.split-delay-2 {
	animation-delay: 0.2s;
}

.split-delay-3 {
	animation-delay: 0.3s;
}

.split-delay-4 {
	animation-delay: 0.4s;
}

.split-delay-5 {
	animation-delay: 0.5s;
}

/* ===========================================
   3D LOGO ANIMATION COMPATIBILITY
   =========================================== */
/* Ensure 3D transforms don't conflict with split text animations */
.xyz-logo,
#credit {
	transform-style: preserve-3d !important;
	perspective: 10px !important;
	will-change: transform;
	backface-visibility: hidden;
}

/* ===========================================
   DEBUG STYLES (Remove in production)
   =========================================== */
/* Uncomment these for debugging split text animations */
/*
.split-char,
.hero-split-char,
.card-split-word,
.nav-split-char {
  outline: 1px solid rgba(255, 0, 0, 0.3);
}

.split-word,
.hero-split-word {
  outline: 1px solid rgba(0, 255, 0, 0.3);
}

.hero-split-line {
  outline: 1px solid rgba(0, 0, 255, 0.3);
}
*/
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* =====================================================
   TANGO HERO SECTION - Grid-based Layout
   Version: 3.1 - Enhanced with dynamic width and vertical centering

   Changes:
   - Text container now grows dynamically (max 50% width)
   - Fixed height to 100vh with no overflow
   - Improved vertical centering for all content
   - Added consistent width for slider mode
   ===================================================== */
.tango-hero {
	position: relative;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	background-color: #1B5E20;
	/* CSS Variables */
	--text-color-primary: #eaf4e9;
	--text-color-secondary: #d4e8d3;
	--cta-bg: #c4d96f;
	--cta-bg-hover: #d4e97f;
	--cta-text: #1a4234;
	--wave-color: $brand-primary;
	margin-top: 2%;
}
.tango-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 20;
}
.tango-hero__wave .wave-svg {
	transform: scaleY(-1);
	display: block;
	width: 100%;
}
.tango-hero__wave .wave-svg path {
	fill: #e5ede7 !important;
}

/* ===========================================
   GRID CONTAINER (Dynamic width with 50% max)
   =========================================== */
.grid-container {
	display: grid;
	grid-template-columns: minmax(min(250px, 50%), 30%) 1fr;
	grid-template-rows: 100%;
	gap: 0;
	grid-auto-flow: column;
	grid-template-areas: "text-container image-container";
	height: 100%;
	min-height: 100%;
}

/* ===========================================
   TEXT CONTAINER (Left Side - Dynamic, max 50%)
   =========================================== */
.text-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(20px, 5vh, 30px);
	grid-area: text-container;
	padding: clamp(20px, 4vh, 40px) clamp(25px, 3vw, 35px);
	z-index: 2;
	height: 100%;
	/* For slider mode - maintain consistent width */
}
.text-container:has(.hero-text-slider) {
	width: 100%;
}

.title {
	width: 100%;
}
.title .hero-title {
	font-weight: 800;
	line-height: 1.1;
	color: var(--text-color-primary);
	margin: 0 auto;
}

.desc {
	width: 100%;
}
.desc .hero-subtitle {
	font-size: clamp(1.15rem, 1.5vw, 1.25rem);
	font-weight: 600;
	color: var(--cta-bg);
	margin: 0 0 clamp(5px, 2vh, 10px) 0;
}
.desc .hero-desc {
	font-size: clamp(0.951rem, 1.15vw, 1rem);
	line-height: 1.6;
	color: var(--text-color-secondary);
	margin: 0;
	max-width: 600px;
}

.cta {
	width: 100%;
}
.cta .hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: clamp(14px, 2vh, 18px) clamp(28px, 4vw, 40px);
	background: var(--cta-bg);
	color: var(--cta-text);
	text-decoration: none;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 700;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta .hero-cta svg {
	transition: transform 0.3s ease;
}
.cta .hero-cta:hover {
	background: var(--cta-bg-hover);
	transform: scale(1.01);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.cta .hero-cta:hover svg {
	transform: translateX(4px);
}

/* ===========================================
   IMAGE CONTAINER (Right Side - 2fr)
   =========================================== */
.image-container {
	grid-area: image-container;
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	/* Wave Divider - Left Edge */
}
.image-container::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 101%;
	z-index: 1;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22131%22%20height%3D%221415%22%20viewBox%3D%220%200%20131%201415%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M111.023%201414.33H0L0%200H47.0479C47.0479%20147.476%20179.072%20391.368%20111.023%20645.33C42.9745%20899.292%2047.048%20941.422%2047.0479%201016.5C47.0479%201163.98%20129.733%201262.57%20111.023%201414.33Z%22%20fill%3D%22%231B5E20%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}
.image-container {
	/* Background Media */
}
.image-container .hero-bg-media,
.image-container .hero-media-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.image-container .hero-bg-media {
	display: block;
}

/* ===========================================
   SLIDER FUNCTIONALITY
   =========================================== */
.hero-text-slider {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(20px, 5vh, 30px);
}

.hero-media-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-text-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(20px, 5vh, 30px);
}
.hero-text-slide.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.hero-media-slide {
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero-media-slide.is-active {
	opacity: 1;
	visibility: visible;
}
.hero-media-slide img,
.hero-media-slide video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

/* Slider Controls */
.hero-slider-controls {
	position: absolute;
	bottom: 15%;
	right: 5%;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 16px;
	background: rgba(15, 46, 36, 0.7);
	backdrop-filter: blur(10px);
	padding: 12px 20px;
	border-radius: 50px;
}

.hero-slider-btn {
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: var(--text-color-primary);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	/* Circular Progress Background */
}
.hero-slider-btn::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	padding: 2px;
	background: conic-gradient(var(--cta-bg) calc(var(--progress, 0) * 1%), rgba(255, 255, 255, 0.2) 0);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.hero-slider-btn {
	/* Show progress on next button when autoplay is active */
}
.hero-slider-btn.hero-slider-next.has-progress::before {
	opacity: 1;
}
.hero-slider-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}
.hero-slider-btn svg {
	width: 22px;
	height: 22px;
	position: relative;
	z-index: 1;
}

.hero-slider-dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.hero-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}
.hero-slider-dot.is-active {
	background: var(--cta-bg);
	width: 32px;
	border-radius: 6px;
}
.hero-slider-dot:hover:not(.is-active) {
	background: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
	.grid-container {
		grid-template-columns: minmax(min(280px, 100%), 45%) 1fr;
	}
}
@media (max-width: 992px) {
	.grid-container {
		grid-template-columns: minmax(min(260px, 100%), 35%) 1fr;
	}
	.text-container {
		padding: clamp(24px, 5vh, 60px) clamp(20px, 4vw, 48px);
	}
}
@media (max-width: 768px) {
	.tango-hero {
		height: auto;
		min-height: unset;
		max-height: none;
	}
	.grid-container {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(30vh, auto) minmax(20vh, 1fr);
		grid-template-areas: "image-container" "text-container";
		height: auto;
		max-height: none;
	}
	.text-container {
		padding: clamp(24px, 3vh, 20px) clamp(20px, 4vw, 20px);
		gap: clamp(16px, 2vh, 24px);
		min-height: 35vh;
		max-width: 100%;
		min-width: auto;
	}
	.image-container {
		min-height: 50vh;
		height: auto;
		/* Remove wave divider on mobile */
	}
	.image-container::before {
		display: none;
	}
	.hero-slider-controls {
		padding: 8px 12px;
		gap: 12px;
	}
	.hero-slider-btn {
		width: 36px;
		height: 36px;
	}
	.hero-slider-btn::before {
		inset: -1.5px;
		padding: 1.5px;
	}
	.hero-slider-btn svg {
		width: 18px;
		height: 18px;
	}
	.hero-slider-dot {
		width: 10px;
		height: 10px;
	}
	.hero-slider-dot.is-active {
		width: 24px;
	}
}
@media (max-width: 480px) {
	.text-container {
		padding: 20px 16px;
	}
	.title .hero-title {
		font-size: clamp(2rem, 8vw, 3rem);
	}
	.desc .hero-subtitle {
		font-size: clamp(1rem, 4vw, 1.5rem);
	}
	.desc .hero-desc {
		font-size: clamp(0.95rem, 3.5vw, 1.125rem);
	}
	.cta .hero-cta {
		padding: 12px 24px;
		font-size: 1rem;
	}
}
/* ===========================================
   ACCESSIBILITY
   =========================================== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.hero-media-slide img,
	.hero-media-slide video {
		animation: none !important;
	}
}
/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {
	.hero-slider-controls {
		display: none;
	}
	.hero-media-slide:not(.is-active) {
		display: none;
	}
	.image-container::before {
		display: none;
	}
}
/* =====================================================
   STATIC HERO WITH PRODUCTS SECTION
   Version: 1.2.0

   Changes:
   - v1.2.0: Improved product overlapping and mobile responsiveness
     * Products now overlap using negative margins (-80px desktop, -40px mobile)
     * Removed gap entirely, using z-index layering for depth
     * Fixed animation mixins (removed non-existent slide-left)
     * Improved mobile product sizing and placement (smaller, tighter)
     * Better responsive behavior for 1, 2, or 3 products on all screens
     * Mobile products positioned lower (bottom: 3% on smallest screens)
   - v1.1.0: Enhanced product positioning and text animations
     * Products brought 50% closer together (gap reduced from 15-25px to 5-10px)
     * Product sizes increased by 30%
     * Added positioning logic for 1-2 products (centered/left-right)
     * Added fade-in animations to subtitle, description, and CTA
   - v1.0.0: Initial creation - Styling for static hero with floating products
     * Products positioned above image container
     * Responsive grid layout for products
     * Float animation support for GSAP
   ===================================================== */
.static-hero-with-products {
	position: relative;
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	background-color: #1B5E20;
	/* CSS Variables */
	--text-color-primary: #eaf4e9;
	--text-color-secondary: #d4e8d3;
	--cta-bg: #c4d96f;
	--cta-bg-hover: #d4e97f;
	--cta-text: #1a4234;
	--wave-color: $brand-primary;
	margin-top: 2%;
}
.fonts-loading .static-hero-with-products .hero-subtitle,
.fonts-loading .static-hero-with-products .hero-desc,
.fonts-loading .static-hero-with-products .hero-cta {
	animation-play-state: paused;
}
.static-hero-with-products {
	/* Wave decoration at bottom */
}
.static-hero-with-products .tango-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	pointer-events: none;
	z-index: 20;
}
.static-hero-with-products .tango-hero__wave .wave-svg {
	transform: scaleY(-1);
	display: block;
	width: 100%;
}
.static-hero-with-products .tango-hero__wave .wave-svg path {
	fill: #e5ede7 !important;
}
.static-hero-with-products {
	/* Grid container */
}
.static-hero-with-products .grid-container {
	display: grid;
	grid-template-columns: minmax(min(250px, 50%), 30%) 1fr;
	grid-template-rows: 100%;
	gap: 0;
	grid-auto-flow: column;
	grid-template-areas: "text-container image-container";
	height: 100%;
	min-height: 100%;
}
.static-hero-with-products {
	/* Text Container (Left Side) */
}
.static-hero-with-products .text-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(20px, 5vh, 30px);
	grid-area: text-container;
	padding: clamp(20px, 4vh, 40px) clamp(25px, 3vw, 35px);
	z-index: 2;
	height: 100%;
}
.static-hero-with-products .title {
	text-align: left;
	justify-content: flex-start;
	width: 100%;
}
.static-hero-with-products .title .hero-title {
	font-weight: 800;
	line-height: 1.1;
	color: var(--text-color-primary);
	margin: 0 auto;
	transition: all 0.3s ease-in-out;
	font-size: clamp(4rem, 15vw, 5.5rem);
}
.static-hero-with-products .desc {
	width: 100%;
}
.static-hero-with-products .desc .hero-subtitle {
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	font-weight: 600;
	color: var(--cta-bg);
	margin: 0 0 clamp(5px, 2vh, 10px) 0;
	opacity: 0;
	transform: translateY(50px);
	animation: slideUp 0.6s ease 0.2s forwards;
}
.static-hero-with-products .desc .hero-desc {
	font-size: clamp(1rem, 1.15vw, 1.5rem);
	line-height: 1.6;
	color: var(--text-color-secondary);
	margin: 0;
	max-width: 600px;
	opacity: 0;
	animation: fadeIn 0.6s ease 0.4s forwards;
}
.static-hero-with-products .cta {
	width: 100%;
}
.static-hero-with-products .cta .hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: clamp(14px, 2vh, 18px) clamp(28px, 4vw, 40px);
	background: var(--cta-bg);
	color: var(--cta-text);
	text-decoration: none;
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	font-weight: 700;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	opacity: 0;
	animation: fadeIn 0.6s ease 0.6s forwards;
}
.static-hero-with-products .cta .hero-cta svg {
	transition: transform 0.3s ease;
}
.static-hero-with-products .cta .hero-cta:hover {
	background: var(--cta-bg-hover);
	color: #2d5016;
	transform: scale(1.01);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.static-hero-with-products .cta .hero-cta:hover svg {
	transform: translateX(4px);
}
.static-hero-with-products {
	/* Image Container (Right Side) */
}
.static-hero-with-products .image-container {
	grid-area: image-container;
	position: relative;
	height: 100%;
	width: 100%;
	overflow: visible;
	/* Wave Divider - Left Edge */
}
.static-hero-with-products .image-container::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 101%;
	z-index: 1;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22131%22%20height%3D%221415%22%20viewBox%3D%220%200%20131%201415%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M111.023%201414.33H0L0%200H47.0479C47.0479%20147.476%20179.072%20391.368%20111.023%20645.33C42.9745%20899.292%2047.048%20941.422%2047.0479%201016.5C47.0479%201163.98%20129.733%201262.57%20111.023%201414.33Z%22%20fill%3D%22%231B5E20%22%2F%3E%3C%2Fsvg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}
.static-hero-with-products .image-container {
	/* Background Media */
}
.static-hero-with-products .image-container .hero-bg-media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.static-hero-with-products {
	/* Hero Products Container */
}
.static-hero-with-products .hero-products {
	position: absolute;
	bottom: 5%;
	right: 5%;
	z-index: 10;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 0;
	pointer-events: none;
	max-width: 55%;
	/* If only 1 product, center it */
}
.static-hero-with-products .hero-products:has(.hero-product-item:only-child) {
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	justify-content: center;
}
.static-hero-with-products .hero-products:has(.hero-product-item:only-child) .hero-product-item {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}
.static-hero-with-products .hero-products {
	/* If only 2 products, space them left and right */
}
.static-hero-with-products .hero-products:has(.hero-product-item:nth-child(2):last-child) {
	justify-content: space-between;
	left: 5%;
	right: 5%;
	max-width: 90%;
}
.static-hero-with-products .hero-products:has(.hero-product-item:nth-child(2):last-child) .hero-product-item[data-product-index="0"] {
	margin-right: 0;
}
.static-hero-with-products .hero-products:has(.hero-product-item:nth-child(2):last-child) .hero-product-item[data-product-index="1"] {
	margin-left: 0;
}
.static-hero-with-products .hero-products {
	/* If 3 products, keep on right side with overlap */
}
.static-hero-with-products .hero-products:has(.hero-product-item:nth-child(3)) {
	justify-content: center;
}
.static-hero-with-products .hero-product-item {
	position: relative;
	width: auto;
	height: auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-shrink: 0;
	pointer-events: auto;
}
.static-hero-with-products .hero-product-item img {
	width: auto;
	height: auto;
	max-width: clamp(300px, 20vw, 380px);
	max-height: clamp(400px, 45vh, 580px);
	-o-object-fit: contain;
	object-fit: contain;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.25));
	transition: filter 0.3s ease-in-out;
}
.static-hero-with-products .hero-product-item:hover img {
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}
.static-hero-with-products .hero-product-item {
	/* Different positioning for each product - overlapping for closeness */
}
.static-hero-with-products .hero-product-item[data-product-index="0"] {
	margin-bottom: -20px;
	margin-right: -80px;
	z-index: 1;
}
.static-hero-with-products .hero-product-item[data-product-index="1"] {
	margin-bottom: 10px;
	z-index: 2;
}
.static-hero-with-products .hero-product-item[data-product-index="2"] {
	margin-bottom: -10px;
	margin-left: -80px;
	z-index: 3;
}
.static-hero-with-products {
	/* ===========================================
	   RESPONSIVE DESIGN
	   =========================================== */
}
@media (max-width: 1200px) {
	.static-hero-with-products .grid-container {
		grid-template-columns: minmax(min(280px, 100%), 45%) 1fr;
	}
	.static-hero-with-products .hero-products {
		width: 100%;
		gap: 0;
		max-width: 100%;
	}
	.static-hero-with-products .hero-product-item[data-product-index="0"] {
		margin-right: -60px;
	}
	.static-hero-with-products .hero-product-item[data-product-index="2"] {
		margin-left: -60px;
	}
}
@media (max-width: 992px) {
	.static-hero-with-products .grid-container {
		grid-template-columns: minmax(min(260px, 100%), 35%) 1fr;
	}
	.static-hero-with-products .text-container {
		padding: clamp(24px, 5vh, 60px) clamp(20px, 4vw, 48px);
	}
	.static-hero-with-products .hero-products {
		gap: 0;
		max-width: 65%;
	}
	.static-hero-with-products .hero-product-item img {
		max-width: 286px;
	}
	.static-hero-with-products .hero-product-item[data-product-index="0"] {
		margin-right: -50px;
	}
	.static-hero-with-products .hero-product-item[data-product-index="2"] {
		margin-left: -50px;
	}
}
@media (max-width: 768px) {
	.static-hero-with-products {
		height: auto;
		min-height: unset;
		max-height: none;
	}
	.static-hero-with-products .grid-container {
		grid-template-columns: 1fr;
		grid-template-rows: minmax(20vh, 45vh) minmax(25vh, 1fr);
		grid-template-areas: "image-container" "text-container";
		height: auto;
		max-height: none;
	}
	.static-hero-with-products .text-container {
		padding: clamp(24px, 3vh, 20px) clamp(20px, 4vw, 20px);
		gap: clamp(16px, 2vh, 24px);
		min-height: 35vh;
		max-width: 100%;
		min-width: auto;
	}
	.static-hero-with-products .image-container {
		min-height: 50vh;
		height: auto;
		/* Remove wave divider on mobile */
	}
	.static-hero-with-products .image-container::before {
		display: none;
	}
	.static-hero-with-products {
		/* Keep products on right but adjust for mobile */
	}
	.static-hero-with-products .hero-products {
		bottom: -20px;
		right: 2%;
		gap: 0;
		max-width: 100%;
		/* Reset positioning for mobile - all stay on right */
	}
	.static-hero-with-products .hero-products:has(.hero-product-item:only-child), .static-hero-with-products .hero-products:has(.hero-product-item:nth-child(2):last-child) {
		left: auto;
		right: 2%;
		transform: none;
		justify-content: center;
		max-width: 50%;
	}
	.static-hero-with-products .hero-products {
		/* Single product on mobile - smaller */
	}
	.static-hero-with-products .hero-products:has(.hero-product-item:only-child) {
		max-width: 40%;
	}
	.static-hero-with-products .hero-product-item img {
		max-width: clamp(140px, 24vw, 200px);
		max-height: clamp(210px, 36vh, 310px);
	}
	.static-hero-with-products .hero-product-item {
		/* Tighter overlapping on mobile */
	}
	.static-hero-with-products .hero-product-item[data-product-index="0"] {
		margin-right: -40px;
		margin-bottom: -10px;
		z-index: 1;
	}
	.static-hero-with-products .hero-product-item[data-product-index="1"] {
		margin-bottom: 5px;
		z-index: 2;
	}
	.static-hero-with-products .hero-product-item[data-product-index="2"] {
		margin-left: -40px;
		margin-bottom: -5px;
		z-index: 3;
	}
}
@media (max-width: 480px) {
	.static-hero-with-products .text-container {
		text-align: center;
		padding: 20px 16px;
	}
	.static-hero-with-products .title .hero-title {
		display: flex;
		justify-content: center;
		font-size: clamp(2rem, 8vw, 3rem);
	}
	.static-hero-with-products .desc .hero-subtitle {
		font-size: clamp(1rem, 4vw, 1.5rem);
	}
	.static-hero-with-products .desc .hero-desc {
		font-size: clamp(0.95rem, 3.5vw, 1.125rem);
	}
	.static-hero-with-products .cta .hero-cta {
		padding: 12px 24px;
		font-size: 1rem;
	}
	.static-hero-with-products .hero-products {
		max-width: 100%;
		gap: 0;
		/* Adjust for fewer products on very small screens */
	}
	.static-hero-with-products .hero-products:has(.hero-product-item:only-child) {
		max-width: 45%;
	}
	.static-hero-with-products .hero-products:has(.hero-product-item:nth-child(2):last-child) {
		max-width: 60%;
	}
	.static-hero-with-products .hero-product-item img {
		max-width: clamp(170px, 30vw, 180px);
		max-height: clamp(265px, 43vh, 340px);
	}
	.static-hero-with-products .hero-product-item {
		/* Even tighter overlapping on small mobile */
	}
	.static-hero-with-products .hero-product-item[data-product-index="0"] {
		margin-right: -35px;
		margin-bottom: -8px;
	}
	.static-hero-with-products .hero-product-item[data-product-index="1"] {
		margin-bottom: 4px;
	}
	.static-hero-with-products .hero-product-item[data-product-index="2"] {
		margin-left: -35px;
		margin-bottom: -4px;
	}
}
.static-hero-with-products {
	/* ===========================================
	   ACCESSIBILITY
	   =========================================== */
}
@media (prefers-reduced-motion: reduce) {
	.static-hero-with-products * {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
.static-hero-with-products {
	/* ===========================================
	   PRINT STYLES
	   =========================================== */
}
@media print {
	.static-hero-with-products .image-container::before {
		display: none;
	}
	.static-hero-with-products .hero-products {
		display: none;
	}
}

.product-details-section {
	position: relative;
	padding: 80px 20px;
}
@media (max-width: 768px) {
	.product-details-section {
		padding: 60px 20px;
	}
}
.product-details-section__container {
	max-width: 1400px;
	margin: 0 auto;
}
.product-details-section__header {
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.product-details-section__header {
		margin-bottom: 40px;
	}
}
.product-details-section__heading {
	font-weight: 700;
	margin: 0 0 15px;
}
@media (max-width: 768px) {
	.product-details-section__heading {
		font-size: 32px;
	}
}
.product-details-section__subtitle {
	margin: 0;
}
@media (max-width: 768px) {
	.product-details-section__subtitle {
		font-size: 16px;
	}
}
.product-details-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
@media (max-width: 1024px) {
	.product-details-section__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}
@media (max-width: 640px) {
	.product-details-section__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.product-category-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease;
}
.product-category-card:hover {
	transform: translateY(-5px);
}
.product-category-card:hover .product-category-card__subcategories {
	opacity: 1;
	visibility: visible;
}
.product-category-card__inner {
	position: relative;
	background-color: #1B5E20;
	transition: background-color 0.3s ease;
}
.product-category-card__image {
	width: 100%;
	padding-top: 75%;
	position: relative;
	overflow: hidden;
}
.product-category-card__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.product-category-card__content {
	padding: 30px;
	text-align: center;
	min-height: 180px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.product-category-card__title {
	font-size: 32px;
	font-weight: 700;
	color: #FFFFFF;
	margin: 0 0 20px;
}
@media (max-width: 768px) {
	.product-category-card__title {
		font-size: 28px;
	}
}
.product-category-card__subcategories {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.product-category-card__trigger {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 10;
}

.subcategory-item {
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}
.subcategory-item:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.subcategory-item {
		font-size: 14px;
	}
}

.product-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}
.product-modal.is-open {
	display: flex;
}
.product-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease;
}
.product-modal__container {
	position: relative;
	background-color: #1B5E20;
	border-radius: 20px;
	max-width: 1000px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	z-index: 10;
	animation: slideUp 0.4s ease;
}
@media (max-width: 768px) {
	.product-modal__container {
		width: 95%;
		max-height: 85vh;
	}
}
.product-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	transition: all 0.3s ease;
}
.product-modal__close:hover {
	background-color: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}

.product-slider {
	position: relative;
	padding: 60px 80px;
}
@media (max-width: 768px) {
	.product-slider {
		padding: 40px 50px;
	}
}
.product-slider__track {
	position: relative;
	overflow: hidden;
}
.product-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 15;
}
.product-slider__nav:hover {
	background-color: rgba(255, 255, 255, 0.3);
}
.product-slider__nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.product-slider__nav--prev {
	left: 20px;
}
.product-slider__nav--next {
	right: 20px;
}
@media (max-width: 768px) {
	.product-slider__nav {
		width: 40px;
		height: 40px;
	}
	.product-slider__nav--prev {
		left: 10px;
	}
	.product-slider__nav--next {
		right: 10px;
	}
}

.product-slide {
	display: none;
}
.product-slide.is-active {
	display: block;
	animation: fadeIn 0.5s ease;
}
.product-slide__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
@media (max-width: 768px) {
	.product-slide__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
.product-slide__badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: #C8D400;
	color: #FFFFFF;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	transform: rotate(-5deg);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.product-slide__images {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px;
}
.product-slide__info {
	color: #FFFFFF;
}
.product-slide__description {
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 25px;
	color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
	.product-slide__description {
		font-size: 15px;
	}
}
.product-slide__info-link {
	display: inline-block;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 0;
	border-bottom: 2px solid #FFFFFF;
	transition: opacity 0.3s ease;
}
.product-slide__info-link:hover {
	opacity: 0.8;
}
.product-slide__like {
	grid-column: 1/-1;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.product-image {
	width: 45%;
}
.product-image img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}
.product-image--package {
	width: 50%;
}
.product-image--single {
	width: 40%;
}

.like-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background: rgba(200, 212, 0, 0.2);
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.like-button:hover {
	background: rgba(200, 212, 0, 0.3);
	transform: scale(1.05);
}
.like-button.is-liked .like-button__icon path {
	fill: #C8D400;
	stroke: #C8D400;
}
.like-button__icon {
	transition: all 0.3s ease;
}
.like-button__count {
	font-size: 18px;
	font-weight: 700;
	color: #FFFFFF;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/**
 * What's New Section Styles
 * @version 3.0.0 - Updated for proper Swiper structure
 *
 * Changelog:
 * v3.0.0 - Updated to work with proper Swiper HTML structure:
 *         - Using .news-slider as main container
 *         - .news-slider__wrp as swiper-wrapper
 *         - .news-slider__item as swiper-slide
 *         - Keeping existing card design inside slides
 * v2.0.0 - Migrated to Swiper.js
 * v1.3.0 - Improved grid layout
 */
.whats-new {
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}
.whats-new__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.whats-new__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}
@media (max-width: 768px) {
	.whats-new {
		padding: 60px 20px;
	}
}
.whats-new__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 0;
}
.whats-new__header {
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.whats-new__header {
		margin-bottom: 40px;
	}
}
.whats-new__heading {
	font-weight: 700;
	margin: 0;
	position: relative;
	display: inline-block;
}

.news-slider {
	padding-top: 10px;
	position: relative;
	overflow: hidden;
}
.news-slider__wrp {
	display: flex;
	transition-property: transform;
}
.news-slider__item {
	width: 680px;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.news-slider__item {
		width: 600px;
	}
}
@media (max-width: 768px) {
	.news-slider__item {
		width: 90vw;
		max-width: 500px;
	}
}
.news-slider__ctr {
	position: relative;
	z-index: 12;
}
.news-slider__arrows {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	bottom: 235px;
	left: 0;
}
.news-slider__arrow {
	background: #FFFFFF;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color: #333333;
}
.news-slider__arrow:hover {
	background: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.news-slider__arrow:active {
	transform: scale(0.95);
}
.news-slider__arrow svg {
	width: 24px;
	height: 24px;
}
@media (max-width: 768px) {
	.news-slider__arrow {
		width: 40px;
		height: 40px;
	}
	.news-slider__arrow svg {
		width: 20px;
		height: 20px;
	}
}
.news-slider__pagination {
	text-align: center;
	margin-top: 20px;
}
.news-slider__pagination :global(.swiper-pagination-bullet) {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
	margin: 0 5px;
}
.news-slider__pagination :global(.swiper-pagination-bullet):hover {
	background: rgba(0, 0, 0, 0.4);
}
.news-slider__pagination :global(.swiper-pagination-bullet-active) {
	background: #1B5E20;
	width: 24px;
	border-radius: 5px;
}

.news__item {
	display: grid;
	grid-template-columns: 2fr 1fr;
	text-decoration: none;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
	height: 350px;
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
	text-decoration: none;
}
.news__item {
	align-items: stretch;
}
@media (max-width: 768px) {
	.news__item {
		grid-template-columns: 1fr;
		grid-template-rows: 2fr 1fr;
		height: auto;
		min-height: 300px;
	}
}
.news__item.news-card--type-product {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news__item.news-card--type-product_post, .news__item.news-card--type-post {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(15.6198347107, 54.3801652893, 18.5123966942) 100%);
}
.news__item.news-card--type-recipe {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
.news__item.news-card--type-featured {
	background: linear-gradient(135deg, #1B5E20 0%, #2d5016 100%);
}

.news-card__decorative-icon {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 40px;
	height: 40px;
	z-index: 10;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.news-card__decorative-icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 768px) {
	.news-card__decorative-icon {
		top: 16px;
		left: 16px;
		width: 32px;
		height: 32px;
	}
}
.news-card__badge {
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 10;
	transform: rotate(-3deg);
}
@media (max-width: 768px) {
	.news-card__badge {
		top: 16px;
		right: 16px;
	}
}
.news-card__content {
	padding: 60px 50px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
}
@media (max-width: 1024px) {
	.news-card__content {
		padding: 40px 30px;
	}
}
@media (max-width: 768px) {
	.news-card__content {
		padding: 30px 20px;
		grid-column: 1;
		grid-row: 1;
	}
}
.news-card__title {
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #FFFFFF !important;
}
@media (max-width: 768px) {
	.news-card__title {
		font-size: 1.25rem;
		margin-bottom: 12px;
	}
}
.news-card__highlight {
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 16px;
	line-height: 1.3;
}
@media (max-width: 768px) {
	.news-card__highlight {
		margin-bottom: 12px;
	}
}
.news-card__description {
	line-height: 1.65;
	margin: 0 0 20px;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.95);
	max-width: 500px;
}
@media (max-width: 768px) {
	.news-card__description {
		margin-bottom: 16px;
	}
}
.news-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
	padding-top: 8px;
	width: -moz-fit-content;
	width: fit-content;
}
.news-card__cta .arrow {
	transition: transform 0.3s ease;
}
.news-card__cta:hover {
	color: #4CAF50 !important;
	text-decoration: none;
}
.news-card__cta:hover .arrow {
	transform: translateX(4px);
}
.news-card__image {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-height: 350px;
}
.news-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 768px) {
	.news-card__image {
		grid-column: 1;
		grid-row: 2;
		max-height: 200px;
	}
}

.badge {
	display: inline-block;
	padding: 10px 24px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	color: #FFFFFF;
}
.badge::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF7043 0%, rgb(255, 80.9659574468, 26.2) 100%);
	transform: skewX(-10deg);
	border-radius: 6px;
	z-index: -1;
	box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
}
.badge--new {
	color: #FFFFFF;
}
.badge--news::before {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.badge--product::before {
	background: linear-gradient(135deg, #FF9800 0%, rgb(214.2, 127.68, 0) 100%);
}
.badge--recipe::before {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
@media (max-width: 768px) {
	.badge {
		padding: 8px 18px;
	}
}

.whats-new {
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 768px) {
	.whats-new {
		padding: 60px 20px;
	}
}
.whats-new__container {
	max-width: 1400px;
	margin: 0 auto;
}
.whats-new__header {
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.whats-new__header {
		margin-bottom: 40px;
	}
}
.whats-new__heading {
	font-weight: 700;
	margin: 0;
	position: relative;
	display: inline-block;
}
.whats-new__grid {
	display: flex;
	flex-direction: row;
	gap: 30px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
	padding: 20px 10px 40px;
	margin: -20px -10px;
	cursor: grab;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.whats-new__grid:active {
	cursor: grabbing;
}
.whats-new__grid::-webkit-scrollbar {
	height: 8px;
}
.whats-new__grid::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}
.whats-new__grid::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}
.whats-new__grid::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
	.whats-new__grid {
		gap: 20px;
		padding: 15px 5px 30px;
	}
}

.news-card {
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
	height: auto;
	scroll-snap-align: center;
}
.news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.news-card--horizontal {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-width: 700px;
	max-width: 800px;
	min-height: 350px;
	max-height: 350px;
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
@media (max-width: 1024px) {
	.news-card--horizontal {
		min-width: 600px;
		min-height: 300px;
	}
}
@media (max-width: 768px) {
	.news-card--horizontal {
		grid-template-columns: 1fr;
		grid-template-rows: auto 300px;
		min-width: 300px;
		max-width: 360px;
		min-height: auto;
		max-height: 100%;
	}
}
.news-card__decorative-icon {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 40px;
	height: 40px;
	z-index: 10;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.news-card__decorative-icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 768px) {
	.news-card__decorative-icon {
		width: 32px;
		height: 32px;
		top: 16px;
		left: 16px;
	}
}
.news-card__badge {
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 10;
	transform: rotate(-3deg);
}
@media (max-width: 768px) {
	.news-card__badge {
		top: 5%;
		right: 5%;
	}
}
.news-card__content {
	padding: 60px 50px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
}
@media (max-width: 1024px) {
	.news-card__content {
		padding: 40px 35px;
	}
}
@media (max-width: 768px) {
	.news-card__content {
		padding: 40px 30px 30px;
		grid-row: 1;
	}
}
.news-card__title {
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #FFFFFF;
}
@media (max-width: 768px) {
	.news-card__title {
		margin-bottom: 12px;
	}
}
.news-card__highlight {
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 16px;
	line-height: 1.3;
}
@media (max-width: 768px) {
	.news-card__highlight {
		margin-bottom: 12px;
	}
}
.news-card__description {
	line-height: 1.65;
	margin: 0 0 20px;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.95);
	max-width: 500px;
}
@media (max-width: 768px) {
	.news-card__description {
		margin-bottom: 16px;
	}
}
.news-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
	padding-top: 8px;
	width: -moz-fit-content;
	width: fit-content;
}
.news-card__cta .arrow {
	transition: transform 0.3s ease;
}
.news-card__cta:hover {
	color: #4CAF50 !important;
}
.news-card__cta:hover .arrow {
	transform: translateX(5px);
}
.news-card__image {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-height: 350px;
}
.news-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
@media (max-width: 768px) {
	.news-card__image {
		grid-column: 1;
		grid-row: 2;
		min-height: 300px;
	}
}
.news-card--type-product {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news-card--type-product_post, .news-card--type-post {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(15.6198347107, 54.3801652893, 18.5123966942) 100%);
}
.news-card--type-recipe {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
.news-card--type-featured {
	background: linear-gradient(135deg, #1B5E20 0%, #2d5016 100%);
}

.badge {
	display: inline-block;
	padding: 10px 24px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	color: #FFFFFF;
}
.badge::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF7043 0%, rgb(255, 80.9659574468, 26.2) 100%);
	transform: skewX(-10deg);
	border-radius: 6px;
	z-index: -1;
	box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
}
.badge--new {
	color: #FFFFFF;
}
.badge--news::before {
	background: linear-gradient(135deg, #2196F3 0%, rgb(11.5384615385, 124.0384615385, 213.4615384615) 100%);
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}
.badge--product::before {
	background: linear-gradient(135deg, #4CAF50 0%, rgb(60.5577689243, 139.4422310757, 63.7450199203) 100%);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
.badge--recipe::before {
	background: linear-gradient(135deg, #FF5722 0%, rgb(248.2, 59.5230769231, 0) 100%);
	box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}
@media (max-width: 768px) {
	.badge {
		padding: 8px 18px;
	}
}

.btn--small {
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn--secondary {
	background-color: #4CAF50;
	color: #FFFFFF;
	border: none;
	text-decoration: none;
	display: inline-block;
}
.btn--secondary:hover {
	background-color: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.whats-new-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	/* margin-top: 4px; */
	z-index: 55;
	position: relative;
	bottom: 195px;
	left: 0;
}
@media (max-width: 768px) {
	.whats-new-navigation {
		margin-top: 15px;
	}
}
.whats-new-navigation :global(.swiper-pagination-bullet) {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
}
.whats-new-navigation :global(.swiper-pagination-bullet):hover {
	background: rgba(0, 0, 0, 0.4);
}
.whats-new-navigation :global(.swiper-pagination-bullet-active) {
	background: #1B5E20;
	width: 24px;
	border-radius: 5px;
}

.moments-section {
	padding-top: 1px;
	padding-bottom: 1px;
	position: relative;
	padding: 100px 20px;
}
.moments-section__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.moments-section__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}
@media (max-width: 768px) {
	.moments-section {
		padding: 80px 20px;
	}
}
.moments-section__container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 3;
}
.moments-section__header {
	margin-bottom: 60px;
	display: flex;
	text-align: center;
	justify-content: center;
	flex-direction: column;
	align-content: center;
	align-items: center;
}
@media (max-width: 768px) {
	.moments-section__header {
		margin-bottom: 40px;
	}
}
.moments-section__title-wrapper {
	margin-bottom: 40px;
}
@media (max-width: 768px) {
	.moments-section__title-wrapper {
		margin-bottom: 30px;
	}
}
.moments-section__heading {
	font-weight: 700;
	margin-bottom: 15px;
}
.moments-section__subtitle {
	margin-bottom: 20px;
}
.moments-section__cta {
	margin-top: 20px;
}
.moments-section__load-more {
	text-align: center;
	margin-top: 50px;
}

.moments-filter {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
@media (max-width: 640px) {
	.moments-filter {
		gap: 8px;
	}
}
.moments-filter__btn {
	padding: 12px 28px;
	background-color: transparent;
	border: 2px solid #E0E0E0;
	border-radius: 25px;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}
.moments-filter__btn:hover {
	border-color: #4CAF50;
	color: #E8F5E9;
	background-color: rgba(27, 94, 32, 0.05);
}
.moments-filter__btn.is-active {
	background-color: #2d5016;
	border-color: #4CAF50;
	color: #FFFFFF;
}
@media (max-width: 640px) {
	.moments-filter__btn {
		padding: 10px 20px;
	}
}

.moments-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
@media (max-width: 1200px) {
	.moments-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
}
@media (max-width: 768px) {
	.moments-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (max-width: 480px) {
	.moments-grid {
		grid-template-columns: 1fr;
	}
}

.moment-card {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 1;
	transform: scale(1);
}
.moment-card.is-hidden {
	display: none;
}
.moment-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.moment-card:hover .moment-card__overlay {
	opacity: 1;
}
.moment-card__tag {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
}
.moment-card__image {
	position: relative;
	width: 100%;
	padding-top: 75%;
	overflow: hidden;
}
.moment-card__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.moment-card:hover .moment-card__image img {
	transform: scale(1.1);
}
.moment-card__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: rgba(27, 94, 32, 0.85);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.moment-card__title {
	color: #FFFFFF;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}
.moment-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #FFFFFF;
	z-index: 9;
}
.moment-card__share, .moment-card__like {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
	color: #666666;
	transition: color 0.3s ease;
	padding: 5px;
}
.moment-card__share:hover, .moment-card__like:hover {
	color: #1B5E20;
}
.moment-card__like.is-liked .moment-card__like__like-icon path {
	fill: #4CAF50;
	stroke: #4CAF50;
}
.moment-card__like-count {
	font-size: 14px;
	font-weight: 600;
}
.moment-card__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80%;
	z-index: 5;
}

.tag {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
}
.tag--recipes {
	background-color: #FF6B35;
}
.tag--diy {
	background-color: #4CAF50;
}
.tag--games {
	background-color: #2196F3;
}
.tag--all {
	background-color: #9E9E9E;
}

.moments-load-more {
	min-width: 200px;
}
.moments-load-more:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* =====================================================
   HISTORY CAROUSEL SECTION STYLES
   Version: 2.0

   Changes in v2.0:
   - Complete redesign as interactive horizontal carousel
   - Card-based milestone display (3-4 featured items)
   - Swipe/drag navigation with touch support
   - Animated timeline connection line
   - CTA card at the end
   - Removed: complex map, static product layout
   ===================================================== */
/* =====================================================
   SECTION WRAPPER
   ===================================================== */
.history-carousel-section {
	position: relative;
	padding: clamp(80px, 10vh, 120px) 0;
	overflow: hidden;
}
.history-carousel-section__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.history-carousel-section__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}
.history-carousel-section__wave .wave-svg path {
	fill: #ecf2ee !important;
}
.history-carousel-section__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}
.history-carousel-section {
	/* =====================================================
	   SECTION HEADER
	   ===================================================== */
}
.history-carousel-section__header {
	text-align: center;
	margin-bottom: clamp(50px, 6vh, 70px);
	position: relative;
	z-index: 2;
}
.history-carousel-section__heading {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.2;
}
.history-carousel-section__subheading {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	opacity: 0.85;
	margin: 0;
}
.history-carousel-section {
	/* =====================================================
	   TIMELINE LINE
	   ===================================================== */
}
.history-carousel-section__timeline-line {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 1000px;
	z-index: 1;
	opacity: 0.2;
	pointer-events: none;
}
@media (max-width: 768px) {
	.history-carousel-section__timeline-line {
		display: none;
	}
}
.history-carousel-section__timeline-line .timeline-line {
	width: 100%;
	height: 4px;
	display: block;
}
.history-carousel-section__empty {
	text-align: center;
	padding: 60px 20px;
	opacity: 0.6;
}

/* =====================================================
   CAROUSEL
   ===================================================== */
.history-carousel {
	position: relative;
	z-index: 2;
}
.history-carousel__track {
	display: flex;
	gap: clamp(20px, 3vw, 40px);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 50px 10px;
	margin: 0 clamp(-10px, -2vw, -20px);
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.history-carousel__track::-webkit-scrollbar {
	display: none;
}
.history-carousel__track {
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
	.history-carousel__track {
		gap: 15px;
		padding: 30px 10px;
	}
}
.history-carousel {
	/* =====================================================
	   CAROUSEL CARD
	   ===================================================== */
}
.history-carousel__card {
	flex: 0 0 auto;
	width: clamp(300px, 35vw, 490px);
	scroll-snap-align: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	padding: clamp(30px, 4vw, 40px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}
@media (max-width: 768px) {
	.history-carousel__card {
		width: 280px;
		padding: 25px;
	}
}
.history-carousel__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
	border-color: var(--card-accent-color, #C8D400);
}
.history-carousel__card--cta {
	background: linear-gradient(135deg, #1B5E20 0%, #2d5016 100%);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 450px;
}
@media (max-width: 768px) {
	.history-carousel__card--cta {
		min-height: 400px;
	}
}
.history-carousel__card--cta:hover {
	border-color: #B3D334;
}

/* =====================================================
   HISTORY CARD ELEMENTS
   ===================================================== */
.history-card {
	/* YEAR BADGE */
}
.history-card__year {
	margin-bottom: 20px;
}
.history-card__year-badge {
	display: inline-block;
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--card-accent-color, #C8D400);
	background: rgba(var(--card-accent-color-rgb, 200, 212, 0), 0.1);
	padding: 8px 20px;
	border-radius: 50px;
	line-height: 1;
	letter-spacing: -0.5px;
}
.history-card {
	/* VISUAL (Image Container) */
}
.history-card__visual {
	position: relative;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}
@media (max-width: 768px) {
	.history-card__visual {
		min-height: 180px;
	}
}
.history-card__blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 85%;
	height: 85%;
	background: radial-gradient(circle, rgba(var(--card-accent-color-rgb, 200, 212, 0), 0.15) 0%, transparent 70%);
	border-radius: 50%;
	animation: blobPulse 4s ease-in-out infinite;
}
.history-card__image {
	position: relative;
	z-index: 2;
	max-width: 100%;
	max-height: 220px;
	width: auto;
	height: auto;
	filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
	animation: cardFloat 4s ease-in-out infinite;
	transition: transform 0.3s ease;
}
.history-carousel__card:hover .history-card__image {
	transform: scale(1.05);
}
@media (max-width: 768px) {
	.history-card__image {
		max-height: 180px;
	}
}
.history-card {
	/* CONTENT */
}
.history-card__content {
	text-align: center;
}
.history-card__tagline {
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	color: #2d5016 !important;
}
.history-card {
	/* TIMELINE DOT */
}
.history-card__dot {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background: #4CAF50;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgb(255, 255, 255), 0 0 0 6px #4CAF50;
}
@media (max-width: 768px) {
	.history-card__dot {
		display: none;
	}
}
.history-card {
	/* CTA CARD CONTENT */
}
.history-card__cta-content {
	text-align: center;
}
.history-card__cta-icon {
	margin-bottom: 20px;
	color: #B3D334;
	animation: iconBounce 2s ease-in-out infinite;
}
.history-card__cta-icon svg {
	display: inline-block;
}
.history-card__cta-heading {
	font-size: clamp(1.6rem, 3vw, 2rem);
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 25px;
}
.history-card__cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: #B3D334;
	color: #2d5016;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #B3D334;
}
.history-card__cta-button .btn__arrow {
	transition: transform 0.3s ease;
}
.history-card__cta-button:hover {
	background: #FFFFFF;
	color: #1B5E20;
	transform: translateX(5px);
}
.history-card__cta-button:hover .btn__arrow {
	transform: translateX(5px);
}

/* =====================================================
   CAROUSEL CONTROLS
   ===================================================== */
.history-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-top: clamp(40px, 5vh, 60px);
}
@media (max-width: 768px) {
	.history-carousel__controls {
		gap: 20px;
	}
}

/* NAV BUTTONS */
.history-carousel__nav {
	background: #FFFFFF;
	border: 2px solid #1B5E20;
	color: #1B5E20;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
@media (max-width: 768px) {
	.history-carousel__nav {
		width: 40px;
		height: 40px;
	}
}
.history-carousel__nav:hover:not(:disabled) {
	background: #1B5E20;
	color: #FFFFFF;
	transform: scale(1.1);
}
.history-carousel__nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	border-color: #ccc;
	color: #ccc;
}
.history-carousel__nav svg {
	display: block;
}

/* DOTS */
.history-carousel__dots {
	display: flex;
	align-items: center;
	gap: 12px;
}
@media (max-width: 768px) {
	.history-carousel__dots {
		gap: 8px;
	}
}

.history-carousel__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #4CAF50;
	border: 2px solid #1B5E20;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}
.history-carousel__dot:hover {
	background: rgba(76, 175, 80, 0.7);
	transform: scale(1.2);
}
.history-carousel__dot.is-active {
	background: #1B5E20;
	border-color: #B3D334;
	width: 14px;
	height: 14px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes cardFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-12px);
	}
}
@keyframes blobPulse {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.8;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.1);
		opacity: 1;
	}
}
@keyframes iconBounce {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
/* =====================================================
   ACCESSIBILITY
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
	.history-carousel__track {
		scroll-behavior: auto;
	}
	.history-card__image,
	.history-card__blob,
	.history-card__cta-icon {
		animation: none;
	}
	.history-carousel__card {
		transition: none;
	}
}
/* Focus styles for keyboard navigation */
.history-carousel__nav:focus-visible,
.history-carousel__dot:focus-visible {
	outline: 3px solid #B3D334;
	outline-offset: 3px;
}

/**
 * Footer Styles
 * Version: 2.0
 *
 * Changes in v2.0:
 * - Added social media icons styles
 * - Updated footer grid for Vita consistency
 * - Added footer description styles
 * - Enhanced responsive behavior
 * - Improved typography and spacing
 */
.site-footer {
	position: relative;
	background-color: #1B5E20;
	color: #FFFFFF;
}
.site-footer__wave {
	position: absolute;
	top: -59px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.site-footer__wave .wave-svg {
	transform: scaleY(-1);
	display: block;
	width: 100%;
	height: 60px;
}
.site-footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
@media (max-width: 640px) {
	.site-footer__container {
		padding: 0 15px;
	}
}
.site-footer__main {
	padding: 20px 0 40px;
}
@media (max-width: 640px) {
	.site-footer__main {
		padding: 15px 0 30px;
	}
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: start;
}
@media (max-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
}
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 25px 0;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
@media (max-width: 1024px) {
	.footer-columns {
		gap: 25px;
	}
}
@media (max-width: 640px) {
	.footer-columns {
		grid-template-columns: 1fr;
		gap: 25px;
		text-align: center;
	}
}

.footer-brand {
	text-align: center;
}
@media (max-width: 640px) {
	.footer-brand {
		text-align: center;
	}
}
.footer-brand__logo {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}
@media (max-width: 640px) {
	.footer-brand__logo {
		justify-content: center;
	}
}
.footer-brand__logo a {
	display: inline-block;
	transition: opacity 0.3s ease;
}
.footer-brand__logo a:hover {
	opacity: 0.8;
}
.footer-brand__logo img {
	max-width: 150px;
	height: auto;
}
@media (max-width: 640px) {
	.footer-brand__logo img {
		max-width: 120px;
	}
}
.footer-brand__name {
	font-family: "ParafinaL", sans-serif;
	font-size: 4.5rem;
	font-weight: 700;
	color: #B3D334;
	margin-bottom: 5px;
	line-height: 0.9;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.footer-brand__name {
		font-size: clamp(2.5rem, 8vw, 3.5rem);
		max-width: none;
		text-align: center;
	}
}
.footer-brand__name a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}
.footer-brand__name a:hover {
	opacity: 0.85;
}
.footer-brand__tagline {
	line-height: 1.2;
	max-width: 250px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.9);
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.footer-brand__tagline {
		max-width: 300px;
		text-align: center;
	}
}
.footer-brand__description {
	line-height: 1.6;
	max-width: 280px;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.footer-brand__description {
		max-width: 320px;
		text-align: center;
	}
}
.footer-brand__social {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	justify-content: center;
}
@media (max-width: 640px) {
	.footer-brand__social {
		justify-content: center;
	}
}

.footer-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #FFFFFF;
	transition: all 0.3s ease;
}
.footer-social__link svg {
	width: 20px;
	height: 20px;
}
.footer-social__link:hover {
	background: #B3D334;
	color: #2d5016;
	transform: translateY(-3px);
}

@media (max-width: 640px) {
	.footer-column {
		text-align: center;
	}
}
.footer-column__title {
	font-weight: 700;
	margin-bottom: 20px;
	color: #FFFFFF;
}
@media (max-width: 640px) {
	.footer-column__title {
		text-align: center;
	}
}
.footer-column__links {
	list-style: none;
	padding: 0;
	margin: 0;
}
@media (max-width: 640px) {
	.footer-column__links {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.footer-column__links li {
	margin-bottom: 12px;
}
.footer-column__links li:last-child {
	margin-bottom: 0;
}
.footer-column__links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}
.footer-column__links a::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #B3D334;
	transition: width 0.3s ease;
}
.footer-column__links a:hover {
	color: #FFFFFF;
}
@media (min-width: 641px) {
	.footer-column__links a:hover {
		transform: translateX(5px);
	}
}
.footer-column__links a:hover::before {
	width: 100%;
}

.footer-partner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer-partner__logo {
	max-width: 120px;
	height: auto;
}

.footer-bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: center;
}
@media (max-width: 768px) {
	.footer-bottom {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}
}
.footer-bottom__copyright {
	color: rgba(255, 255, 255, 0.7);
}
.footer-bottom__copyright p {
	margin: 0;
	font-size: 0.9rem;
}
.footer-bottom__middle {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-bottom__links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
@media (max-width: 768px) {
	.footer-bottom__links {
		justify-content: center;
	}
}
.footer-bottom__links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}
.footer-bottom__links a::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #B3D334;
	transition: width 0.3s ease;
}
.footer-bottom__links a:hover {
	color: #FFFFFF;
	transform: translateY(-5px);
}
.footer-bottom__links a:hover::before {
	width: 100%;
}

/* XYZ Logo Animation Styles */
:root {
	--footSize: min(5vw, 35px);
}

.wrap {
	padding-top: 0;
	display: grid;
	place-items: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	margin: 0 auto;
	width: 100%;
	max-width: 750px;
}
.wrap .xyz-logo {
	width: var(--footSize);
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.wrap .xyz-logo:hover {
	transform: scale(1.05);
}

/* Animated scroll down mouse icon */
.mouse {
	width: 40px;
	height: 72px;
	border: 2px solid #fff;
	border-radius: 60px;
	position: relative;
}

.mouse::before {
	content: "";
	width: 4px;
	height: 12px;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 10%;
	opacity: 1;
	animation: wheel 2s infinite;
	-webkit-animation: wheel 2s infinite;
}

.mouse {
	cursor: pointer;
	z-index: 55;
}

.mousea {
	cursor: pointer;
}

@keyframes wheel {
	to {
		opacity: 0;
		top: 50px;
	}
}
/* BACK TO TOP BUTTON */
.progress-wrap {
	position: fixed;
	right: 50px;
	bottom: 50px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.5);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after,
.progress-wrap::before {
	position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f062";
	font-weight: 600;
	text-align: center;
	line-height: 46px;
	font-size: 24px;
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

.progress-wrap::after {
	color: rgba(186, 173, 106, 0.55);
}

.progress-wrap::before {
	opacity: 0;
	background-image: linear-gradient(45deg, #4CAF50, #B3D334);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 2;
}

.progress-wrap:hover::after {
	opacity: 0;
}

.progress-wrap:hover::before {
	opacity: 1;
}

.progress-wrap svg path {
	fill: none;
	stroke: #4CAF50;
	stroke-width: 4;
}

.progress-wrap svg path.progress-circle path {
	stroke: var(--accent);
	stroke-width: 4;
	box-sizing: border-box;
	transition: all 200ms linear;
	-webkit-transition: all 200ms linear;
}

/* vertical centering */
.valign-middle {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

/* position centering */
.position-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.position-center-bottom {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(0, -50%);
}

.forward {
	z-index: 1000;
}

/**
 * Products Section Styles
 * @version 1.1.0
 *
 * Changelog:
 * v1.1.0 - Enhanced interactivity and mobile responsiveness:
 *         - Added product-item wrapper and product-link styles
 *         - Product names now hidden by default, shown on hover
 *         - Increased mobile padding to prevent image cropping on scale
 *         - Fixed overflow-y to handle scaled images properly
 *         - Added smooth transitions for product name appearance
 */
:root {
	--edge-fade: linear-gradient(to right, transparent, black 20%, black 80%, transparent) ;
}

.section-products {
	text-align: center;
	padding-top: 1px;
	padding-bottom: 1px;
}
.section-products__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.section-products__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}

.section-products .container {
	padding-top: 3%;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

/* Product Item Wrapper */
.section-products .product-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

/* Product Link */
.section-products .product-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	position: relative;
	width: 100%;
}

/* Product Name - Hidden by default, shown on hover */
.section-products .product-name {
	display: block;
	margin-top: 12px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
	text-align: center;
}

.section-products .product-link:hover .product-name,
.section-products .product-link:focus .product-name {
	opacity: 1;
	transform: translateY(0);
}

.section-products .product-link:hover .product-name {
	color: #fccf27;
}

.section-products .products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 24px;
	mask-image: var(--edge-fade);
	-webkit-mask-image: var(--edge-fade);
}

/* Mobile-first approach for responsive grid */
.section-products .products-grid {
	grid-template-columns: 1fr; /* Start with single column on smallest screens */
	gap: clamp(20px, 5vw, 40px) clamp(16px, 3vw, 24px);
}

/* Then progressively enhance for larger screens */
@media (min-width: 641px) {
	.section-products .products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1025px) {
	.section-products .products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.section-products .product {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.section-products .product-title {
	font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
	font-weight: 600;
	line-height: 1.4;
	transition: color 0.2s ease;
}
.section-products .product-title:hover {
	color: #fccf27;
}

.section-products .products-grid img,
.section-products .product-image {
	margin: 0 auto;
	padding: 0;
	--s: 250px;
	--b: 2px;
	--c: #ae3ec9;
	--cb: #e9ecef;
	--f: 0.85;
	width: var(--s);
	aspect-ratio: 1;
	cursor: pointer;
	border-radius: 0 0 999px 999px;
	--_g: 50% / calc(100% / var(--f)) 100% no-repeat content-box;
	--_o: calc((1 / var(--f)) * var(--s) / 18 - var(--b));
	outline: var(--b) solid var(--c);
	outline-offset: var(--_o);
	background: radial-gradient(circle closest-side, var(--cb) calc(99% - var(--b)), var(--c) calc(100% - var(--b)) 99%, rgba(0, 0, 0, 0)) var(--_g);
	-webkit-mask: linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o))/calc(100% / var(--f) - 2 * var(--b) - 2px) 50%, radial-gradient(circle closest-side, #000 99%, rgba(0, 0, 0, 0)) var(--_g);
	mask: linear-gradient(#000 0 0) no-repeat 50% calc(1px - var(--_o))/calc(100% / var(--f) - 2 * var(--b) - 2px) 50%, radial-gradient(circle closest-side, #000 99%, rgba(0, 0, 0, 0)) var(--_g);
	transform: scale(var(--f));
	transition: 0.5s;
}

.section-products .products-grid img:hover,
.section-products .product-image:hover {
	--f:1.4;
}

.section-products .products-grid--swipe {
	display: flex; /* override grid */
	flex-wrap: nowrap;
	gap: 50px;
	overflow-x: auto;
	overflow-y: visible; /* Allow images to scale vertically */
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px; /* small room for focus ring */
	scrollbar-width: none; /* Firefox hide scrollbar */
	padding-top: 5%;
}

.section-products .products-grid--swipe::-webkit-scrollbar {
	display: none;
} /* WebKit */
/* Each item snaps to the center - now targeting product-item wrapper */
.section-products .products-grid--swipe .product-item {
	scroll-snap-align: center;
	flex: 0 0 auto;
}

.section-products .products-grid--swipe .product-image {
	/* Keep your existing size variables; ensure a reasonable min-width for swipe */
	min-width: clamp(180px, 45vw, var(--s, 250px));
}

/* On small phones, give much more spacing so scaled images don't get cropped */
@media (max-width: 640px) {
	.section-products .products-grid--swipe {
		padding-top: 25px; /* Increased from 45px to accommodate 1.4 scale */
		padding-bottom: 25px; /* Increased from 35px to accommodate 1.4 scale */
		gap: 30px;
	}
	.section-products .products-grid--swipe .product-image {
		min-width: clamp(180px, 70vw, var(--s, 250px));
	}
}
/* Medium screens also need more padding */
@media (min-width: 641px) and (max-width: 1024px) {
	.section-products .products-grid--swipe {
		padding-top: 15px;
		padding-bottom: 15px;
	}
}
/* --- Arrows for swipe grid --- */
.section-products {
	position: relative;
}

.section-products .products-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background 0.2s ease;
}

.section-products .products-arrow:hover {
	background: rgba(0, 0, 0, 0.7);
}

.section-products .products-arrow.prev {
	left: 16px;
}

.section-products .products-arrow.next {
	right: 16px;
}

/* Responsive styling for navigation arrows */
@media (max-width: 640px) {
	.section-products .products-arrow {
		width: 32px;
		height: 32px;
		font-size: 16px;
		opacity: 0.8;
	}
	.section-products .products-arrow.prev {
		left: 8px;
	}
	.section-products .products-arrow.next {
		right: 8px;
	}
}
/* Only show arrows when hovering over section on larger screens */
@media (min-width: 1025px) {
	.section-products .products-arrow {
		opacity: 0;
		transform: translateY(-50%) scale(0.9);
		transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
	}
	.section-products:hover .products-arrow {
		opacity: 1;
		transform: translateY(-50%) scale(1);
	}
}
/**
 * All Products Grid Section Styles
 * @version 1.1.0
 *
 * Staggered brick layout with overlapping rows:
 * - Row 1: 5 products (centered)
 * - Row 2: 4 products (centered, positioned between row 1 gaps)
 *
 * @changes v1.1.0 - Implemented staggered/brick layout with overlapping effect
 */
.all-products-section {
	position: relative;
	width: 100%;
	padding: clamp(25px, 6vw, 40px) 0;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(45, 80, 22, 0.02) 50%, rgba(255, 255, 255, 0) 100%);
}

.all-products-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 40px);
}
.all-products-container .all-products-header {
	text-align: center;
	margin: 16px 0;
}

.all-products-grid {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	gap: 10px;
	align-items: end;
	justify-items: center;
	position: relative;
}
@media (min-width: 1024px) {
	.all-products-grid {
		gap: 10px;
	}
}

.all-products-item {
	width: 100%;
	max-width: 280px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.all-products-item:nth-child(1) {
	grid-column: 1/3;
	grid-row: 1;
	margin-bottom: -25%;
}
.all-products-item:nth-child(2) {
	grid-column: 3/5;
	grid-row: 1;
	margin-bottom: -30%;
}
.all-products-item:nth-child(3) {
	grid-column: 5/7;
	grid-row: 1;
	margin-bottom: -25%;
}
.all-products-item:nth-child(4) {
	grid-column: 7/9;
	grid-row: 1;
	margin-bottom: -30%;
}
.all-products-item:nth-child(5) {
	grid-column: 9/11;
	grid-row: 1;
	margin-bottom: -25%;
}
.all-products-item:nth-child(6) {
	grid-column: 2/4;
	grid-row: 2;
	margin-top: -15%;
}
.all-products-item:nth-child(7) {
	grid-column: 4/6;
	grid-row: 2;
	margin-top: -20%;
}
.all-products-item:nth-child(8) {
	grid-column: 6/8;
	grid-row: 2;
	margin-top: -15%;
}
.all-products-item:nth-child(9) {
	grid-column: 8/10;
	grid-row: 2;
	margin-top: -20%;
}
.all-products-item:nth-child(10) {
	grid-column: 1/3;
	grid-row: 3;
}
.all-products-item:nth-child(11) {
	grid-column: 3/5;
	grid-row: 3;
}
.all-products-item:nth-child(12) {
	grid-column: 5/7;
	grid-row: 3;
}
.all-products-item:nth-child(13) {
	grid-column: 7/9;
	grid-row: 3;
}
.all-products-item:nth-child(14) {
	grid-column: 9/11;
	grid-row: 3;
}
.all-products-item:nth-child(15) {
	grid-column: 2/4;
	grid-row: 4;
	margin-top: -15%;
}
.all-products-item:nth-child(16) {
	grid-column: 4/6;
	grid-row: 4;
	margin-top: -20%;
}
.all-products-item:nth-child(17) {
	grid-column: 6/8;
	grid-row: 4;
	margin-top: -15%;
}
.all-products-item:nth-child(18) {
	grid-column: 8/10;
	grid-row: 4;
	margin-top: -20%;
}

.all-products-link {
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 280px;
	transition: transform 0.3s ease;
}
.all-products-link:hover {
	transform: translateY(-5px);
}
.all-products-link:hover .all-products-fruit-slice {
	transform: translate(-35%, -35%) scale(1) rotate(-15deg);
	opacity: 1;
}

.all-products-image-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.all-products-image {
	position: relative;
	z-index: 2;
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	max-width: 250px;
	filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
	transition: transform 0.3s ease;
}
.all-products-link:hover .all-products-image {
	transform: scale(1.05);
}

.all-products-fruit-slice {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 100%;
	opacity: 0;
	transform: translate(-35%, -35%) scale(0.5);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: none;
}

@media (max-width: 1023px) {
	.all-products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 15px 10px;
	}
	.all-products-item {
		grid-column: auto !important;
		grid-row: auto !important;
		margin-top: 0 !important;
		max-width: 180px;
	}
	.all-products-item:nth-child(1), .all-products-item:nth-child(2), .all-products-item:nth-child(3), .all-products-item:nth-child(4) {
		grid-row: 1;
	}
	.all-products-item:nth-child(5), .all-products-item:nth-child(6), .all-products-item:nth-child(7), .all-products-item:nth-child(8) {
		grid-row: 2;
	}
	.all-products-image {
		max-width: 180px;
	}
}
@media (max-width: 767px) {
	.all-products-section {
		padding: clamp(40px, 8vw, 60px) 0;
	}
	.all-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 10px;
	}
	.all-products-item {
		max-width: 160px;
		grid-column: auto !important;
		grid-row: auto !important;
		margin-top: 0 !important;
	}
	.all-products-link {
		max-width: 160px;
	}
	.all-products-image {
		max-width: 160px;
	}
}
@media (max-width: 480px) {
	.all-products-section {
		padding: clamp(30px, 8vw, 50px) 0;
	}
	.all-products-grid {
		gap: 15px 8px;
	}
	.all-products-item {
		max-width: 140px;
	}
	.all-products-link {
		max-width: 140px;
	}
	.all-products-image {
		max-width: 140px;
	}
}
.quiz-section {
	padding: 100px 20px;
	position: relative;
}
@media (max-width: 768px) {
	.quiz-section {
		padding: 80px 20px;
	}
}
.quiz-section__container {
	max-width: 1400px;
	margin: 0 auto;
}
.quiz-section__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
@media (max-width: 1024px) {
	.quiz-section__content {
		grid-template-columns: 1fr;
		gap: 60px;
	}
}
.quiz-section__left {
	color: #FFFFFF;
}
.quiz-section__heading {
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.2;
}
@media (max-width: 768px) {
	.quiz-section__heading {
		margin-bottom: 30px;
	}
}

.personality-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.personality-item {
	opacity: 0;
	animation: fadeInLeft 0.6s ease forwards;
}
.personality-item__button {
	width: 100%;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 20px 30px;
	color: #FFFFFF;
	font-size: 28px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.personality-item__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(200, 212, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 0;
}
.personality-item__button:hover {
	border-color: #C8D400;
	transform: translateX(10px);
}
.personality-item__button:hover::before {
	left: 0;
}
@media (max-width: 768px) {
	.personality-item__button {
		font-size: 22px;
		padding: 16px 24px;
	}
}
.personality-item__title {
	position: relative;
	z-index: 1;
}

.quiz-visual {
	text-align: center;
}
.quiz-visual__circle {
	position: relative;
	width: 100%;
	max-width: 450px;
	margin: 0 auto 30px;
	aspect-ratio: 1;
	background: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
	overflow: visible;
	padding: 30px;
}
@media (max-width: 768px) {
	.quiz-visual__circle {
		max-width: 350px;
	}
}
.quiz-visual__image {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	position: relative;
	z-index: 2;
}
.quiz-visual__decoration {
	position: absolute;
	border-radius: 50%;
	background: #C8D400;
	opacity: 0.6;
	animation: pulse 3s ease-in-out infinite;
}
.quiz-visual__decoration--1 {
	width: 20px;
	height: 20px;
	top: 10%;
	right: 15%;
	animation-delay: 0s;
}
.quiz-visual__decoration--2 {
	width: 15px;
	height: 15px;
	bottom: 20%;
	left: 10%;
	animation-delay: 1s;
}
.quiz-visual__decoration--3 {
	width: 25px;
	height: 25px;
	top: 50%;
	right: -10px;
	animation-delay: 2s;
}
.quiz-visual__description {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1.6;
	max-width: 400px;
	margin: 0 auto;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
}
.quiz-visual__description p {
	margin: 0;
}
@media (max-width: 768px) {
	.quiz-visual__description {
		font-size: 15px;
	}
}

.personality-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}
.personality-modal.is-open {
	display: flex;
}
.personality-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	animation: fadeIn 0.3s ease;
}
.personality-modal__container {
	position: relative;
	background: #1B5E20;
	border-radius: 24px;
	max-width: 700px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	z-index: 10;
	animation: slideUp 0.4s ease;
	padding: 50px 40px;
}
@media (max-width: 768px) {
	.personality-modal__container {
		padding: 40px 30px;
		width: 95%;
	}
}
.personality-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #FFFFFF;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.personality-modal__close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(90deg);
}
.personality-modal__content {
	color: #FFFFFF;
	text-align: center;
}
.personality-modal__icon {
	width: 120px;
	height: 120px;
	margin: 0 auto 25px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.personality-modal__icon img {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.personality-modal__title {
	font-size: 36px;
	font-weight: 700;
	color: #C8D400;
	margin-bottom: 25px;
}
@media (max-width: 768px) {
	.personality-modal__title {
		font-size: 28px;
	}
}
.personality-modal__description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
}
.personality-modal__description p {
	margin-bottom: 1rem;
}
.personality-modal__description p:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.personality-modal__description {
		font-size: 16px;
	}
}
.personality-modal__traits {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 25px;
	margin-bottom: 30px;
	text-align: left;
}
.personality-modal__traits-title {
	font-size: 20px;
	font-weight: 700;
	color: #C8D400;
	margin-bottom: 15px;
}
.personality-modal__share {
	margin-top: 30px;
}

.personality-traits-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.personality-traits-list li {
	padding: 10px 0;
	padding-left: 30px;
	position: relative;
	font-size: 16px;
	line-height: 1.6;
}
.personality-traits-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #C8D400;
	font-weight: 700;
	font-size: 18px;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 0.6;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.8;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/**
 * What's New Section Styles
 * @version 3.0.0 - Updated for proper Swiper structure
 *
 * Changelog:
 * v3.0.0 - Updated to work with proper Swiper HTML structure:
 *         - Using .news-slider as main container
 *         - .news-slider__wrp as swiper-wrapper
 *         - .news-slider__item as swiper-slide
 *         - Keeping existing card design inside slides
 * v2.0.0 - Migrated to Swiper.js
 * v1.3.0 - Improved grid layout
 */
.whats-new {
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}
.whats-new__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.whats-new__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}
@media (max-width: 768px) {
	.whats-new {
		padding: 60px 20px;
	}
}
.whats-new__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 0;
}
.whats-new__header {
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.whats-new__header {
		margin-bottom: 40px;
	}
}
.whats-new__heading {
	font-weight: 700;
	margin: 0;
	position: relative;
	display: inline-block;
}

.news-slider {
	padding-top: 10px;
	position: relative;
	overflow: hidden;
}
.news-slider__wrp {
	display: flex;
	transition-property: transform;
}
.news-slider__item {
	width: 680px;
	flex-shrink: 0;
}
@media (max-width: 1024px) {
	.news-slider__item {
		width: 600px;
	}
}
@media (max-width: 768px) {
	.news-slider__item {
		width: 90vw;
		max-width: 500px;
	}
}
.news-slider__ctr {
	position: relative;
	z-index: 12;
}
.news-slider__arrows {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	bottom: 235px;
	left: 0;
}
.news-slider__arrow {
	background: #FFFFFF;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color: #333333;
}
.news-slider__arrow:hover {
	background: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.news-slider__arrow:active {
	transform: scale(0.95);
}
.news-slider__arrow svg {
	width: 24px;
	height: 24px;
}
@media (max-width: 768px) {
	.news-slider__arrow {
		width: 40px;
		height: 40px;
	}
	.news-slider__arrow svg {
		width: 20px;
		height: 20px;
	}
}
.news-slider__pagination {
	text-align: center;
	margin-top: 20px;
}
.news-slider__pagination :global(.swiper-pagination-bullet) {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
	margin: 0 5px;
}
.news-slider__pagination :global(.swiper-pagination-bullet):hover {
	background: rgba(0, 0, 0, 0.4);
}
.news-slider__pagination :global(.swiper-pagination-bullet-active) {
	background: #1B5E20;
	width: 24px;
	border-radius: 5px;
}

.news__item {
	display: grid;
	grid-template-columns: 2fr 1fr;
	text-decoration: none;
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
	height: 350px;
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
	text-decoration: none;
}
.news__item {
	align-items: stretch;
}
@media (max-width: 768px) {
	.news__item {
		grid-template-columns: 1fr;
		grid-template-rows: 2fr 1fr;
		height: auto;
		min-height: 300px;
	}
}
.news__item.news-card--type-product {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news__item.news-card--type-product_post, .news__item.news-card--type-post {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(15.6198347107, 54.3801652893, 18.5123966942) 100%);
}
.news__item.news-card--type-recipe {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
.news__item.news-card--type-featured {
	background: linear-gradient(135deg, #1B5E20 0%, #2d5016 100%);
}

.news-card__decorative-icon {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 40px;
	height: 40px;
	z-index: 10;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.news-card__decorative-icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 768px) {
	.news-card__decorative-icon {
		top: 16px;
		left: 16px;
		width: 32px;
		height: 32px;
	}
}
.news-card__badge {
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 10;
	transform: rotate(-3deg);
}
@media (max-width: 768px) {
	.news-card__badge {
		top: 16px;
		right: 16px;
	}
}
.news-card__content {
	padding: 60px 50px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
}
@media (max-width: 1024px) {
	.news-card__content {
		padding: 40px 30px;
	}
}
@media (max-width: 768px) {
	.news-card__content {
		padding: 30px 20px;
		grid-column: 1;
		grid-row: 1;
	}
}
.news-card__title {
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #FFFFFF !important;
}
@media (max-width: 768px) {
	.news-card__title {
		font-size: 1.25rem;
		margin-bottom: 12px;
	}
}
.news-card__highlight {
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 16px;
	line-height: 1.3;
}
@media (max-width: 768px) {
	.news-card__highlight {
		margin-bottom: 12px;
	}
}
.news-card__description {
	line-height: 1.65;
	margin: 0 0 20px;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.95);
	max-width: 500px;
}
@media (max-width: 768px) {
	.news-card__description {
		margin-bottom: 16px;
	}
}
.news-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
	padding-top: 8px;
	width: -moz-fit-content;
	width: fit-content;
}
.news-card__cta .arrow {
	transition: transform 0.3s ease;
}
.news-card__cta:hover {
	color: #4CAF50 !important;
	text-decoration: none;
}
.news-card__cta:hover .arrow {
	transform: translateX(4px);
}
.news-card__image {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-height: 350px;
}
.news-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (max-width: 768px) {
	.news-card__image {
		grid-column: 1;
		grid-row: 2;
		max-height: 200px;
	}
}

.badge {
	display: inline-block;
	padding: 10px 24px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	color: #FFFFFF;
}
.badge::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF7043 0%, rgb(255, 80.9659574468, 26.2) 100%);
	transform: skewX(-10deg);
	border-radius: 6px;
	z-index: -1;
	box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
}
.badge--new {
	color: #FFFFFF;
}
.badge--news::before {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.badge--product::before {
	background: linear-gradient(135deg, #FF9800 0%, rgb(214.2, 127.68, 0) 100%);
}
.badge--recipe::before {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
@media (max-width: 768px) {
	.badge {
		padding: 8px 18px;
	}
}

.whats-new {
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 768px) {
	.whats-new {
		padding: 60px 20px;
	}
}
.whats-new__container {
	max-width: 1400px;
	margin: 0 auto;
}
.whats-new__header {
	text-align: center;
	margin-bottom: 60px;
}
@media (max-width: 768px) {
	.whats-new__header {
		margin-bottom: 40px;
	}
}
.whats-new__heading {
	font-weight: 700;
	margin: 0;
	position: relative;
	display: inline-block;
}
.whats-new__grid {
	display: flex;
	flex-direction: row;
	gap: 30px;
	overflow-x: auto;
	overflow-y: visible;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
	padding: 20px 10px 40px;
	margin: -20px -10px;
	cursor: grab;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.whats-new__grid:active {
	cursor: grabbing;
}
.whats-new__grid::-webkit-scrollbar {
	height: 8px;
}
.whats-new__grid::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}
.whats-new__grid::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}
.whats-new__grid::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
	.whats-new__grid {
		gap: 20px;
		padding: 15px 5px 30px;
	}
}

.news-card {
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
	height: auto;
	scroll-snap-align: center;
}
.news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}
.news-card--horizontal {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-width: 700px;
	max-width: 800px;
	min-height: 350px;
	max-height: 350px;
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
@media (max-width: 1024px) {
	.news-card--horizontal {
		min-width: 600px;
		min-height: 300px;
	}
}
@media (max-width: 768px) {
	.news-card--horizontal {
		grid-template-columns: 1fr;
		grid-template-rows: auto 300px;
		min-width: 300px;
		max-width: 360px;
		min-height: auto;
		max-height: 100%;
	}
}
.news-card__decorative-icon {
	position: absolute;
	top: 24px;
	left: 24px;
	width: 40px;
	height: 40px;
	z-index: 10;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.news-card__decorative-icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
@media (max-width: 768px) {
	.news-card__decorative-icon {
		width: 32px;
		height: 32px;
		top: 16px;
		left: 16px;
	}
}
.news-card__badge {
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 10;
	transform: rotate(-3deg);
}
@media (max-width: 768px) {
	.news-card__badge {
		top: 5%;
		right: 5%;
	}
}
.news-card__content {
	padding: 60px 50px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
}
@media (max-width: 1024px) {
	.news-card__content {
		padding: 40px 35px;
	}
}
@media (max-width: 768px) {
	.news-card__content {
		padding: 40px 30px 30px;
		grid-row: 1;
	}
}
.news-card__title {
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #FFFFFF;
}
@media (max-width: 768px) {
	.news-card__title {
		margin-bottom: 12px;
	}
}
.news-card__highlight {
	font-weight: 700;
	color: #4CAF50;
	margin-bottom: 16px;
	line-height: 1.3;
}
@media (max-width: 768px) {
	.news-card__highlight {
		margin-bottom: 12px;
	}
}
.news-card__description {
	line-height: 1.65;
	margin: 0 0 20px;
	opacity: 0.95;
	color: rgba(255, 255, 255, 0.95);
	max-width: 500px;
}
@media (max-width: 768px) {
	.news-card__description {
		margin-bottom: 16px;
	}
}
.news-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFFFFF !important;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
	padding-top: 8px;
	width: -moz-fit-content;
	width: fit-content;
}
.news-card__cta .arrow {
	transition: transform 0.3s ease;
}
.news-card__cta:hover {
	color: #4CAF50 !important;
}
.news-card__cta:hover .arrow {
	transform: translateX(5px);
}
.news-card__image {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	max-height: 350px;
}
.news-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
@media (max-width: 768px) {
	.news-card__image {
		grid-column: 1;
		grid-row: 2;
		min-height: 300px;
	}
}
.news-card--type-product {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(17.8958677686, 62.3041322314, 21.2099173554) 100%);
}
.news-card--type-product_post, .news-card--type-post {
	background: linear-gradient(135deg, #1B5E20 0%, rgb(15.6198347107, 54.3801652893, 18.5123966942) 100%);
}
.news-card--type-recipe {
	background: linear-gradient(135deg, #D84315 0%, rgb(178.8151898734, 55.4658227848, 17.3848101266) 100%);
}
.news-card--type-featured {
	background: linear-gradient(135deg, #1B5E20 0%, #2d5016 100%);
}

.badge {
	display: inline-block;
	padding: 10px 24px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	color: #FFFFFF;
}
.badge::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF7043 0%, rgb(255, 80.9659574468, 26.2) 100%);
	transform: skewX(-10deg);
	border-radius: 6px;
	z-index: -1;
	box-shadow: 0 4px 12px rgba(255, 112, 67, 0.4);
}
.badge--new {
	color: #FFFFFF;
}
.badge--news::before {
	background: linear-gradient(135deg, #2196F3 0%, rgb(11.5384615385, 124.0384615385, 213.4615384615) 100%);
	box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}
.badge--product::before {
	background: linear-gradient(135deg, #4CAF50 0%, rgb(60.5577689243, 139.4422310757, 63.7450199203) 100%);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
.badge--recipe::before {
	background: linear-gradient(135deg, #FF5722 0%, rgb(248.2, 59.5230769231, 0) 100%);
	box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}
@media (max-width: 768px) {
	.badge {
		padding: 8px 18px;
	}
}

.btn--small {
	padding: 12px 28px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn--secondary {
	background-color: #4CAF50;
	color: #FFFFFF;
	border: none;
	text-decoration: none;
	display: inline-block;
}
.btn--secondary:hover {
	background-color: #45a049;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.whats-new-navigation {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	/* margin-top: 4px; */
	z-index: 55;
	position: relative;
	bottom: 195px;
	left: 0;
}
@media (max-width: 768px) {
	.whats-new-navigation {
		margin-top: 15px;
	}
}
.whats-new-navigation :global(.swiper-pagination-bullet) {
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.2);
	opacity: 1;
	transition: all 0.3s ease;
}
.whats-new-navigation :global(.swiper-pagination-bullet):hover {
	background: rgba(0, 0, 0, 0.4);
}
.whats-new-navigation :global(.swiper-pagination-bullet-active) {
	background: #1B5E20;
	width: 24px;
	border-radius: 5px;
}

/*--------------------------------------------------------------
# New Template Sections (v2.0)
--------------------------------------------------------------*/
/* =====================================================
   SINGLE POST STYLES
   Version: 1.0

   Styles for single blog post pages with:
   - Hero section with featured image overlay
   - Content area with sidebar support
   - Related posts section
   - Share buttons and post meta
   ===================================================== */
.single-post-article {
	background-color: #FFFFFF;
}

/* ===========================================
   POST HERO SECTION
   =========================================== */
.single-post-hero {
	position: relative;
	min-height: clamp(400px, 50vh, 600px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
	padding: clamp(120px, 15vh, 180px) clamp(20px, 5vw, 60px) clamp(80px, 10vh, 120px);
}
.single-post-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.single-post-hero__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.single-post-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(27, 94, 32, 0.7) 0%, rgba(35, 80, 31, 0.85) 100%);
	z-index: 2;
}
.single-post-hero__content {
	position: relative;
	z-index: 3;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: #FFFFFF;
}
.single-post-hero__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.single-post-hero__meta .post-category {
	background-color: #B3D334;
	color: #2d5016;
	padding: 6px 20px;
	border-radius: 30px;
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.single-post-hero__meta .post-date {
	font-size: clamp(0.9rem, 1vw, 1rem);
	opacity: 0.9;
}
.single-post-hero__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
	color: #FFFFFF;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.single-post-hero__author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.single-post-hero__author img {
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
}
.single-post-hero__author .author-name {
	font-size: clamp(0.95rem, 1vw, 1.05rem);
	opacity: 0.9;
}
.single-post-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 4;
	pointer-events: none;
}
.single-post-hero__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

/* ===========================================
   POST CONTENT SECTION
   =========================================== */
.single-post-content {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
	background-color: #FFFFFF;
}
.single-post-content__wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
}
@media (min-width: 1024px) {
	.single-post-content__wrapper {
		grid-template-columns: 2fr 1fr;
	}
}
.single-post-content__main {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.8;
	color: #212529;
}
.single-post-content__main h2, .single-post-content__main h3, .single-post-content__main h4, .single-post-content__main h5, .single-post-content__main h6 {
	color: #1B5E20;
	margin-top: 2em;
	margin-bottom: 0.8em;
	font-weight: 700;
}
.single-post-content__main h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.single-post-content__main h3 {
	font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}
.single-post-content__main p {
	margin-bottom: 1.5em;
}
.single-post-content__main a {
	color: #1B5E20;
	text-decoration: underline;
	transition: color 0.3s ease;
}
.single-post-content__main a:hover {
	color: #B3D334;
}
.single-post-content__main img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 2em 0;
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}
.single-post-content__main blockquote {
	position: relative;
	padding: 30px 40px;
	margin: 2em 0;
	background-color: #E8F5E9;
	border-left: 4px solid #B3D334;
	border-radius: 8px;
	font-style: italic;
	color: #2d5016;
}
.single-post-content__main blockquote p {
	margin-bottom: 0;
	font-size: clamp(1.1rem, 1.8vw, 1.25rem);
}
.single-post-content__main ul, .single-post-content__main ol {
	margin-bottom: 1.5em;
	padding-left: 2em;
}
.single-post-content__main ul li, .single-post-content__main ol li {
	margin-bottom: 0.5em;
}
@media (max-width: 1023px) {
	.single-post-content__sidebar {
		display: none;
	}
}

/* ===========================================
   POST FOOTER META
   =========================================== */
.single-post-footer {
	padding: clamp(40px, 6vh, 60px) clamp(20px, 5vw, 40px);
	background-color: #F8F9FA;
	border-top: 1px solid #DEE2E6;
}
.single-post-footer__wrapper {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
@media (min-width: 768px) {
	.single-post-footer__wrapper {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.post-tags__label {
	font-weight: 600;
	color: #2d5016;
}
.post-tags .post-tag {
	display: inline-block;
	padding: 6px 16px;
	background-color: #FFFFFF;
	color: #1B5E20;
	border: 1px solid #DEE2E6;
	border-radius: 20px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
}
.post-tags .post-tag:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
}

.post-share {
	display: flex;
	align-items: center;
	gap: 16px;
}
.post-share__label {
	font-weight: 600;
	color: #2d5016;
}
.post-share__buttons {
	display: flex;
	gap: 12px;
}
.post-share .share-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #6C757D;
	border: 1px solid #DEE2E6;
	transition: all 0.3s ease;
	text-decoration: none;
}
.post-share .share-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}
.post-share .share-button--facebook:hover {
	background-color: #1877f2;
	color: #FFFFFF;
	border-color: #1877f2;
}
.post-share .share-button--twitter:hover {
	background-color: #1da1f2;
	color: #FFFFFF;
	border-color: #1da1f2;
}
.post-share .share-button--linkedin:hover {
	background-color: #0077b5;
	color: #FFFFFF;
	border-color: #0077b5;
}

/* ===========================================
   RELATED POSTS SECTION
   =========================================== */
.related-posts {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
	background: #fff;
}
.related-posts__container {
	max-width: 1400px;
	margin: 0 auto;
}
.related-posts__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: clamp(40px, 6vh, 60px);
}
.related-posts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 640px) {
	.related-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.related-posts__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.related-post-card {
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
	transition: all 0.3s ease;
}
.related-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(27, 94, 32, 0.2);
}
.related-post-card__image {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.related-post-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.related-post-card__image:hover img {
	transform: scale(1.05);
}
.related-post-card__content {
	padding: 24px;
}
.related-post-card__category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #E8F5E9;
	color: #1B5E20;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 12px;
	margin-bottom: 12px;
}
.related-post-card__title {
	margin-bottom: 12px;
	font-size: clamp(1.1rem, 1.5vw, 1.25rem);
	line-height: 1.4;
}
.related-post-card__title a {
	color: #1B5E20;
	text-decoration: none;
	transition: color 0.3s ease;
}
.related-post-card__title a:hover {
	color: #B3D334;
}
.related-post-card__meta {
	color: #666666;
	font-size: 0.9rem;
}
.related-post-card__meta time {
	opacity: 0.8;
}

/* ===========================================
   PAGE LINKS (Pagination within post)
   =========================================== */
.page-links {
	margin: 3em 0;
	padding: 20px;
	background-color: #E8F5E9;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
	color: #1B5E20;
}
.page-links a, .page-links span {
	display: inline-block;
	margin: 0 5px;
	padding: 8px 16px;
	background-color: #FFFFFF;
	border-radius: 6px;
	text-decoration: none;
	color: #1B5E20;
	transition: all 0.3s ease;
}
.page-links a:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
}
.page-links .current {
	background-color: #1B5E20;
	color: #FFFFFF;
}

/* =====================================================
   SINGLE PRODUCT PAGE STYLES
   Version: 1.0

   Styles for single product pages with:
   - Hero section with product image and info
   - Tabbed product details
   - Product variants carousel
   - Related recipes and products
   ===================================================== */
.single-product-page {
	background-color: #FFFFFF;
}

/* ===========================================
   PRODUCT HERO SECTION
   =========================================== */
.product-hero {
	position: relative;
	min-height: clamp(500px, 70vh, 800px);
	padding: clamp(80px, 10vh, 120px) clamp(30px, 5vw, 60px) clamp(110px, 10vh, 120px);
}
.product-hero__container {
	max-width: 1400px;
	margin: 0 auto;
}
.product-hero__content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
@media (min-width: 1024px) {
	.product-hero__content {
		grid-template-columns: 1.2fr 1fr;
	}
}
.product-hero__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}
.product-hero__image-wrapper {
	position: relative;
	z-index: 2;
	max-width: 500px;
	width: 100%;
}
.product-hero__image-wrapper::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120%;
	height: 120%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}
.product-hero__image {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.3));
	animation: productFloat 4s ease-in-out infinite;
}
.product-hero__info {
	color: #FFFFFF;
}
.product-hero .product-category {
	display: inline-block;
	padding: 8px 20px;
	background-color: rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	font-size: clamp(0.85rem, 1vw, 0.95rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}
.product-hero__title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #FFFFFF;
}
.product-hero__tagline {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	margin-bottom: 30px;
	opacity: 0.95;
	line-height: 1.5;
}
.product-hero__description {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.7;
	margin-bottom: 40px;
	opacity: 0.9;
}
.product-hero__description p {
	margin-bottom: 1em;
}
.product-hero__description p:last-child {
	margin-bottom: 0;
}
.product-hero__actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.product-hero__actions .btn {
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}
.product-hero__actions .btn--primary {
	background-color: #B3D334;
	color: #2d5016;
	border: 2px solid #B3D334;
}
.product-hero__actions .btn--primary:hover {
	background-color: transparent;
	color: #B3D334;
	transform: translateY(-2px);
}
.product-hero__actions .btn--secondary {
	background-color: transparent;
	color: #FFFFFF;
	border: 2px solid rgba(255, 255, 255, 0.5);
}
.product-hero__actions .btn--secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #FFFFFF;
}
.product-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.product-hero__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

.product-decoration {
	position: absolute;
	width: clamp(100px, 15vw, 300px);
	height: clamp(100px, 15vw, 300px);
	z-index: 1;
	animation: float 4s ease-in-out infinite;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}
@media (max-width: 768px) {
	.product-decoration {
		display: none;
	}
}
.product-decoration img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.product-decoration--1 {
	animation-delay: 0s;
}
.product-decoration--2 {
	animation-delay: 0.8s;
}
.product-decoration--3 {
	animation-delay: 1.6s;
}
.product-decoration--4 {
	animation-delay: 2.4s;
}

/* ===========================================
   PRODUCT DETAILS TABS
   =========================================== */
.product-details {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
}
.product-details__container {
	max-width: 1400px;
	margin: 0 auto;
}

.product-details-tabs__nav {
	display: flex;
	gap: 16px;
	margin-bottom: 40px;
	border-bottom: 2px solid #DEE2E6;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
	.product-details-tabs__nav {
		gap: 8px;
	}
}
.product-details-tabs__nav .tab-button {
	padding: 16px 24px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	color: #666666;
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}
@media (max-width: 768px) {
	.product-details-tabs__nav .tab-button {
		padding: 12px 16px;
		font-size: 0.9rem;
	}
}
.product-details-tabs__nav .tab-button:hover {
	color: #1B5E20;
}
.product-details-tabs__nav .tab-button.active {
	color: #1B5E20;
	border-bottom-color: #B3D334;
}
.product-details-tabs__content .tab-panel {
	display: none;
	animation: fadeIn 0.3s ease;
}
.product-details-tabs__content .tab-panel.active {
	display: block;
}
.product-details-tabs__content .tab-panel {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.7;
	color: #212529;
}
.product-details-tabs__content .tab-panel h3, .product-details-tabs__content .tab-panel h4 {
	color: #1B5E20;
	margin-top: 1.5em;
	margin-bottom: 0.8em;
}
.product-details-tabs__content .tab-panel p {
	margin-bottom: 1em;
}
.product-details-tabs__content .tab-panel ul, .product-details-tabs__content .tab-panel ol {
	margin-bottom: 1.5em;
	padding-left: 2em;
}
.product-details-tabs__content .tab-panel ul li, .product-details-tabs__content .tab-panel ol li {
	margin-bottom: 0.5em;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	margin-top: 30px;
}
.certifications-grid .certification-item {
	text-align: center;
}
.certifications-grid .certification-item img {
	max-width: 120px;
	height: auto;
	margin-bottom: 12px;
}
.certifications-grid .certification-item p {
	font-size: 0.95rem;
	color: #666666;
	font-weight: 600;
}

/* ===========================================
   PRODUCT VARIANTS SECTION
   =========================================== */
.product-variants {
	position: relative;
}
.product-variants__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(70px, 15vh, 100px) clamp(20px, 5vw, 40px) clamp(80px, 15vh, 120px);
}
.product-variants__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: clamp(40px, 6vh, 60px);
}
.product-variants__slider {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 640px) {
	.product-variants__slider {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.product-variants__slider {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1280px) {
	.product-variants__slider {
		grid-template-columns: repeat(4, 1fr);
	}
}
.product-variants__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.product-variants__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}
.product-variants__wave-top {
	position: absolute;
	width: 100%;
	left: 0;
	top: -1px;
}
.product-variants__wave-top svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

.variant-card {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}
.variant-card:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.variant-card__image {
	margin-bottom: 20px;
}
.variant-card__image img {
	max-width: 180px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2));
}
.variant-card__name {
	font-size: clamp(1.1rem, 1.5vw, 1.3rem);
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 10px;
}
.variant-card__description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.5;
}

/* ===========================================
   PRODUCT RECIPES SECTION
   =========================================== */
.product-recipes {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
}
.product-recipes__container {
	max-width: 1400px;
	margin: 0 auto;
}
.product-recipes__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #1B5E20;
	text-align: center;
	margin-bottom: clamp(40px, 6vh, 60px);
}
.product-recipes__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 640px) {
	.product-recipes__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.product-recipes__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.recipe-card {
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
	transition: all 0.3s ease;
}
.recipe-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(27, 94, 32, 0.2);
}
.recipe-card__image {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.recipe-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.recipe-card__image:hover img {
	transform: scale(1.05);
}
.recipe-card__content {
	padding: 20px;
}
.recipe-card__title {
	font-size: clamp(1.1rem, 1.5vw, 1.25rem);
	line-height: 1.4;
	margin: 0;
}
.recipe-card__title a {
	color: #1B5E20;
	text-decoration: none;
	transition: color 0.3s ease;
}
.recipe-card__title a:hover {
	color: #B3D334;
}

/* ===========================================
   WHERE TO BUY SECTION
   =========================================== */
.where-to-buy {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
	text-align: center;
}
.where-to-buy__container {
	max-width: 800px;
	margin: 0 auto;
}
.where-to-buy__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 20px;
}
.where-to-buy__description {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}
.where-to-buy .btn--primary {
	display: inline-block;
	padding: 16px 40px;
	background-color: #B3D334;
	color: #2d5016;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.where-to-buy .btn--primary:hover {
	background-color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   RELATED PRODUCTS SECTION
   =========================================== */
.related-products {
	padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) clamp(50px, 15vh, 80px);
}
.related-products__container {
	max-width: 1400px;
	margin: 0 auto;
}
.related-products__title {
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #1B5E20;
	text-align: center;
	margin-bottom: clamp(40px, 6vh, 60px);
}
.related-products__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}
@media (min-width: 640px) {
	.related-products__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.related-products__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.related-product-card {
	background-color: rgba(232, 245, 233, 0.25);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}
.related-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}
.related-product-card__image {
	display: block;
}
.related-product-card__image img {
	max-width: 250px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 6px 15px rgba(27, 94, 32, 0.2));
	transition: transform 0.3s ease;
}
.related-product-card__image:hover img {
	transform: scale(1.05);
}
.related-product-card__title {
	padding-top: 15px;
	font-size: clamp(1.1rem, 1.5vw, 1.25rem);
	margin: 0;
	position: relative;
}
.related-product-card__title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 25%;
	display: block;
	width: 50%;
	height: 2px;
	background-color: rgba(27, 94, 32, 0.25);
}
.related-product-card__title a {
	color: #1B5E20;
	text-decoration: none;
	transition: color 0.3s ease;
}
.related-product-card__title a:hover {
	color: #B3D334;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes productFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
}
@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* =====================================================
   PRODUCT ARCHIVE PAGE STYLES
   Version: 1.0

   Styles for product archive/catalog pages with:
   - Archive hero section
   - Filter bar for categories
   - Product grid with cards
   - Promotional banners
   - Pagination
   ===================================================== */
.product-archive-page {
	background-color: #FFFFFF;
}

/* ===========================================
   ARCHIVE HERO SECTION
   =========================================== */
.archive-hero {
	position: relative;
	padding: clamp(120px, 15vh, 160px) clamp(20px, 5vw, 60px) clamp(80px, 10vh, 100px);
	text-align: center;
}
.archive-hero__container {
	max-width: 900px;
	margin: 0 auto;
}
.archive-hero__title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
}
.archive-hero__description {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0;
}
.archive-hero__description p {
	margin-bottom: 0.8em;
}
.archive-hero__description p:last-child {
	margin-bottom: 0;
}
.archive-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.archive-hero__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

/* ===========================================
   FILTER BAR
   =========================================== */
.product-filters {
	position: sticky;
	top: 60px;
	z-index: 100;
	background-color: #E8F5E9;
	border-bottom: 2px solid rgba(27, 94, 32, 0.1);
	padding: 20px 0;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.product-filters {
		position: relative;
		top: 0;
	}
}
.product-filters__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 40px);
}
.product-filters__categories {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.filter-tag {
	display: inline-block;
	padding: 10px 24px;
	background-color: #FFFFFF;
	color: #1B5E20;
	border: 2px solid transparent;
	border-radius: 30px;
	font-size: clamp(0.9rem, 1vw, 1rem);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.filter-tag:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}
.filter-tag.active {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #B3D334;
}

/* ===========================================
   PRODUCTS GRID
   =========================================== */
.products-grid {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
}
.products-grid__container {
	max-width: 1400px;
	margin: 0 auto;
}
.products-grid__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
@media (min-width: 640px) {
	.products-grid__items {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.products-grid__items {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1280px) {
	.products-grid__items {
		grid-template-columns: repeat(3, 1fr);
	}
}
.fonts-loading .products-grid .promotional-banner__content,
.fonts-loading .products-grid .split-animated,
.fonts-loading .products-grid .product-card__title {
	animation-play-state: paused;
}

/* ===========================================
   PRODUCT CARD
   =========================================== */
.product-archive-page .product-card {
	background-color: #FFFFFF;
	border-radius: 20px;
	overflow: visible;
	transition: all 0.4s ease;
	position: relative;
}
.product-archive-page .product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(27, 94, 32, 0.15);
}
.product-archive-page .product-card:hover .product-card__cta {
	opacity: 1;
	transform: translateX(0);
}
.product-archive-page .product-card__link {
	display: block;
	text-decoration: none !important;
	color: inherit;
}
.product-archive-page .product-card__image-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}
.product-archive-page .product-card__blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
	height: 75%;
	background: radial-gradient(circle, #E8F5E9 0%, rgba(232, 245, 233, 0.3) 70%);
	border-radius: 50%;
	z-index: 1;
}
.product-archive-page .product-card__image {
	position: relative;
	z-index: 2;
	max-width: 75%;
	max-height: 350px;
	width: auto;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	transition: all 0.4s ease;
}
.product-archive-page .product-card__content {
	padding: 0 24px 24px;
}
.product-archive-page .product-card__category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #E8F5E9;
	color: #1B5E20;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 12px;
	margin-bottom: 12px;
}
.product-archive-page .product-card__title {
	font-size: clamp(1.2rem, 1.5vw, 1.4rem);
	font-weight: 700;
	color: #1B5E20;
	line-height: 1.3;
}
.product-archive-page .product-card__tagline {
	font-size: 0.95rem;
	color: #666666;
	line-height: 1.5;
	margin-bottom: 16px;
}
.product-archive-page .product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #B3D334;
	font-weight: 600;
	font-size: 0.95rem;
	opacity: 0.7;
	transition: all 0.3s ease;
}
.product-archive-page .product-card__cta svg {
	transition: transform 0.3s ease;
}
.product-archive-page .product-card:hover .product-archive-page .product-card__cta svg {
	transform: translateX(10px);
}
.product-archive-page {
	/* ===========================================
	   PROMOTIONAL BANNER
	   =========================================== */
}
.product-archive-page .promotional-banner {
	grid-column: 1/-1;
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	padding: clamp(32px, 5vw, 56px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: #fff;
	--promo-bg-image: none;
	min-height: clamp(220px, 35vw, 360px);
	max-height: clamp(320px, 45vw, 480px);
	isolation: isolate;
}
.product-archive-page .promotional-banner__overlay {
	position: absolute;
	inset: 0;
	background: var(--promo-bg-image) rgba(27, 94, 32, 0.75);
	mix-blend-mode: multiply;
	pointer-events: none;
	filter: blur(1px);
	z-index: 1;
}
.product-archive-page .promotional-banner__content {
	position: relative;
	z-index: 2;
	max-width: 700px;
}
.product-archive-page .promotional-banner__content h3 {
	font-size: clamp(1.7rem, 2.8vw, 2.4rem);
	font-weight: 700;
	margin-bottom: 16px;
	color: #FFFFFF;
}
.product-archive-page .promotional-banner__content p {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.6;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.9);
	opacity: 0;
	animation: fadeIn 0.6s ease 0.4s forwards;
}
.product-archive-page .promotional-banner__media {
	position: relative;
	flex: 1 1 60%;
	max-width: 60%;
	border-radius: 24px;
	overflow: hidden;
	background: rgba(27, 94, 32, 0.1);
	opacity: 0;
	animation: fadeIn 0.5s ease 0.2s forwards;
}
.product-archive-page .promotional-banner__video {
	width: 100%;
	aspect-ratio: 16/9;
}
.product-archive-page .promotional-banner__video iframe,
.product-archive-page .promotional-banner__video video {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: inherit;
	display: block;
}
.product-archive-page .promotional-banner--text {
	background: linear-gradient(135deg, #1B5E20 0%, #B3D334 100%);
	color: #FFFFFF;
}
.product-archive-page .promotional-banner--text::before, .product-archive-page .promotional-banner--text::after {
	content: "";
	position: absolute;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
}
.product-archive-page .promotional-banner--text::before {
	top: -55%;
	right: -20%;
}
.product-archive-page .promotional-banner--text::after {
	bottom: -55%;
	left: -20%;
}
.product-archive-page .promotional-banner--text .promotional-banner__content {
	max-width: 680px;
}
.product-archive-page .promotional-banner--image, .product-archive-page .promotional-banner--image-text {
	background-color: transparent;
	background-image: var(--promo-bg-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #FFFFFF;
	text-align: left;
	justify-content: flex-end;
}
.product-archive-page .promotional-banner--image .promotional-banner__overlay, .product-archive-page .promotional-banner--image-text .promotional-banner__overlay {
	display: block;
	background: linear-gradient(120deg, rgba(27, 94, 32, 0.75) 10%, rgba(27, 94, 32, 0.35) 60%, rgba(27, 94, 32, 0.1) 100%);
}
.product-archive-page .promotional-banner--image .promotional-banner__content, .product-archive-page .promotional-banner--image-text .promotional-banner__content {
	align-self: center;
	margin-inline: clamp(0px, 3vw, 32px);
	padding: clamp(24px, 4vw, 40px);
	border-radius: 20px;
	background: rgba(27, 94, 32, 0.72);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(6px);
	max-width: clamp(280px, 32vw, 420px);
}
.product-archive-page .promotional-banner--image {
	justify-content: center;
}
.product-archive-page .promotional-banner--image .promotional-banner__content {
	text-align: center;
}
.product-archive-page .promotional-banner--video {
	background: none;
	padding: clamp(32px, 4vw, 48px);
	text-align: left;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 40px);
	max-height: clamp(340px, 45vw, 520px);
	align-items: stretch;
}
.product-archive-page .promotional-banner--video .promotional-banner__overlay {
	display: none;
}
.product-archive-page .promotional-banner--video .promotional-banner__media {
	flex: 1 1 60%;
	max-width: 60%;
	min-height: clamp(220px, 30vw, 340px);
	background: rgba(27, 94, 32, 0.08);
}
.product-archive-page .promotional-banner--video .promotional-banner__content {
	flex: 1 1 40%;
	max-width: 40%;
	background: linear-gradient(145deg, #1B5E20 0%, #B3D334 100%);
	border-radius: 24px;
	padding: clamp(24px, 4vw, 36px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
	max-height: inherit;
}
.product-archive-page .promotional-banner--video .promotional-banner__content p {
	margin: 0;
}
.product-archive-page .promotional-banner--video.promotional-banner--no-text {
	justify-content: center;
}
.product-archive-page .promotional-banner--video.promotional-banner--no-text .promotional-banner__media {
	max-width: 100%;
}

/* ===========================================
   PAGINATION
   =========================================== */
.products-pagination {
	margin-top: clamp(60px, 8vh, 80px);
	text-align: center;
}
.products-pagination .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.products-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background-color: #FFFFFF;
	color: #1B5E20;
	border: 2px solid #DEE2E6;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}
.products-pagination .page-numbers svg {
	display: block;
}
.products-pagination .page-numbers:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}
.products-pagination .page-numbers.current {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #B3D334;
	cursor: default;
}
.products-pagination .page-numbers.dots {
	border: none;
	background: none;
	cursor: default;
}
.products-pagination .page-numbers.dots:hover {
	background: none;
	transform: none;
	box-shadow: none;
}
.products-pagination .page-numbers.prev, .products-pagination .page-numbers.next {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
}
.products-pagination .page-numbers.prev:hover, .products-pagination .page-numbers.next:hover {
	background-color: #B3D334;
	border-color: #B3D334;
	color: #2d5016;
}

/* ===========================================
   NO PRODUCTS MESSAGE
   =========================================== */
.no-products {
	text-align: center;
	padding: clamp(60px, 10vh, 100px) 20px;
}
.no-products p {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	color: #666666;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */
@media (max-width: 1024px) {
	.promotional-banner--video {
		flex-direction: column;
		max-height: none;
	}
	.promotional-banner--video .promotional-banner__media,
	.promotional-banner--video .promotional-banner__content {
		max-width: 100%;
	}
	.promotional-banner--video .promotional-banner__media {
		min-height: clamp(200px, 40vw, 320px);
	}
}
@media (max-width: 768px) {
	.promotional-banner {
		flex-direction: column;
		align-items: stretch;
		text-align: left;
		max-height: none;
	}
	.promotional-banner__content {
		max-width: none;
	}
	.promotional-banner--text {
		text-align: center;
	}
	.promotional-banner--text .promotional-banner__content {
		margin: 0 auto;
	}
	.promotional-banner--image,
	.promotional-banner--image-text {
		justify-content: center;
	}
	.promotional-banner--image .promotional-banner__content,
	.promotional-banner--image-text .promotional-banner__content {
		margin: clamp(16px, 5vw, 24px) auto 0;
		text-align: center;
	}
	.product-card__image-wrapper {
		height: 220px;
	}
	.product-card__image {
		max-height: 180px;
	}
}
/* =====================================================
   BLOG ARCHIVE PAGE STYLES
   Version: 1.0

   Styles for blog archive pages with:
   - Hero section with category navigation
   - Featured post highlight
   - Blog grid layout
   - Post cards
   - Pagination
   ===================================================== */
.blog-archive-page {
	background-color: #FFFFFF;
}

/* ===========================================
   BLOG HERO SECTION
   =========================================== */
.blog-hero {
	padding: clamp(100px, 12vh, 140px) clamp(20px, 5vw, 60px) clamp(60px, 8vh, 80px);
	text-align: center;
	border-bottom: 1px solid #DEE2E6;
}
.blog-hero__container {
	max-width: 1400px;
	margin: 0 auto;
}
.blog-hero__title {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #1B5E20;
	margin-bottom: 20px;
	line-height: 1.2;
}
.blog-hero__description {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: #666666;
	line-height: 1.6;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.blog-hero__description p {
	margin-bottom: 0.8em;
}
.blog-hero__description p:last-child {
	margin-bottom: 0;
}
.blog-hero__categories {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.category-tag {
	display: inline-block;
	padding: 10px 24px;
	background-color: #E8F5E9;
	color: #1B5E20;
	border: 2px solid transparent;
	border-radius: 30px;
	font-size: clamp(0.9rem, 1vw, 1rem);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.category-tag:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}
.category-tag.active {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #B3D334;
}

/* ===========================================
   BLOG POSTS SECTION
   =========================================== */
.blog-posts {
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 40px);
	background-color: #F8F9FA;
}
.blog-posts__container {
	max-width: 1400px;
	margin: 0 auto;
}
.blog-posts__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}
@media (min-width: 768px) {
	.blog-posts__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===========================================
   BLOG POST CARD
   =========================================== */
.blog-post-card {
	background-color: #FFFFFF;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}
.blog-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(27, 94, 32, 0.2);
}
.blog-post-card:hover .blog-post-card__overlay {
	opacity: 0.3;
}
.blog-post-card:hover .blog-post-card__image img {
	transform: scale(1.05);
}
.blog-post-card__image {
	position: relative;
	display: block;
	width: 100%;
	height: 240px;
	overflow: hidden;
	flex-shrink: 0;
}
.blog-post-card__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.blog-post-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(27, 94, 32, 0.4) 0%, transparent 50%);
	opacity: 0.5;
	transition: opacity 0.3s ease;
}
.blog-post-card__content {
	padding: 28px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.blog-post-card__category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #E8F5E9;
	color: #1B5E20;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 12px;
	margin-bottom: 14px;
	text-decoration: none;
	align-self: flex-start;
	transition: all 0.3s ease;
}
.blog-post-card__category:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
}
.blog-post-card__title {
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 14px;
}
.blog-post-card__title a {
	color: #1B5E20;
	text-decoration: none;
	transition: color 0.3s ease;
}
.blog-post-card__title a:hover {
	color: #B3D334;
}
.blog-post-card__excerpt {
	font-size: 1rem;
	line-height: 1.6;
	color: #666666;
	margin-bottom: 16px;
	flex-grow: 1;
}
.blog-post-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #666666;
	padding-top: 16px;
	border-top: 1px solid #DEE2E6;
}
.blog-post-card__meta time {
	opacity: 0.8;
}
.blog-post-card__meta .meta-separator {
	opacity: 0.5;
}
.blog-post-card__meta .read-time {
	opacity: 0.8;
}
.blog-post-card {
	/* Featured Post Variant */
}
@media (min-width: 768px) {
	.blog-post-card--featured {
		grid-column: 1/-1;
		display: grid;
		grid-template-columns: 1.2fr 1fr;
	}
	.blog-post-card--featured .blog-post-card__image {
		height: 100%;
		min-height: 400px;
	}
	.blog-post-card--featured .blog-post-card__content {
		padding: 40px;
	}
	.blog-post-card--featured .blog-post-card__title {
		font-size: clamp(1.8rem, 3vw, 2.5rem);
	}
	.blog-post-card--featured .blog-post-card__excerpt {
		font-size: 1.1rem;
	}
}
@media (max-width: 767px) {
	.blog-post-card--featured .blog-post-card__image {
		height: 300px;
	}
}

/* ===========================================
   PAGINATION
   =========================================== */
.blog-pagination {
	margin-top: clamp(60px, 8vh, 80px);
}
.blog-pagination .pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 16px;
	background-color: #FFFFFF;
	color: #1B5E20;
	border: 2px solid #DEE2E6;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	gap: 8px;
}
.blog-pagination .page-numbers svg {
	display: block;
	flex-shrink: 0;
}
.blog-pagination .page-numbers:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(27, 94, 32, 0.1);
}
.blog-pagination .page-numbers.current {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #B3D334;
	cursor: default;
	transform: none;
}
.blog-pagination .page-numbers.dots {
	border: none;
	background: none;
	cursor: default;
}
.blog-pagination .page-numbers.dots:hover {
	background: none;
	transform: none;
	box-shadow: none;
}
.blog-pagination .page-numbers.prev, .blog-pagination .page-numbers.next {
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #1B5E20;
}
.blog-pagination .page-numbers.prev:hover, .blog-pagination .page-numbers.next:hover {
	background-color: #B3D334;
	border-color: #B3D334;
	color: #2d5016;
}

/* ===========================================
   NO POSTS MESSAGE
   =========================================== */
.no-posts {
	text-align: center;
	padding: clamp(60px, 10vh, 100px) 20px;
	background-color: #FFFFFF;
	border-radius: 16px;
}
.no-posts h1 {
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	color: #1B5E20;
	margin-bottom: 20px;
}
.no-posts p {
	font-size: clamp(1.1rem, 1.5vw, 1.2rem);
	color: #666666;
}

/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */
@media (max-width: 768px) {
	.blog-hero__categories {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 8px;
	}
	.blog-hero__categories::-webkit-scrollbar {
		height: 4px;
	}
	.blog-hero__categories::-webkit-scrollbar-thumb {
		background-color: #DEE2E6;
		border-radius: 2px;
	}
	.category-tag {
		flex-shrink: 0;
	}
}
/* =====================================================
   HISTORY TIMELINE PAGE STYLES
   Version: 1.1.0

   Styles for history timeline page with:
   - Hero section
   - Sticky year navigation sidebar
   - Alternating timeline items
   - Year markers with dashed connectors
   - Product images with decorations
   - Responsive zigzag layout

   @changes v1.1.0 - Added sticky year navigation sidebar
   ===================================================== */
.history-timeline-page {
	position: relative;
	scroll-behavior: smooth;
}

html.history-page-scroll-snap,
body.page-template-template-history {
	scroll-behavior: smooth;
}

/* ===========================================
   STICKY YEAR NAVIGATION SIDEBAR
   =========================================== */
.timeline-year-nav {
	position: fixed;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1000;
	display: none;
}
@media (min-width: 768px) {
	.timeline-year-nav {
		display: block;
	}
}
.timeline-year-nav__track {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 8px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
}
.timeline-year-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #4CAF50;
	border: 2px solid rgba(27, 94, 32, 0.3);
	color: rgba(27, 94, 32, 0.53) !important;
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}
.timeline-year-nav__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 100%;
	height: 100%;
	background: #1B5E20;
	border-radius: 50%;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}
.timeline-year-nav__item:hover {
	border-color: #1B5E20;
	transform: scale(1.1);
}
.timeline-year-nav__item:hover::before {
	transform: translate(-50%, -50%) scale(1);
}
.timeline-year-nav__item:hover .timeline-year-nav__year {
	color: #FFFFFF;
}
.timeline-year-nav__item.is-active {
	border-color: #1B5E20;
	background: #1B5E20;
	box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.2);
}
.timeline-year-nav__item.is-active .timeline-year-nav__year {
	color: #FFFFFF;
}
.timeline-year-nav__year {
	position: relative;
	z-index: 1;
	transition: color 0.3s ease;
	white-space: nowrap;
}
.timeline-year-nav__track::before {
	content: "";
	position: absolute;
	top: 56px;
	bottom: 56px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	background: linear-gradient(to bottom, rgba(27, 94, 32, 0.2) 0%, rgba(27, 94, 32, 0.4) 50%, rgba(27, 94, 32, 0.2) 100%);
	z-index: -1;
}

/* ===========================================
   TIMELINE HERO SECTION
   =========================================== */
.history-timeline-hero {
	position: relative;
	padding: clamp(120px, 15vh, 180px) clamp(20px, 5vw, 60px) clamp(100px, 12vh, 140px);
	text-align: center;
}
.history-timeline-hero__container {
	max-width: 900px;
	margin: 0 auto;
}
.history-timeline-hero__title {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 700;
	color: #1B5E20;
	margin-bottom: 30px;
	line-height: 1.2;
}
.history-timeline-hero__intro {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin-bottom: 40px;
}
.history-timeline-hero__intro p {
	margin-bottom: 1em;
}
.history-timeline-hero__intro p:last-child {
	margin-bottom: 0;
}
.history-timeline-hero .btn--primary {
	display: inline-block;
	padding: 16px 40px;
	background-color: #B3D334;
	color: #2d5016;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.history-timeline-hero .btn--primary:hover {
	background-color: #FFFFFF;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.history-timeline-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.history-timeline-hero__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

/* ===========================================
   TIMELINE ITEM
   =========================================== */
.timeline-item {
	min-height: 100vh;
	position: relative;
	padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 60px);
	overflow: visible;
}
.timeline-item.has-background--white .timeline-item__title {
	color: #1B5E20;
}
.timeline-item.has-background--white .timeline-item__description {
	color: #212529;
}
.timeline-item.has-background--white .timeline-connector {
	color: rgba(27, 94, 32, 0.3);
}
.timeline-item.has-background--green .timeline-item__title {
	color: #FFFFFF;
}
.timeline-item.has-background--green .timeline-item__description {
	color: rgba(255, 255, 255, 0.9);
}
.timeline-item.has-background--green .timeline-connector {
	color: rgba(255, 255, 255, 0.3);
}
.timeline-item__container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}
.timeline-item__content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
}
@media (min-width: 1024px) {
	.timeline-item__content {
		grid-template-columns: 1fr 1fr;
		gap: 100px;
	}
}
@media (min-width: 1024px) {
	.timeline-item__content--reverse {
		direction: rtl;
	}
	.timeline-item__content--reverse > * {
		direction: ltr;
		padding: 5px 30px;
	}
}
.timeline-item__text {
	z-index: 2;
}
.timeline-item__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}
.timeline-item__description {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.7;
}
.timeline-item__description p {
	margin-bottom: 1em;
}
.timeline-item__description p:last-child {
	margin-bottom: 0;
}
.timeline-item__visual {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
@media (max-width: 1023px) {
	.timeline-item__visual {
		min-height: 350px;
	}
}
.timeline-item__product {
	position: relative;
	z-index: 2;
	max-width: 500px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.timeline-item__product-blob {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 90%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}
.has-background--white .timeline-item__product-blob {
	background: radial-gradient(circle, rgba(232, 245, 233, 0.8) 0%, rgba(232, 245, 233, 0.3) 70%);
}
.timeline-item__product-image {
	max-width: 100%;
	max-height: 400px;
	width: auto;
	height: auto;
	filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
	animation: timelineFloat 4s ease-in-out infinite;
	position: relative;
	z-index: 2;
}
@media (max-width: 768px) {
	.timeline-item__product-image {
		max-height: 300px;
	}
}
.timeline-item__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.timeline-item__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
}

/* ===========================================
   YEAR MARKER
   =========================================== */
.timeline-year-marker {
	position: absolute;
	top: clamp(-100px, -10vh, -155px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
}
@media (max-width: 1023px) {
	.timeline-year-marker {
		position: static;
		transform: none;
		margin-bottom: 40px;
		display: flex;
		justify-content: center;
	}
}
.timeline-year-marker__badge {
	left: 50%;
	bottom: 0;
	background-color: #FFFFFF;
	color: #1B5E20;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	font-weight: 700;
	padding: clamp(12px, 2vh, 20px) clamp(24px, 4vw, 40px);
	border-radius: 50px;
	box-shadow: 0px 0px 24px 5px rgba(0, 0, 0, 0.15);
	border: 3px solid #B3D334;
	animation: yearBadgeFloat 3s ease-in-out infinite;
	position: relative;
	white-space: nowrap;
}
@media (min-width: 1024px) {
	.timeline-year-marker__badge::after {
		content: "";
		position: absolute;
		bottom: -18px;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 18px solid transparent;
		border-right: 18px solid transparent;
		border-top: 18px solid #FFFFFF;
	}
	.timeline-year-marker__badge::before {
		content: "";
		position: absolute;
		top: -18px;
		left: 30%;
		transform: translateX(-30%);
		width: 0;
		height: 0;
		border-left: 18px solid transparent;
		border-right: 18px solid transparent;
		border-bottom: 18px solid #FFFFFF;
	}
}
.has-background--green .timeline-year-marker__badge {
	box-shadow: 0px 0px 24px 5px rgba(255, 255, 255, 0.15);
	background-color: #1B5E20;
	color: #FFFFFF;
	border-color: #B3D334;
}
@media (min-width: 1024px) {
	.has-background--green .timeline-year-marker__badge::after {
		border-top-color: #1B5E20;
	}
	.has-background--green .timeline-year-marker__badge::before {
		border-bottom-color: #1B5E20;
	}
}

/* ===========================================
   TIMELINE CONNECTOR (Curved Dashed Line)
   Connects year badge to year badge through content with dynamic wave
   =========================================== */
.timeline-connector {
	position: absolute;
	top: clamp(10px, 2vh, 20px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
	width: clamp(60px, 8vw, 100px);
	height: calc(98vh + clamp(5px, 1vh, 10px));
	pointer-events: none;
}
@media (max-width: 1023px) {
	.timeline-connector {
		display: none;
	}
}
.timeline-connector__line {
	width: 100%;
	height: 100%;
	display: block;
}
.timeline-connector__line path {
	stroke: #B3D334;
	stroke-dasharray: 12, 3, 3, 23, 12, 23;
	stroke-width: 3;
	animation: dashFlow 30s linear infinite;
}
.has-background--white .timeline-connector path {
	stroke: #1B5E20;
	opacity: 0.5;
}
.has-background--green .timeline-connector path {
	stroke: #B3D334;
	opacity: 0.8;
}

@keyframes dashFlow {
	0% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: -800;
	}
}
/* ===========================================
   DECORATIVE ELEMENTS
   =========================================== */
.timeline-decoration {
	position: absolute;
	width: clamp(60px, 8vw, 100px);
	height: clamp(60px, 8vw, 100px);
	z-index: 1;
	animation: float 4s ease-in-out infinite;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}
@media (max-width: 768px) {
	.timeline-decoration {
		width: clamp(40px, 6vw, 60px);
		height: clamp(40px, 6vw, 60px);
	}
}
.timeline-decoration img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.timeline-decoration--1 {
	animation-delay: 0s;
}
.timeline-decoration--2 {
	animation-delay: 0.8s;
}
.timeline-decoration--3 {
	animation-delay: 1.6s;
}
.timeline-decoration--4 {
	animation-delay: 2.4s;
}
.timeline-decoration--5 {
	animation-delay: 3.2s;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes timelineFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
}
@keyframes yearBadgeFloat {
	0%, 100% {
		transform: translateX(-50%) translateY(0px);
	}
	50% {
		transform: translateX(-50%) translateY(-8px);
	}
	@media (max-width: 1023px) {
		0%, 100% {
			transform: translateY(0px);
		}
		50% {
			transform: translateY(-8px);
		}
	}
}
@keyframes float {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}
/* ===========================================
   RESPONSIVE ADJUSTMENTS
   =========================================== */
@media (max-width: 1023px) {
	.timeline-item__content--reverse {
		direction: ltr;
	}
	.timeline-item__visual {
		order: -1;
	}
}
/* ===========================================
   MOBILE TIMELINE NAVIGATION
   =========================================== */
.timeline-mobile-nav {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 25px;
	padding: 12px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(10px);
}
@media (max-width: 767px) {
	.timeline-mobile-nav {
		display: block;
	}
}
.timeline-mobile-nav__track {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.timeline-mobile-nav__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.2);
	border: 2px solid rgba(27, 94, 32, 0.3);
	color: rgba(27, 94, 32, 0.7) !important;
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}
.timeline-mobile-nav__item:hover {
	border-color: #1B5E20;
	background: #1B5E20;
	color: #FFFFFF !important;
	transform: scale(1.1);
}
.timeline-mobile-nav__item.is-active {
	border-color: #1B5E20;
	background: #1B5E20;
	color: #FFFFFF !important;
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.3);
}
.timeline-mobile-nav__year {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.timeline-decoration--3, .timeline-decoration--4, .timeline-decoration--5 {
		display: none;
	}
}
.contact-section {
	position: relative;
	padding: clamp(60px, 10vh, 100px) clamp(20px, 5vw, 60px);
}
.contact-section__wave {
	position: absolute;
	top: -5px;
	left: 0;
	width: 100%;
	pointer-events: none;
}
.contact-section__wave .wave-svg {
	display: block;
	width: 100%;
	height: 90px;
}
.contact-section__container {
	max-width: 1400px;
	margin: 0 auto;
}
.contact-section__content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: start;
}
@media (min-width: 1024px) {
	.contact-section__content {
		grid-template-columns: 2fr 3fr;
		gap: 80px;
	}
}
.contact-section__heading {
	color: #FFFFFF;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}
.has-background--green .contact-section__heading {
	color: #FFFFFF;
}
.has-background--white .contact-section__heading {
	color: #1B5E20;
}
.contact-section__description {
	line-height: 1.7;
	margin-bottom: 40px;
}
.has-background--green .contact-section__description {
	color: #FFFFFF;
}
.has-background--white .contact-section__description {
	color: #666666;
}
.contact-section__description p {
	margin-bottom: 1em;
}
.contact-section__description p:last-child {
	margin-bottom: 0;
}
.contact-section__decoration {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1023px) {
	.contact-section__decoration {
		margin-top: 30px;
	}
}
.contact-section__decoration img {
	max-width: 300px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
	animation: decorFloat 4s ease-in-out infinite;
}
.contact-section .contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 40px;
}
.contact-section .contact-info-item {
	display: flex;
	gap: 16px;
	align-items: center;
}
.contact-section .contact-info-item__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	transition: all 0.3s ease;
}
.has-background--green .contact-section .contact-info-item__icon {
	background-color: rgba(255, 255, 255, 0.15);
	color: #B3D334;
}
.has-background--white .contact-section .contact-info-item__icon {
	background-color: #E8F5E9;
	color: #1B5E20;
}
.contact-section .contact-info-item__icon svg {
	width: 20px;
	height: 20px;
}
.contact-section .contact-info-item__content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.contact-section .contact-info-item__label {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0.8;
}
.has-background--green .contact-section .contact-info-item__label {
	color: rgba(255, 255, 255, 0.8);
}
.has-background--white .contact-section .contact-info-item__label {
	color: #666666;
}
.contact-section .contact-info-item__value {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}
.has-background--green .contact-section .contact-info-item__value {
	color: #FFFFFF;
}
.has-background--white .contact-section .contact-info-item__value {
	color: #1B5E20;
}
.contact-section .contact-info-item__value::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #C7D937;
	transition: width 0.3s ease;
}
.contact-section .contact-info-item__value:hover {
	color: #C7D937;
}
.contact-section .contact-info-item__value:hover::after {
	width: 100%;
}
.contact-section .contact-info-item:hover .contact-section .contact-info-item__icon {
	transform: translateY(-3px);
}
.has-background--green .contact-section .contact-info-item:hover .contact-section .contact-info-item__icon {
	background-color: rgba(255, 255, 255, 0.25);
}
.has-background--white .contact-section .contact-info-item:hover .contact-section .contact-info-item__icon {
	background-color: #1B5E20;
	color: #FFFFFF;
}
.contact-section .contact-social {
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.has-background--white .contact-section .contact-social {
	border-top-color: #DEE2E6;
}
.contact-section .contact-social__label {
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
}
.has-background--green .contact-section .contact-social__label {
	color: rgba(255, 255, 255, 0.8);
}
.has-background--white .contact-section .contact-social__label {
	color: #666666;
}
.contact-section .contact-social__links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.contact-section .contact-social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.has-background--green .contact-section .contact-social__link {
	background-color: rgba(255, 255, 255, 0.15);
	color: #FFFFFF;
}
.has-background--green .contact-section .contact-social__link:hover {
	background-color: #B3D334;
	color: #2d5016;
	transform: translateY(-3px);
}
.has-background--white .contact-section .contact-social__link {
	background-color: #E8F5E9;
	color: #1B5E20;
}
.has-background--white .contact-section .contact-social__link:hover {
	background-color: #1B5E20;
	color: #FFFFFF;
	transform: translateY(-3px);
}
.contact-section .contact-social__link svg {
	width: 20px;
	height: 20px;
}
.contact-section__form {
	background-color: #FFFFFF;
	padding: clamp(30px, 5vw, 50px);
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}
.has-background--white .contact-section__form {
	background-color: #E8F5E9;
}
.contact-section__form .wpcf7 .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.contact-section__form .wpcf7 .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}
.contact-section__form .wpcf7 input[type=text],
.contact-section__form .wpcf7 input[type=email],
.contact-section__form .wpcf7 input[type=tel],
.contact-section__form .wpcf7 input[type=url],
.contact-section__form .wpcf7 input[type=number],
.contact-section__form .wpcf7 textarea,
.contact-section__form .wpcf7 select {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #DEE2E6;
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	background-color: #FFFFFF;
	color: #212529;
	transition: all 0.3s ease;
}
.contact-section__form .wpcf7 input[type=text]:focus,
.contact-section__form .wpcf7 input[type=email]:focus,
.contact-section__form .wpcf7 input[type=tel]:focus,
.contact-section__form .wpcf7 input[type=url]:focus,
.contact-section__form .wpcf7 input[type=number]:focus,
.contact-section__form .wpcf7 textarea:focus,
.contact-section__form .wpcf7 select:focus {
	outline: none;
	border-color: #1B5E20;
	box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}
.contact-section__form .wpcf7 input[type=text]::-moz-placeholder, .contact-section__form .wpcf7 input[type=email]::-moz-placeholder, .contact-section__form .wpcf7 input[type=tel]::-moz-placeholder, .contact-section__form .wpcf7 input[type=url]::-moz-placeholder, .contact-section__form .wpcf7 input[type=number]::-moz-placeholder, .contact-section__form .wpcf7 textarea::-moz-placeholder, .contact-section__form .wpcf7 select::-moz-placeholder {
	color: #6C757D;
}
.contact-section__form .wpcf7 input[type=text]::placeholder,
.contact-section__form .wpcf7 input[type=email]::placeholder,
.contact-section__form .wpcf7 input[type=tel]::placeholder,
.contact-section__form .wpcf7 input[type=url]::placeholder,
.contact-section__form .wpcf7 input[type=number]::placeholder,
.contact-section__form .wpcf7 textarea::placeholder,
.contact-section__form .wpcf7 select::placeholder {
	color: #6C757D;
}
.contact-section__form .wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}
.contact-section__form .wpcf7 label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1B5E20;
	font-size: 0.95rem;
}
.contact-section__form .wpcf7 .wpcf7-submit {
	display: inline-block;
	padding: 16px 40px;
	background-color: #1B5E20;
	color: #FFFFFF;
	font-size: 1.05rem;
	font-weight: 600;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	align-self: flex-start;
}
.contact-section__form .wpcf7 .wpcf7-submit:hover {
	background-color: #B3D334;
	color: #2d5016;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(27, 94, 32, 0.15);
}
.contact-section__form .wpcf7 .wpcf7-submit:active {
	transform: translateY(-1px);
}
.contact-section__form .wpcf7 .wpcf7-spinner {
	margin-left: 16px;
}
.contact-section__form .wpcf7 .wpcf7-not-valid-tip {
	color: #E53935;
	font-size: 0.9rem;
	margin-top: 6px;
	display: block;
}
.contact-section__form .wpcf7 .wpcf7-validation-errors,
.contact-section__form .wpcf7 .wpcf7-acceptance-missing {
	border: 2px solid #E53935;
	background-color: rgba(229, 57, 53, 0.1);
	color: #E53935;
	padding: 16px;
	border-radius: 12px;
	margin: 0;
	font-size: 0.95rem;
}
.contact-section__form .wpcf7 .wpcf7-mail-sent-ok {
	border: 2px solid #4CAF50;
	background-color: rgba(76, 175, 80, 0.1);
	color: #4CAF50;
	padding: 16px;
	border-radius: 12px;
	margin: 0;
	font-size: 0.95rem;
}
.contact-section__form .wpcf7 .wpcf7-list-item {
	margin: 0 0 8px 0;
}
.contact-section__form .wpcf7 .wpcf7-list-item label {
	display: inline;
	margin: 0 0 0 8px;
	font-weight: normal;
}
.contact-section__form .wpcf7 input[type=checkbox],
.contact-section__form .wpcf7 input[type=radio] {
	width: auto;
	margin-right: 8px;
}
.contact-section .contact-form-placeholder {
	text-align: center;
	padding: 40px 20px;
}
.contact-section .contact-form-placeholder p {
	color: #666666;
	font-size: 1rem;
}

@keyframes decorFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
}
@media (max-width: 1023px) {
	.contact-section__content {
		grid-template-columns: 1fr;
	}
	.contact-section__form {
		order: 2;
	}
	.contact-section__info {
		order: 1;
	}
}
@media (max-width: 768px) {
	.contact-section__form {
		padding: clamp(24px, 4vw, 30px);
	}
	.contact-section__form .wpcf7 .wpcf7-submit {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.contact-section .contact-info-item__icon {
		width: 40px;
		height: 40px;
	}
	.contact-section .contact-info-item__icon svg {
		width: 18px;
		height: 18px;
	}
	.contact-section .contact-social__links {
		justify-content: flex-start;
	}
	.contact-section .contact-social__link {
		width: 40px;
		height: 40px;
	}
	.contact-section .contact-social__link svg {
		width: 18px;
		height: 18px;
	}
}
/* ===========================================
   Contact HERO SECTION
   =========================================== */
.contact-hero {
	background-color: #1B5E20;
	position: relative;
	padding: clamp(120px, 15vh, 180px) clamp(20px, 5vw, 60px) clamp(100px, 12vh, 140px);
	text-align: center;
}
.contact-hero__container {
	max-width: 900px;
	margin: 0 auto;
}
.contact-hero__title {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 30px;
	line-height: 1.2;
}
.contact-hero__wave {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 10;
	pointer-events: none;
}
.contact-hero__wave svg {
	display: block;
	width: 100%;
	height: clamp(60px, 10vw, 120px);
	transform: scaleX(-1);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
/* Header
--------------------------------------------- */
/**
 * Header Styles
 * Version: 2.0 - Updated with hero header styles from _new-hero2.scss
 *
 * Changes:
 * - Replaced old navbar structure with hero-header grid layout (1-1-1)
 * - Added responsive design breakpoints
 * - Updated color variables to match hero section
 * - Added improved navigation menu styles with hover effects
 * - Integrated language switcher styling
 */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: clamp(16px, 2vh, 24px) clamp(24px, 4vw, 64px);
	background: rgba(15, 46, 36, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}
.site-header.scrolled {
	background: rgba(15, 46, 36, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-header-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 20px;
	max-width: 1920px;
	margin: 0 auto;
}

/* Logo - First Column */
.navbar-brand {
	justify-self: start;
}
.navbar-brand a {
	display: inline-block;
	color: #eaf4e9;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 700;
	text-decoration: none;
	transition: opacity 0.3s ease;
}
.navbar-brand a:hover {
	opacity: 0.8;
}
.navbar-brand img {
	max-height: clamp(40px, 5vh, 60px);
	width: auto;
	display: block;
}

/* Navigation - Center Column */
.hero-nav {
	justify-self: center;
}
.hero-nav .hero-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: clamp(20px, 3vw, 40px);
	align-items: center;
}
.hero-nav .hero-menu li {
	margin: 0;
}
.hero-nav .hero-menu li a {
	color: #eaf4e9;
	text-decoration: none;
	font-size: clamp(0.95rem, 1em, 1rem);
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 8px 0;
	position: relative;
	transition: color 0.3s ease;
}
.hero-nav .hero-menu li a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #C7D937;
	transition: width 0.3s ease;
}
.hero-nav .hero-menu li a:hover {
	color: #C7D937;
}
.hero-nav .hero-menu li a:hover::after {
	width: 100%;
}
.hero-nav .hero-menu li.current-menu-item a, .hero-nav .hero-menu li.current_page_item a {
	color: #C7D937;
}
.hero-nav .hero-menu li.current-menu-item a::after, .hero-nav .hero-menu li.current_page_item a::after {
	width: 100%;
}

/* Actions - Third Column */
.hero-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 16px;
}
.hero-actions .hero-lang-switcher select {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #eaf4e9;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
.hero-actions .hero-lang-switcher select:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .hero-lang-switcher select option {
	background: #1a4234;
	color: #eaf4e9;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
	.hero-header-inner {
		grid-template-columns: auto 1fr auto;
		gap: 16px;
	}
	.hero-nav .hero-menu {
		gap: clamp(16px, 2.5vw, 32px);
	}
}
@media (max-width: 992px) {
	.hero-header-inner {
		gap: 12px;
	}
	.hero-nav .hero-menu {
		gap: 12px;
	}
}
@media (max-width: 768px) {
	.site-header {
		padding: clamp(12px, 2vh, 20px) clamp(20px, 5vw, 32px);
	}
	/* Mobile Header - Stack or Hamburger */
	.hero-header-inner {
		grid-template-columns: auto 1fr;
		gap: 8px;
	}
	.hero-nav {
		display: none; /* Hide nav on mobile - add hamburger menu separately */
	}
	.hero-nav.is-open {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(15, 46, 36, 0.8);
		backdrop-filter: blur(10px);
		padding: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		width: 100%;
	}
	.hero-nav.is-open .hero-menu {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}
	.hero-actions {
		justify-self: end;
	}
	.navbar-brand img {
		max-height: 36px;
	}
}
@media (max-width: 480px) {
	.site-header {
		padding: 12px 16px;
	}
	.navbar-brand img {
		max-height: 32px;
	}
}
.language-selector {
	position: relative;
}
.language-selector .language-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px 12px;
	color: #333;
	transition: color 0.3s ease;
}
.language-selector .language-toggle:hover {
	color: rgb(21.3099173554, 74.1900826446, 25.2561983471);
}
.language-selector .language-toggle .flag-icon {
	border-radius: 2px;
}
.language-selector .language-toggle .language-code {
	font-weight: 500;
	font-size: 14px;
}
.language-selector .language-toggle .dropdown-arrow {
	transition: transform 0.3s ease;
}
.language-selector .language-toggle[aria-expanded=true] .dropdown-arrow {
	transform: rotate(180deg);
}
.language-selector .language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 160px;
	z-index: 1000;
	margin-top: 5px;
}
.language-selector .language-dropdown .language-options {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}
.language-selector .language-dropdown .language-options li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.2s ease;
}
.language-selector .language-dropdown .language-options li a:hover {
	background: #f8f9fa;
}
.language-selector .language-dropdown .language-options li a .flag-icon {
	border-radius: 2px;
}
.language-selector .language-dropdown .language-options li.active a {
	background: #f0f7ff;
	color: #2c5282;
}

/* Section Settings (Universal)
--------------------------------------------- */
/* =====================================================
   UNIVERSAL SECTION SETTINGS
   Version: 1.0

   Provides universal styling for all sections with:
   - Background color variants (green/white/transparent)
   - Width variants (boxed/full)
   - Wavy dividers (top/bottom)
   - Automatic text color adjustment
   ===================================================== */
.container {
	width: 100%;
	max-width: 1400px !important;
	margin: 0 auto;
	padding: 0 20px;
}
@media (min-width: 1024px) {
	.container {
		padding: 0 40px;
	}
}
@media (min-width: 1440px) {
	.container {
		padding: 0 60px;
	}
}

.section-wrapper,
.tango-section {
	position: relative;
	background-color: #fff !important;
	transition: background-color 0.3s ease;
}
.section-wrapper .container,
.tango-section .container {
	width: 100%;
	max-width: 1400px !important;
	margin: 0 auto;
	padding: 0 20px;
}
@media (min-width: 1024px) {
	.section-wrapper .container,
	.tango-section .container {
		padding: 0 40px;
	}
}
@media (min-width: 1440px) {
	.section-wrapper .container,
	.tango-section .container {
		padding: 0 60px;
	}
}
.section-wrapper,
.tango-section {
	/* ===========================================
	   BACKGROUND COLOR VARIANTS
	   =========================================== */
}
.section-wrapper.has-background--green,
.tango-section.has-background--green {
	background: #1B5E20 !important;
	color: #eaf4e9;
}
.section-wrapper.has-background--green h1, .section-wrapper.has-background--green h2, .section-wrapper.has-background--green h3, .section-wrapper.has-background--green h4, .section-wrapper.has-background--green h5, .section-wrapper.has-background--green h6,
.tango-section.has-background--green h1,
.tango-section.has-background--green h2,
.tango-section.has-background--green h3,
.tango-section.has-background--green h4,
.tango-section.has-background--green h5,
.tango-section.has-background--green h6 {
	color: #eaf4e9;
}
.section-wrapper.has-background--green a,
.tango-section.has-background--green a {
	color: #B3D334;
}
.section-wrapper.has-background--green a:hover,
.tango-section.has-background--green a:hover {
	color: rgb(186.8461538462, 215.5425101215, 72.9574898785);
}
.section-wrapper.has-background--green .btn, .section-wrapper.has-background--green .hero-cta,
.tango-section.has-background--green .btn,
.tango-section.has-background--green .hero-cta {
	background: #B3D334;
	color: #1a4234;
}
.section-wrapper.has-background--green .btn:hover, .section-wrapper.has-background--green .hero-cta:hover,
.tango-section.has-background--green .btn:hover,
.tango-section.has-background--green .hero-cta:hover {
	background: rgb(186.8461538462, 215.5425101215, 72.9574898785);
}
.section-wrapper.has-background--white,
.tango-section.has-background--white {
	background-color: #ffffff !important;
	color: #1a4234;
}
.section-wrapper.has-background--white h1, .section-wrapper.has-background--white h2, .section-wrapper.has-background--white h3, .section-wrapper.has-background--white h4, .section-wrapper.has-background--white h5, .section-wrapper.has-background--white h6,
.tango-section.has-background--white h1,
.tango-section.has-background--white h2,
.tango-section.has-background--white h3,
.tango-section.has-background--white h4,
.tango-section.has-background--white h5,
.tango-section.has-background--white h6 {
	color: #1a4234;
}
.section-wrapper.has-background--white a,
.tango-section.has-background--white a {
	color: #2d5016;
}
.section-wrapper.has-background--white a:hover,
.tango-section.has-background--white a:hover {
	color: rgb(56.25, 100, 27.5);
}
.section-wrapper.has-background--white .btn, .section-wrapper.has-background--white .hero-cta,
.tango-section.has-background--white .btn,
.tango-section.has-background--white .hero-cta {
	background: #1B5E20;
	color: #eaf4e9;
}
.section-wrapper.has-background--white .btn:hover, .section-wrapper.has-background--white .hero-cta:hover,
.tango-section.has-background--white .btn:hover,
.tango-section.has-background--white .hero-cta:hover {
	background: rgb(21.3099173554, 74.1900826446, 25.2561983471);
}
.section-wrapper.has-background--transparent,
.tango-section.has-background--transparent {
	background: transparent;
}
.section-wrapper.has-text-color--white,
.tango-section.has-text-color--white {
	color: #ffffff;
}
.section-wrapper.has-text-color--white h1, .section-wrapper.has-text-color--white h2, .section-wrapper.has-text-color--white h3, .section-wrapper.has-text-color--white h4, .section-wrapper.has-text-color--white h5, .section-wrapper.has-text-color--white h6,
.tango-section.has-text-color--white h1,
.tango-section.has-text-color--white h2,
.tango-section.has-text-color--white h3,
.tango-section.has-text-color--white h4,
.tango-section.has-text-color--white h5,
.tango-section.has-text-color--white h6 {
	color: #ffffff;
}
.section-wrapper.has-text-color--black,
.tango-section.has-text-color--black {
	color: #1a4234;
}
.section-wrapper.has-text-color--black h1, .section-wrapper.has-text-color--black h2, .section-wrapper.has-text-color--black h3, .section-wrapper.has-text-color--black h4, .section-wrapper.has-text-color--black h5, .section-wrapper.has-text-color--black h6,
.tango-section.has-text-color--black h1,
.tango-section.has-text-color--black h2,
.tango-section.has-text-color--black h3,
.tango-section.has-text-color--black h4,
.tango-section.has-text-color--black h5,
.tango-section.has-text-color--black h6 {
	color: #1a4234;
}
.section-wrapper,
.tango-section {
	/* ===========================================
	   WIDTH VARIANTS
	   =========================================== */
}
.section-wrapper.width--boxed,
.tango-section.width--boxed {
	max-width: 1200px;
	margin: 0 auto !important;
}
.section-wrapper.width--boxed > *,
.tango-section.width--boxed > * {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(20px, 5vw, 40px);
	padding-right: clamp(20px, 5vw, 40px);
}
.section-wrapper.width--full-width > *,
.tango-section.width--full-width > * {
	max-width: 100%;
	padding-left: clamp(20px, 5vw, 60px);
	padding-right: clamp(20px, 5vw, 60px);
}
.section-wrapper,
.tango-section {
	/* ===========================================
	   RESPONSIVE ADJUSTMENTS
	   =========================================== */
}
/* Posts and pages
--------------------------------------------- */
/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}
.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/* Forms
--------------------------------------------- */
.xyz-contact-form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.xyz-contact-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.xyz-form-group {
	display: flex;
	margin-bottom: 1.5rem;
	flex-direction: column;
}
.xyz-form-group label {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}
.xyz-form-group .required {
	color: #d9534f;
	margin-left: 0.25rem;
}
.xyz-form-group input[type=text],
.xyz-form-group input[type=email],
.xyz-form-group input[type=tel],
.xyz-form-group textarea,
.xyz-form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}
.xyz-form-group input[type=text]:focus,
.xyz-form-group input[type=email]:focus,
.xyz-form-group input[type=tel]:focus,
.xyz-form-group textarea:focus,
.xyz-form-group select:focus {
	outline: none;
	border-color: #005a9c;
	box-shadow: 0 0 0 2px rgba(0, 90, 156, 0.2);
}
.xyz-form-group textarea {
	resize: vertical;
	min-height: 120px;
}
.xyz-form-group.acceptance {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
}
.xyz-form-group.acceptance input[type=checkbox] {
	margin-right: 0.75rem;
}
.xyz-form-group.acceptance a {
	color: #005a9c;
	text-decoration: underline;
}
.xyz-form-group.submit {
	text-align: right;
}
.xyz-form-group.submit input[type=submit],
.xyz-form-group.submit .wpcf7-submit {
	background-color: #005a9c;
	color: #fff;
	border: none;
	padding: 0.85rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.xyz-form-group.submit input[type=submit]:hover,
.xyz-form-group.submit .wpcf7-submit:hover {
	background-color: #004170;
}
@media (max-width: 768px) {
	.xyz-form-group.submit input[type=submit],
	.xyz-form-group.submit .wpcf7-submit {
		width: 100%;
	}
}

span.wpcf7-not-valid-tip {
	color: #d9534f;
	font-size: 0.9em;
	margin-top: 0.25rem;
}

div.wpcf7-validation-errors {
	border: 1px solid #fbe2e2;
	background-color: #f9eaea;
	color: #c00;
	padding: 1rem;
	margin-bottom: 1.5rem;
	border-radius: 4px;
}

/* Products
--------------------------------------------- */
.product-carousel-section {
	padding: 40px 0 90px;
}
.product-carousel-section .section-title {
	text-align: center;
	margin-bottom: 20px;
}

.product-carousel {
	padding: 40px 0;
}
.product-carousel .swiper-button-next,
.product-carousel .swiper-button-prev {
	color: #F39C12;
}
.product-carousel .swiper-pagination {
	bottom: 0;
}
.product-carousel .swiper-pagination-bullet-active {
	background: #F39C12;
}

.product-card {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #333;
	transition: transform 0.3s ease;
}
.product-card:hover {
	transform: scale(1.05);
}
.product-card:hover .fruit-slice {
	transform: translate(-50%, -50%) scale(1) rotate(-15deg);
	opacity: 1;
}
.product-card__image-wrapper {
	position: relative;
	border-radius: 20px;
	padding: 10px 0px;
	overflow: hidden;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.product-card__image-wrapper {
		height: 100%;
	}
}
.product-card .product-image {
	position: relative;
	z-index: 2;
	width: 100% !important;
	max-width: 250px;
	height: auto;
	filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}
.product-card .fruit-slice {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 100%;
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.5);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.product-card__title {
	margin-top: 15px;
	font-size: 1.2rem;
	font-weight: bold;
	color: #2c3e50;
}

/**
 * 404 Page Styles - Interactive Tango Theme
 * Features interactive spinner wheel and engaging messaging
 */
@keyframes spin-smooth {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes pulse-scale {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
@keyframes slide-in-up {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes pop-in {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes glow-pulse {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
	}
	50% {
		box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
	}
}
@keyframes float-shimmer {
	0% {
		transform: translateY(-10px);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
.error-404.tango-404-section {
	min-height: 100vh;
	background: linear-gradient(135deg, #fff8f3 0%, #fffaf6 100%);
	position: relative;
	overflow: hidden;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.error-404.tango-404-section {
		padding: 20px 15px;
	}
}

#fruitCanvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	background: transparent;
}

.tango-404-container {
	margin: 5rem auto;
	position: relative;
	z-index: 2;
	max-width: 900px;
	width: 100%;
	text-align: center;
}

.tango-404-game-area {
	animation: slide-in-up 0.8s ease-out;
}

.error-number {
	font-size: 180px;
	font-weight: 900;
	background: linear-gradient(135deg, #ff6600, #e55a00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin: 0 0 40px 0;
	letter-spacing: -5px;
	animation: pop-in 0.6s ease-out;
	transition: all 0.6s ease;
}
@media (max-width: 768px) {
	.error-number {
		font-size: 120px;
		margin: 0 0 30px 0;
	}
}
@media (max-width: 480px) {
	.error-number {
		font-size: 80px;
		margin: 0 0 20px 0;
		letter-spacing: -2px;
	}
}

.tango-spinner-container {
	position: relative;
	width: 280px;
	height: 280px;
	margin: 0 auto 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width: 768px) {
	.tango-spinner-container {
		width: 220px;
		height: 220px;
		margin: 0 auto 40px;
	}
}
@media (max-width: 480px) {
	.tango-spinner-container {
		width: 180px;
		height: 180px;
		margin: 0 auto 30px;
	}
}

.spinner-ring {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spinner-slice {
	position: absolute;
	width: 100%;
	height: 100%;
	clip-path: polygon(50% 50%, 100% 0, 100% 100%);
	background-color: var(--color, #ff6600);
	transform: rotate(calc(var(--slice) * 60deg));
}
.spinner-slice::before {
	content: "";
	position: absolute;
	inset: 20px;
	border-radius: 50%;
	background: #fff8f3;
}

.spinner-center {
	position: absolute;
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #ff6600, #e55a00);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 900;
	color: white;
	font-size: 18px;
	letter-spacing: 2px;
	box-shadow: 0 8px 24px rgba(255, 102, 0, 0.3);
	transition: all 0.3s ease;
	animation: glow-pulse 2s ease-in-out infinite;
	z-index: 10;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media (max-width: 768px) {
	.spinner-center {
		width: 65px;
		height: 65px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.spinner-center {
		width: 55px;
		height: 55px;
		font-size: 12px;
		letter-spacing: 1px;
	}
}
.spinner-center:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(255, 102, 0, 0.5);
}
.spinner-center:active {
	transform: scale(0.95);
}
.spinner-center.spinning {
	pointer-events: none;
	animation: none;
}

.spinner-text {
	display: block;
}

.message-display {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}
@media (max-width: 768px) {
	.message-display {
		min-height: 60px;
		margin: 30px 0;
	}
}

.message-text {
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.4;
	margin: 0;
	animation: pop-in 0.6s ease-out;
	max-width: 600px;
}
@media (max-width: 768px) {
	.message-text {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.message-text {
		font-size: 18px;
	}
}

.tango-404-options {
	margin: 40px 0;
	animation: slide-in-up 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
	.tango-404-options {
		margin: 30px 0;
	}
}

.options-prompt {
	font-size: 18px;
	color: #666666;
	margin: 0 0 20px 0;
	font-weight: 500;
}
@media (max-width: 480px) {
	.options-prompt {
		font-size: 16px;
		margin: 0 0 15px 0;
	}
}

.options-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}
@media (max-width: 480px) {
	.options-buttons {
		flex-direction: column;
	}
}

.option-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	background: linear-gradient(135deg, #ff6600, #e55a00);
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
	text-decoration: none;
}
@media (max-width: 768px) {
	.option-btn {
		padding: 12px 24px;
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.option-btn {
		padding: 12px 20px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}
}
.option-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(255, 102, 0, 0.4);
}
.option-btn:active {
	transform: translateY(-1px);
}
.option-btn .option-emoji {
	font-size: 20px;
}
@media (max-width: 480px) {
	.option-btn .option-emoji {
		font-size: 18px;
	}
}
.option-btn .option-text {
	letter-spacing: 0.5px;
}

.quick-search-form {
	animation: slide-in-up 0.6s ease-out;
	padding: 30px 20px;
	background: rgba(255, 102, 0, 0.08);
	border-radius: 16px;
	border: 2px solid rgba(255, 102, 0, 0.2);
}
@media (max-width: 768px) {
	.quick-search-form {
		padding: 20px 15px;
	}
}
.quick-search-form h3 {
	font-size: 20px;
	color: #1a1a1a;
	margin: 0 0 20px 0;
}
@media (max-width: 480px) {
	.quick-search-form h3 {
		font-size: 18px;
		margin: 0 0 15px 0;
	}
}
.quick-search-form form {
	display: flex;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto 20px;
}
@media (max-width: 480px) {
	.quick-search-form form {
		flex-direction: column;
	}
}
.quick-search-form form input[type=search] {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid #ff6600;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}
.quick-search-form form input[type=search]:focus {
	outline: none;
	border-color: #e55a00;
	box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}
@media (max-width: 480px) {
	.quick-search-form form input[type=search] {
		padding: 10px 14px;
		font-size: 14px;
	}
}
.quick-search-form form button {
	padding: 12px 30px;
	background: linear-gradient(135deg, #ff6600, #e55a00);
	color: white;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	white-space: nowrap;
}
@media (max-width: 480px) {
	.quick-search-form form button {
		padding: 10px 20px;
		font-size: 14px;
	}
}
.quick-search-form form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(255, 102, 0, 0.3);
}
.quick-search-form form button:active {
	transform: translateY(0);
}

.back-btn {
	padding: 10px 20px;
	background: transparent;
	color: #ff6600;
	border: 2px solid #ff6600;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}
.back-btn:hover {
	background: rgba(255, 102, 0, 0.1);
	color: #e55a00;
	border-color: #e55a00;
}
.back-btn:active {
	background: rgba(255, 102, 0, 0.15);
}

.tango-facts-section {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid rgba(255, 102, 0, 0.1);
	animation: slide-in-up 0.8s ease-out 0.4s both;
}
@media (max-width: 768px) {
	.tango-facts-section {
		margin-top: 40px;
		padding-top: 30px;
	}
}
@media (max-width: 480px) {
	.tango-facts-section {
		margin-top: 30px;
		padding-top: 20px;
	}
}

.fact-label {
	font-size: 14px;
	font-weight: 700;
	color: #ff6600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
}
@media (max-width: 480px) {
	.fact-label {
		font-size: 12px;
	}
}

.fun-fact {
	font-size: 16px;
	color: #666666;
	font-style: italic;
	margin: 0;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	animation: float-shimmer 3s ease-in-out infinite;
}
@media (max-width: 480px) {
	.fun-fact {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.tango-404-section {
		padding: 15px 10px;
	}
	.tango-404-container {
		width: 100%;
	}
}
/*!
 * Hero mobile menu toggle styles
 */
.hero-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--text-color-primary, #eaf4e9);
	cursor: pointer;
	padding: 8px;
	z-index: 100;
	transition: transform 0.3s ease;
}
.hero-menu-toggle svg {
	display: block;
}
.hero-menu-toggle:hover {
	transform: scale(1.1);
}

body.menu-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.hero-menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;
	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;
	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}