/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Root Variables */
:root {
    --primary-color: #2c5530;
    --secondary-color: #4a7c59;
    --accent-color: #87ceeb;
    --accent-light: #b8e6b8;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8fdf8;
    --bg-white: #ffffff;
    --shadow-light: 0 4px 20px rgba(44, 85, 48, 0.1);
    --shadow-medium: 0 8px 30px rgba(44, 85, 48, 0.15);
    --shadow-heavy: 0 12px 40px rgba(44, 85, 48, 0.2);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    --gradient-accent: linear-gradient(135deg, #87ceeb 0%, #b8e6b8 100%);
    --font-primary: "Playfair Display", serif;
    --font-secondary: "Poppins", sans-serif;
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: #4a7c59;
    --secondary-color: #6da572;
    --accent-color: #7dd3fc;
    --accent-light: #a0e6a0;
    --text-dark: #f0f0f0;
    --text-light: #c0c0c0;
    --text-white: #ffffff;
    --bg-light: #1a1a1a;
    --bg-white: #2a2a2a;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #4a7c59 0%, #6da572 100%);
    --gradient-accent: linear-gradient(135deg, #7dd3fc 0%, #a0e6a0 100%);
}

body.dark-mode {
    background: linear-gradient(135deg, #0f1419 0%, #1a2328 25%, #2c3e50 50%, #1a2328 75%, #0f1419 100%);
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 25%, #d8eed8 50%, #e8f5e8 75%, #f8fdf8 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: var(--transition);
}

body.dark-mode .navbar {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid rgba(74, 124, 89, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.home-btn:hover {
    background: var(--accent-light);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.dark-mode-toggle {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    background: var(--accent-light);
    color: var(--primary-color);
}

/* Dark mode styles for navigation buttons */
body.dark-mode .home-btn {
    color: var(--text-white);
}

body.dark-mode .home-btn:hover {
    background: rgba(74, 124, 89, 0.2);
    color: var(--color-primary);
}

body.dark-mode .dark-mode-toggle {
    color: var(--text-white);
}

body.dark-mode .dark-mode-toggle:hover {
    background: rgba(74, 124, 89, 0.2);
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 0.25rem;
    border-radius: var(--border-radius-small);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro {
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    font-style: italic;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.intro-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-primary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-30px);
}

.about-item.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.about-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.about-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-info p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

/* Collection Section */
.collection-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.collection-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    background: var(--bg-white);
}

.collection-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.collection-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.collection-item:hover .collection-img {
    transform: scale(1.05);
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.community-content {
    margin-bottom: 4rem;
}

.community-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.community-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-box .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-title {
    font-size: 2rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition: all 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px) rotateY(15deg);
}

.testimonial-item.animate-in {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating .fas {
    color: #ffc107;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: var(--border-radius-small);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

body.dark-mode .footer {
    background: #111111;
    border-top: 1px solid rgba(74, 124, 89, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
}

.footer-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

body.dark-mode .footer-description {
    color: #b0b0b0;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

body.dark-mode .social-links a {
    background: var(--primary-color);
}

body.dark-mode .social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

body.dark-mode .footer-section ul li a {
    color: #b0b0b0;
}

body.dark-mode .footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

body.dark-mode .footer-bottom {
    border-top: 1px solid rgba(74, 124, 89, 0.2);
    color: #888;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

body.dark-mode .footer-links a {
    color: #888;
}

body.dark-mode .footer-links a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Enhanced Performance Animations */
.collection-item,
.about-item,
.gallery-item,
.testimonial-item {
    will-change: transform, opacity;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .collection-item,
    .about-item,
    .gallery-item,
    .testimonial-item {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .collection-item.animate-in,
    .about-item.animate-in,
    .gallery-item.animate-in,
    .testimonial-item.animate-in {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Responsive Design */

/* Tablet Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content {
        gap: 4rem;
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .community-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    .nav-toggle {
        display: block;
    }

    .home-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-right: 0.3rem;
    }

    .dark-mode-toggle {
        padding: 6px;
        font-size: 1.1rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Sections */
    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-intro {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .about-features {
        order: 3;
    }

    .about-item {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }

    .about-item:hover {
        transform: translateY(-5px);
    }

    .intro-text {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .about-img {
        height: 350px;
        max-width: 300px;
    }

    /* Collection Section */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .collection-img {
        height: 200px;
    }

    /* Community Section */
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

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

    .gallery-img {
        height: 200px;
    }

    /* Testimonials */
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-item {
        padding: 2rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        gap: 1rem;
    }

    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile Design */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .collection-img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 220px;
    }

    .about-img {
        height: 300px;
        max-width: 250px;
    }

    .intro-text {
        font-size: 0.95rem;
        padding: 1.2rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }

    .nav-container {
        padding: 0.8rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.8rem;
    }
}

/* Dark mode improvements for mobile */
@media (max-width: 768px) {
    body.dark-mode .nav-menu {
        background: var(--bg-white);
        border-right: 1px solid rgba(74, 124, 89, 0.2);
    }

    body.dark-mode .hero-section {
        background: linear-gradient(135deg, #0f1419 0%, #1a2328 50%, #0f1419 100%);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .nav-toggle,
    .home-btn,
    .dark-mode-toggle {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero-section {
        padding-top: 2rem !important;
    }
}

/* ===== CONTACT FORM STYLES ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    background: var(--bg-light);
    border-radius: var(--border-radius-small);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius-small);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    transform: translateY(0);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
    transition: all 0.1s ease;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
}

.btn-loading {
    display: none;
    transition: opacity 0.3s ease;
}

.btn-loading .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SIMPLIFIED FOOTER STYLES ===== */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(135, 206, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--accent-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer-section h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.75rem;
    }

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

    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
    }

    /* About Section Mobile Improvements */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        max-width: 100%;
    }

    .about-features {
        gap: 1.5rem;
    }

    .about-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .about-icon {
        margin-bottom: 1rem;
    }

    .intro-text {
        text-align: justify;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    /* Collection Grid - 2 items per row on mobile */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .collection-item {
        aspect-ratio: 1;
    }

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

    /* Community Gallery - 2 items per row on mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

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

    /* Contact Info Mobile */
    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

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

    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
        text-align: center;
    }

    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
    }

    /* Hero Section Mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Community Stats Mobile */
    .community-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto;
        max-width: 400px;
    }

    .stat-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .stat-box i {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }

    .stat-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Form Mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--bg-light);
        width: 100%;
        display: block;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .about-content {
        gap: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Small Mobile (Below 500px) */
@media (max-width: 500px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 200px;
        margin: 2rem auto;
    }

    .stat-item {
        padding: 1rem;
        border-radius: 8px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .community-stats {
        max-width: 350px;
        margin: 2rem auto;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .contact-icon {
        align-self: center;
    }

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

    .contact-details h3 {
        text-align: center;
    }

    .contact-details p {
        text-align: center;
    }

    .nav-menu {
        width: 100%;
        padding: 80px 1rem 2rem;
    }

    /* Footer adjustments for small mobile */
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-section h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section ul {
        text-align: center;
    }

    .footer-section ul li {
        justify-content: center;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ========== GREEN HEART OPTIMIZED ANIMATIONS ========== */

/* Eco-friendly themed animations */
@keyframes greenHeartFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes greenSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes leafSway {
    0%, 100% {
        transform: rotate(0deg) translateX(0px);
    }
    25% {
        transform: rotate(1deg) translateX(2px);
    }
    75% {
        transform: rotate(-1deg) translateX(-2px);
    }
}

@keyframes greenPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(44, 85, 48, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(44, 85, 48, 0.2);
    }
}

@keyframes sustainableGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(135, 206, 235, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(135, 206, 235, 0.3);
    }
}

@keyframes recycleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hero section animations */
.hero-section {
    opacity: 0;
    animation: greenHeartFadeIn 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s forwards;
}

.hero-title {
    opacity: 0;
    animation: greenSlideUp 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) 0.5s forwards;
}

.hero-description {
    opacity: 0;
    animation: greenSlideUp 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) 0.7s forwards;
}

/* Product grid enhanced animations */
.product-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: var(--transition);
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: greenHeartFadeIn 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    animation: leafSway 0.6s ease-in-out, sustainableGlow 2s ease-in-out infinite;
}

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

/* Category filters with eco feel */
.category-filter {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.category-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 85, 48, 0.1), transparent);
    transition: var(--transition);
}

.category-filter:hover::before {
    left: 100%;
}

.category-filter:hover {
    transform: translateY(-2px);
    animation: leafSway 0.4s ease-in-out;
}

.category-filter.active {
    animation: greenPulse 1s ease-in-out;
}

/* Search and filter animations */
.search-container {
    position: relative;
}

.search-container::after {
    content: '🌱';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
}

.search-container:focus-within::after {
    opacity: 1;
    animation: leafSway 2s ease-in-out infinite;
}

/* Eco-stats or benefits section */
.eco-stat {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.eco-stat.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.eco-stat:hover {
    animation: greenPulse 1.5s ease-in-out infinite;
}

/* Navigation with green theme */
.nav-menu li {
    opacity: 0;
    transform: translateY(-20px);
}

.nav-menu li.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu li:nth-child(1) { animation: greenSlideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.1s forwards; }
.nav-menu li:nth-child(2) { animation: greenSlideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.2s forwards; }
.nav-menu li:nth-child(3) { animation: greenSlideUp 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.3s forwards; }

/* Buttons with sustainable feel */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after {
    content: '♻️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    animation: recycleRotate 2s linear infinite;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    animation: sustainableGlow 1s ease-in-out;
}

/* Modal with eco-friendly animations */
.modal {
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    transform: scale(0.8) translateY(50px);
    transition: var(--transition);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
    animation: greenHeartFadeIn 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Floating eco elements */
.eco-decoration {
    position: fixed;
    font-size: 1.5rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
    animation: leafSway 6s ease-in-out infinite;
}

.eco-decoration:nth-child(1) { 
    top: 20%; 
    left: 10%; 
    animation-delay: 0s; 
}
.eco-decoration:nth-child(2) { 
    top: 60%; 
    right: 15%; 
    animation-delay: 2s; 
}
.eco-decoration:nth-child(3) { 
    bottom: 30%; 
    left: 20%; 
    animation-delay: 4s; 
}

/* Sustainability badge animation */
.sustainability-badge {
    animation: greenPulse 3s ease-in-out infinite;
}

.sustainability-badge:hover {
    animation: recycleRotate 0.5s ease-in-out;
}

/* Loading state for eco theme */
.eco-loading {
    border: 3px solid var(--accent-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: recycleRotate 1s linear infinite;
}

/* Performance optimizations */
.product-card,
.category-filter,
.eco-stat,
.btn-primary,
.btn-secondary {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}