/* CSS Variables - Design System */
:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #678365;
    --primary-foreground: #ffffff;
    --secondary: #678365;
    --secondary-foreground: #ffffff;
    --muted: #f5f5f5;
    --muted-foreground: #6b7280;
    --accent: #678365;
    --accent-foreground: #ffffff;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #678365;
    --radius: 1rem;
    --organic-cream: #f9fafb;
    --organic-earth: #678365;
    --organic-dark: #678365;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease-in-out;
}

.nav-fixed.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    gap: 1rem;
}

@media (max-width: 767px) {
    .nav-logo span {
        font-size: 1.25rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.nav-tagline {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .nav-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 640px) {
    .nav-tagline {
        display: none;
    }
}

.icon-leaf {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.logo-image {
    height: 4rem;
    width: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .logo-image {
        height: 3rem;
    }
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s;
    color: var(--foreground);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-btn-desktop {
    display: none !important;
}

@media (min-width: 768px) {
    .nav-btn-desktop {
        display: block !important;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 100;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: var(--card);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-menu-overlay.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
    border-radius: calc(var(--radius) - 2px);
    transition: all 0.3s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background-color: var(--organic-cream);
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    padding: 0.625rem 1rem;
    height: 2.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 2px 8px rgba(103, 131, 101, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #D4C4A8;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 196, 168, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(103, 131, 101, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: 0 2px 8px rgba(103, 131, 101, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #D4C4A8;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 196, 168, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(103, 131, 101, 0.3);
}

.btn-lg {
    height: 2.5rem;
    padding: 0 1.5rem;
    font-size: 0.9375rem;
    border-radius: calc(var(--radius) - 2px);
}

@media (min-width: 640px) {
    .btn-lg {
        height: 2.75rem;
        padding: 0 2rem;
        font-size: 1rem;
        border-radius: var(--radius);
    }
}

.btn-full {
    width: 100%;
}

/* Main Content */
.main-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
    min-height: 100vh;
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-carousel {
        height: 60vh;
        border-radius: 1.25rem;
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .hero-carousel {
        height: 70vh;
        border-radius: 1.5rem;
        margin-bottom: 6rem;
    }
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(103, 131, 101, 0.7), transparent);
    display: flex;
    align-items: center;
}

.carousel-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 42rem;
}

.carousel-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: white;
}

@media (min-width: 640px) {
    .carousel-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .carousel-title {
        font-size: 4.5rem;
    }
}

.carousel-subtitle {
    font-size: 1rem;
    color: var(--organic-cream);
}

@media (min-width: 640px) {
    .carousel-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .carousel-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .carousel-subtitle {
        font-size: 1.5rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(103, 131, 101, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.carousel-btn:hover {
    background-color: #D4C4A8;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 196, 168, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 6px rgba(103, 131, 101, 0.3);
}

.carousel-btn-prev {
    left: 0.5rem;
}

@media (min-width: 640px) {
    .carousel-btn-prev {
        left: 1rem;
    }
}

.carousel-btn-next {
    right: 0.5rem;
}

@media (min-width: 640px) {
    .carousel-btn-next {
        right: 1rem;
    }
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 2rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

/* Features */
.features-section {
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .features-section {
        margin: 6rem 0;
    }
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: var(--card);
    transition: all 0.3s;
    animation: fade-in 0.6s ease-out;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 2rem;
        border-radius: 1.5rem;
    }
}

.feature-card:hover {
    background-color: var(--organic-cream);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(103, 131, 101, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    .feature-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .feature-icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 1.5rem;
    }
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .feature-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1.5rem;
    }
}

.feature-description {
    color: var(--muted-foreground);
}

/* About Section */
.about-section {
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .about-section {
        margin: 6rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 3rem;
    }
}

.about-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .about-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1.0625rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .about-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .about-stats {
        gap: 1.5rem;
    }
}

.stat-card {
    background-color: rgba(103, 131, 101, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }
}

.stat-card svg {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 0.75rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    color: var(--foreground);
}

.stat-card-wide {
    grid-column: span 2;
    background-color: rgba(103, 131, 101, 0.1);
}

.stat-card-wide svg {
    color: var(--secondary);
}

.stat-card-wide .stat-number {
    color: var(--secondary);
}

/* Product Slider */
.products-section {
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .products-section {
        margin: 6rem 0;
    }
}

.product-slider {
    position: relative;
    margin-top: 3rem;
}

.product-slider-wrapper {
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background-color: var(--card);
}

.product-slider-container {
    overflow: hidden;
    border-radius: 2rem;
}

@media (min-width: 768px) {
    .product-slider-container {
        display: flex;
        align-items: stretch;
    }
}

.product-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.product-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-slide-content {
    display: grid;
    gap: 0;
    background-color: var(--card);
}

@media (min-width: 768px) {
    .product-slide-content {
        grid-template-columns: 1fr 1.2fr;
        align-items: stretch;
    }
}

.product-slide-image {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .product-slide-image {
        height: 24rem;
    }
}

@media (min-width: 768px) {
    .product-slide-image {
        height: 100%;
        min-height: 32rem;
    }
}

.product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

@media (min-width: 768px) {
    .product-slide-image img {
        min-height: 100%;
    }
}

.product-slide:hover .product-slide-image img {
    transform: scale(1.05);
}

.product-slide-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.product-slide-badge svg {
    width: 20px;
    height: 20px;
}

.product-slide-info {
    padding: 2rem;
    background: linear-gradient(to bottom, var(--card), var(--organic-cream));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 20rem;
}

@media (min-width: 640px) {
    .product-slide-info {
        padding: 2.5rem;
        min-height: 24rem;
    }
}

@media (min-width: 768px) {
    .product-slide-info {
        padding: 3rem 2.5rem;
        min-height: 100%;
    }
}

@media (min-width: 1024px) {
    .product-slide-info {
        padding: 4rem 3rem;
    }
}

.product-slide-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(103, 131, 101, 0.1);
    line-height: 1;
    font-family: 'Arial', sans-serif;
}

@media (min-width: 768px) {
    .product-slide-number {
        top: 2.5rem;
        right: 2.5rem;
        font-size: 5rem;
    }
}

.product-slide-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .product-slide-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .product-slide-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-slide-title {
        font-size: 2.5rem;
    }
}

.product-slide-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .product-slide-description {
        font-size: 1.0625rem;
        margin-bottom: 1.75rem;
    }
}

@media (min-width: 768px) {
    .product-slide-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.product-slide-features {
    list-style: none;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.product-slide-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    color: var(--foreground);
    font-size: 0.9375rem;
    position: relative;
}

@media (min-width: 768px) {
    .product-slide-features li {
        font-size: 1rem;
    }
}

.product-slide-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
}

.product-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.product-carousel-btn {
    background-color: var(--card);
    border: 2px solid var(--border);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--foreground);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-carousel-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(103, 131, 101, 0.3);
}

.product-carousel-btn:active {
    transform: scale(0.95);
}

.product-carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.product-carousel-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--border);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.product-carousel-dot:hover {
    border-color: var(--primary);
    transform: scale(1.2);
}

.product-carousel-dot.active {
    background-color: var(--primary);
    border-color: var(--primary);
    width: 2.5rem;
    border-radius: 0.375rem;
}

/* Featured Category Content */
.featured-category-content {
    display: grid;
    gap: 2rem;
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .featured-category-content {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        gap: 3rem;
    }
}

.featured-category-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius);
}

@media (min-width: 768px) {
    .featured-category-image {
        height: 400px;
    }
}

.featured-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.featured-category-info {
    padding: 0;
}

@media (min-width: 768px) {
    .featured-category-info {
        padding: 0;
    }
}

.featured-category-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

.featured-category-description {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-category-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.featured-category-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--foreground);
}

.featured-category-features .benefit-check {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* Value Tab Content */
.value-tab-content {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background-color: rgba(103, 131, 101, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.value-image-large {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-tab-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.value-tab-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #678365 0%, #556853 50%, #4a5a48 100%);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(103, 131, 101, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(103, 131, 101, 0.4);
}

@media (min-width: 640px) {
    .cta-section {
        border-radius: 2rem;
        padding: 4rem 3rem;
        margin: 4rem 0;
    }
    
    .cta-section::before {
        width: 400px;
        height: 400px;
    }
    
    .cta-section::after {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 768px) {
    .cta-section {
        border-radius: 2.5rem;
        padding: 5rem 4rem;
        margin: 6rem 0;
    }
}

.cta-title {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-subtitle {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

@media (min-width: 640px) {
    .cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.375rem;
        margin-bottom: 3rem;
    }
}

.cta-section .btn {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #D4C4A8;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 196, 168, 0.4);
}

.cta-section .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 30vh;
    min-height: 250px;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .page-hero {
        height: 35vh;
        min-height: 280px;
        border-radius: 1.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
        border-radius: 1.5rem;
        margin-bottom: 4rem;
    }
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(103, 131, 101, 0.8), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-content {
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.page-hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .page-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 3.75rem;
    }
}

.page-hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

@media (min-width: 640px) {
    .page-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .page-hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .page-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* About Page */
.about-page-content {
    max-width: 56rem;
    margin: 0 auto;
}

.about-intro {
    background-color: var(--card);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.about-intro-text {
    font-size: 1.125rem;
    color: var(--foreground);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.text-primary-bold {
    color: var(--primary);
    font-weight: bold;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--card);
    border-radius: 1.5rem;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: rgba(103, 131, 101, 0.1);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.value-description {
    color: var(--muted-foreground);
}

.organic-benefits {
    background: linear-gradient(to right, rgba(103, 131, 101, 0.1), rgba(239, 161, 90, 0.1));
    border-radius: 1.5rem;
    padding: 2rem;
}

.benefits-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--foreground);
}

.benefit-check {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Products Page */
.tabs-container {
    width: 100%;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 56rem;
    margin: 0 auto 2rem;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--card);
    border-radius: 0.75rem;
}

@media (min-width: 640px) {
    .tabs-list {
        margin-bottom: 3rem;
        border-radius: 1rem;
    }
}

.tabs-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: none;
    background: transparent;
    color: var(--foreground);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 120px;
}

@media (min-width: 640px) {
    .tabs-trigger {
        padding: 1rem 1.5rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .tabs-trigger {
        font-size: 1.125rem;
        min-width: 140px;
    }
}

.tabs-trigger.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.tabs-content {
    display: none;
}

.tabs-content.active {
    display: block;
}

.products-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background-color: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.product-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
    background-color: var(--organic-cream);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-card-image img {
    transform: scale(1.1);
}

.product-card-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 0.75rem;
    border-radius: 50%;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-card-description {
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.product-card-benefits {
    background-color: var(--organic-cream);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.product-card-benefits p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

/* Contact Page */
.contact-content {
    max-width: 80rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.contact-form-container {
    animation: fade-in 0.6s ease-out;
}

.card {
    background-color: var(--card);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid var(--input);
    background-color: var(--background);
    font-size: 0.875rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
    border-color: var(--ring);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fade-in 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.contact-info-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
}

.contact-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card-icon {
    background-color: rgba(103, 131, 101, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-card-text {
    color: var(--muted-foreground);
}

.business-hours {
    background: linear-gradient(to bottom right, rgba(103, 131, 101, 0.1), rgba(239, 161, 90, 0.1));
    padding: 2rem;
}

.business-hours-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--foreground);
}

/* Contact Page - Glassmorphism */
.contact-content {
    margin-top: 3rem;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.contact-form-container .card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(103, 131, 101, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    padding: 2.5rem;
}

.contact-card,
.business-hours {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(103, 131, 101, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-form-container .card:hover,
.contact-card:hover,
.business-hours:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(103, 131, 101, 0.15);
}

.contact-form-title,
.contact-info-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(103, 131, 101, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(103, 131, 101, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.contact-card-icon {
    background-color: rgba(103, 131, 101, 0.15);
    color: var(--primary);
    padding: 0.75rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-card-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-card-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.business-hours {
    padding: 2rem;
}

.business-hours-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

.business-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.business-hours-list p {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
}

/* Google Maps Section */
.map-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.map-title {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(103, 131, 101, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
}

.map-container iframe {
    border-radius: calc(var(--radius) - 0.25rem);
    display: block;
}

/* Footer */
.footer {
    background-color: var(--organic-dark);
    color: var(--organic-cream);
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2.5rem 0;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 3rem 0;
    }
}

.footer-col-hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .footer-col-hide-mobile {
        display: block;
    }
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    border-radius: 50px;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo .logo-image {
    height: 3.5rem;
}

@media (max-width: 767px) {
    .footer-logo {
        padding: 0.625rem 1.25rem;
    }
    
    .footer-logo .logo-image {
        height: 2.75rem;
    }
}

.footer-tagline {
    color: #e0c594;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

.footer-text {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ffffff;
    transition: color 0.3s;
}

.social-link:hover {
    color: #e0c594;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e0c594;
}

.footer-links li {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #ffffff;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #ffffff;
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #ffffff;
}

/* 404 Page */
.not-found {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: var(--muted);
}

.not-found-content {
    text-align: center;
}

.not-found-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.not-found-text {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.text-foreground {
    color: var(--foreground);
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.bg-background {
    background-color: var(--background);
}

.bg-card {
    background-color: var(--card);
}

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

.bg-secondary {
    background-color: var(--secondary);
}

.bg-organic-cream {
    background-color: var(--organic-cream);
}

.bg-organic-dark {
    background-color: var(--organic-dark);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: var(--radius);
}

.rounded-xl {
    border-radius: calc(var(--radius) + 2px);
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

