:root {
    --color-primary: #2e7d32;
    --color-secondary: #ffb300;
    --color-accent: #66bb6a;
    --color-background-main: #f0f4c3;
    --color-footer-bg: #1b5e20;
    --color-text-dark: #212121;
    --color-text-light: #f5f5f5;
    --color-section-1: #f9fbe7;
    --color-section-2: #e8f5e9;
    --color-section-3: #dce775;
    --color-section-4: #aed581;
    --color-section-5: #c5e1a5;
    --color-section-6: #fffde7;

    --font-family-sans: 'Lato', 'Open Sans', sans-serif;
    --font-family-accent: 'Montserrat', sans-serif; /* A bold, modern sans-serif for CTAs */

    --border-radius-base: 8px;
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 48px;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-sans);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-background-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-sans);
    color: var(--color-primary);
    margin-top: 1.2em;
    margin-bottom: 0.8em;
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.6rem; font-weight: 600; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1em;
    font-size: 1.1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-base);
}

/* Layout & Structure */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

section {
    padding: var(--spacing-xl) var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

section:nth-of-type(odd) {
    background-color: var(--color-section-1);
}

section:nth-of-type(even) {
    background-color: var(--color-section-2);
}

/* Specific Section Backgrounds */
.section-variant-1 { background-color: var(--color-section-3); }
.section-variant-2 { background-color: var(--color-section-4); }
.section-variant-3 { background-color: var(--color-section-5); }
.section-variant-4 { background-color: var(--color-section-6); }


/* Header */
.header {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
    margin-right: var(--spacing-sm);
    border-radius: 0; /* Logo image typically doesn't need border-radius */
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
}

.header nav a {
    color: var(--color-text-light);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-base);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.header nav a:hover,
.header nav a.active {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-base);
    font-family: var(--font-family-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-subtle);
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--color-accent) 90%, black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-dark);
}

.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--color-secondary) 90%, black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-subtle);
}

/* Cards */
.card {
    background-color: #ffffff;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-subtle);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-image {
    width: 100%;
    border-radius: var(--border-radius-base);
    margin-bottom: var(--spacing-md);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid #ccc;
    border-radius: var(--border-radius-base);
    font-family: var(--font-family-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-text-light);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-accent);
}

.footer a:hover {
    color: var(--color-secondary);
}

/* Utility Classes for Alpine.js transitions */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.5s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
    transition: all 0.4s ease-out;
}
.slide-up-enter-from, .slide-up-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.7rem; }

    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
    }

    .header nav ul {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }

    .header nav li {
        width: 100%;
    }

    .header nav a {
        display: block;
        text-align: center;
        padding: var(--spacing-sm);
    }

    section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .container {
        padding: var(--spacing-md);
    }

    .btn {
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    p { font-size: 1rem; }

    .btn {
        font-size: 1rem;
        padding: var(--spacing-sm);
    }
}

/* Custom visual flair: Organic shapes and subtle gradients */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-section-4) 0%, var(--color-background-main) 100%);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
    animation: organic-move 10s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 30% 70%, var(--color-secondary) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 60% 40% 40%;
    animation: organic-move-alt 12s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes organic-move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 15px) scale(1.05); }
}

@keyframes organic-move-alt {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-15px, -20px) scale(1.03); }
}

/* Icons */
.icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    fill: currentColor;
    margin-right: 0.3em;
}

/* Custom component for product display */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #ffffff;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-subtle);
    padding: var(--spacing-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
    max-width: 80%;
    height: auto;
    margin: 0 auto var(--spacing-md) auto;
    border-radius: var(--border-radius-base);
    object-fit: cover;
}

.product-card h3 {
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

.product-card p {
    font-size: 1rem;
    color: #555;
    flex-grow: 1; /* Allows description to take up available space */
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.product-card .btn {
    width: auto;
    align-self: center; /* Center button within flex container */
}

/* Testimonial Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--color-section-6);
    border-left: 5px solid var(--color-accent);
    border-radius: var(--border-radius-base);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-subtle);
    font-style: italic;
    color: #444;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--spacing-md);
    display: block;
}

/* Contact Section */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-medium);
}
.contact-form-container .btn {
    margin-top: var(--spacing-md);
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}