﻿:root {
    --primary-green: #1B4332;
    --primary-green: #1B4332;
    --light-green: #4A7A44;
    --light-orange: #D4C5A9;
    --white: #FFFFFF;
    --light-gray: #F9F9F9;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    max-width: 100%;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.main-container {
    max-width: 100%;
    overflow-x: hidden;
}

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

/* Header */
header {
    background-color: var(--primary-green);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
}

.logo i {
    margin-right: 10px;
}

.nav-menu {
    margin: 0 auto;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.header-buttons {
    display: flex;
    gap: 20px !important;
    margin-left: auto;
}

.btn-quote, .btn-whatsapp {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quote {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: var(--white);
}

.btn-whatsapp {
    background-color: var(--white);
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    opacity: 0.8;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-green);
    flex-direction: column;
    padding: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-menu a:hover {
    opacity: 0.8;
    padding-left: 10px;
    transition: padding-left 0.3s;
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 5px;
    top: 100%;
    left: 0;
    z-index: 9999;
}

.nav-menu .dropdown-content a {
    color: var(--dark-gray);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 15px;
}

.nav-menu .dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

.nav-menu .dropdown:hover .dropdown-content {
    display: block;
}

/* Unified dropdown arrow styling - EXPLICIT sizing */
.nav-menu .dropdown > a::after {
    content: " ▾";
    font-size: 12px !important;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--white);
    line-height: 1;
    width: 12px;
    height: 12px;
    display: inline-block;
}

/* Hero Section */
.hero-home {
    background: linear-gradient(135deg, rgba(45,90,39,0.95) 0%, rgba(26,58,24,0.93) 100%), url('images/index_banner_v2.webp') center/cover no-repeat;

    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.hero-heading {
    margin: 0 0 20px;
    line-height: 1.15;
}

.heading-line1 {
    display: block;
    color: #fff;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.heading-line2 {
    display: block;
    color: rgba(255,255,255,0.88);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.heading-line2 em {
    font-style: normal;
    color: #D4C5A9;
}

.heading-line2 span {
    color: #1B4332;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #D4C5A9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-green);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #ffffff;
    color: #1B4332;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn-whatsapp-primary {
    background-color: transparent;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-whatsapp-primary:hover {
    transform: translateY(-3px);
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

/* Social Proof */
.social-proof {
    padding: 50px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.social-proof-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 150px;
}

.cert-badge i {
    font-size: 40px;
    color: var(--primary-green);
}

.cert-badge span {
    font-weight: bold;
    color: var(--dark-gray);
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.7;
}

.client-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-gray);
}

/* Core Value Proposition */
.value-proposition {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 40px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.value-icon {
    font-size: 50px;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 160px;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 60px;
    color: white;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.product-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.product-features li i {
    color: var(--primary-green);
    margin-right: 8px;
}

.product-link {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.product-link:hover {
    color: var(--light-orange);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.process-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.process-step:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -15px;
    top: 30px;
    color: var(--primary-green);
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a3a18 100%);
    color: white;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}

.testimonials .section-subtitle {
    opacity: 0.9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px !important;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #4a8c42;
    text-align: center;
}

.cta-section .section-title {
    color: var(--dark-gray);
}

.cta-section .section-subtitle {
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #888;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .mobile-nav-menu {
        /* Keep default hidden, show only when toggled via JS */
    }

    /* Responsive Comparison Table */
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        font-size: 12px;
        padding: 10px 6px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Ensure dropdown arrows are consistent on mobile too */
    .nav-menu .dropdown > a::after {
        font-size: 12px !important;
    }
}
/* WhatsApp Request Button */
.btn-whatsapp-request {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
}

.btn-whatsapp-request:hover {
    background-color: #128C7E;
}


/* ========================================
   PRODUCT GRID SECTION
   ======================================== */
.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.filter-section {
    padding: 30px 0;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px !important;
    align-items: flex-end;
}

.filter-group {
    min-width: 150px;
    flex: 1;
}

.filter-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-filter {
    padding: 10px 24px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-filter:hover {
    background: var(--primary-green-dark);
}

/* ========================================
   PRODUCT CARD STYLES
   ======================================== */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-card .badge-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.badge-fsc {
    background: #27ae60;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.product-card .badge-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.btn-fav {
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 16px;
}

.product-image {
    height: 160px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
}
.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    border-radius: 8px;
    background-color: #ffffff;
}
.card-details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: linear-gradient(rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 10px;
    font-size: 11px;
    line-height: 1.4;
    transition: opacity 0.3s;
    opacity: 0;
}

.product-card:hover .card-details {
    opacity: 1;
}

.product-info {
    padding: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #333;
    height: 3em;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-desc {
    font-size: 12px;
    color: #888;
    margin: 0 0 8px;
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-tags {
    margin: 8px 0;
    min-height: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%); color: white; border-color: var(--primary-green);
    color: var(--primary-green);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid var(--primary-green);
    white-space: nowrap;
}

.card-price {
    font-size: 15px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
}

.card-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-moq {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
}

.btn-view-details {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-view-details:hover {
    background: var(--primary-green-dark);
}

/* ========================================
   PAGINATION
   ======================================== */
/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
}

.btn-pagination {
    padding: 10px 20px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-pagination:hover:not(:disabled) {
    background: var(--primary-green-dark);
}

.btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#pageInfo {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    min-width: auto;
}

#pageNumbers {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

#pageNumbers button,
.gen-style-39 {
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    min-width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#pageNumbers button:hover,
.gen-style-39:hover {
    background: #f0f5ef;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

#pageNumbers button.active,
.gen-style-39.active {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
    border-color: var(--primary-green);
    font-weight: 600;
}
   TRUST ENDORSEMENT
   ======================================== */
/* ========================================
   TRUST ENDORSEMENT SECTION - Redesigned
   ======================================== */

.trust-endorsement {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f5ef 0%, #ffffff 100%);
    color: white;
    text-align: center;
    border-top: 3px solid var(--primary-green);
}

.trust-endorsement .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-endorsement .section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.trust-endorsement .section-header p {
    font-size: 15px;
    color: #777;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Cards Grid */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.trust-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 12px 24px;
    text-align: center;
    border: 1.5px solid #d4e4ce;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.05);
}

.trust-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(45, 90, 39, 0.15);
    border-color: var(--primary-green);
}

.trust-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #5a9e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.25);
}

.trust-stat-card .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.trust-stat-card .stat-number .accent {
    color: var(--primary-green);
}

.trust-stat-card .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certifications */
.trust-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #e0e8de;
    border-radius: 14px;
    padding: 20px 22px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.12);
    transform: translateY(-3px);
    background: #f8faf7;
}

.cert-badge .cert-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

.cert-badge .cert-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.cert-badge .cert-desc {
    font-size: 11px;
    color: #999;
    text-align: center;
}

.trust-divider {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 18px;
}

/* Client Logos Carousel */
.trust-clients {
    position: relative;
    padding: 40px 0 20px;
}

.trust-clients .clients-label {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 30px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    background: #ffffff;
    border-top: 1px solid #e8ede6;
    border-bottom: 1px solid #e8ede6;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item {
    flex-shrink: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.client-logo-item .logo-placeholder {
    height: 52px;
    padding: 0 24px;
    background: #f5f8f5;
    border: 1px solid #e0e8de;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px;
        margin-bottom: 40px;
    }
    .trust-stat-card {
        padding: 20px 8px 16px;
    }
    .trust-stat-card .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .trust-stat-card .stat-number {
        font-size: 24px;
    }
    .trust-stat-card .stat-label {
        font-size: 10px;
    }
    
    .trust-certifications {
        gap: 12px;
        margin-bottom: 40px;
    }
    .cert-badge {
        min-width: 110px;
        padding: 14px 16px;
    }
    .trust-divider { display: none; }
}
    opacity: 0.9;
}

/* ========================================
/* ========================================
   CTA BOTTOM BAR - Full Styles
   ======================================== */
.cta-bottom-bar {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
    text-align: center;
    border-top: 1px solid #e8ede6;
}

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

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    margin-bottom: 8px;
}

.cta-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 197, 169, 0.3);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%) !important;
    box-shadow: 0 6px 25px rgba(26, 67, 50, 0.4) !important;
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: #ffffff;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-btn-secondary:hover {
    background: rgba(212, 197, 169, 0.1) !important;
    border-color: #D4C5A9 !important;
    color: #D4C5A9 !important;
    transform: translateY(-2px);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    font-size: 14px;
    color: #888;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-divider {
    color: #ddd;
}

@media (max-width: 768px) {
    .cta-bottom-bar {
        padding: 60px 0;
    }
    .cta-headline {
        font-size: 26px;
    }
    .cta-subtext {
        font-size: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-container {
        padding: 0 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px !important;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-bottom-bar h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================================
   CATEGORY NAVIGATION
   ======================================== */
.category-nav {
    background: #f8f9fa;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.category-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.category-nav a {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.category-nav a:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-color: var(--primary-green);
}

.category-nav .active {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-color: var(--primary-green);
}

.category-nav .nav-separator {
    color: #999;
    font-size: 12px;
}

/* ========================================
   FILTER ROW
   ======================================== */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px !important;
    align-items: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.filter-row .filter-item {
    min-width: 150px;
}

.filter-row .filter-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.filter-row .filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-row .filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.filter-row .btn-filter {
    padding: 10px 20px;
    background: white;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.filter-row .btn-filter:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-color: var(--primary-green);
}

/* ========================================
   PRODUCT GRID SECTION
   ======================================== */
.products-grid-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.product-count {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 14px;
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #999;
}

/* ========================================
   TRUST ENDORSEMENT
   ======================================== */
/* ========================================
   TRUST ENDORSEMENT SECTION - Redesigned
   ======================================== */

.trust-endorsement {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f5ef 0%, #ffffff 100%);
    color: white;
    text-align: center;
    border-top: 3px solid var(--primary-green);
}

.trust-endorsement .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-endorsement .section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.trust-endorsement .section-header p {
    font-size: 15px;
    color: #777;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Cards Grid */
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.trust-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 12px 24px;
    text-align: center;
    border: 1.5px solid #d4e4ce;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.05);
}

.trust-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(45, 90, 39, 0.15);
    border-color: var(--primary-green);
}

.trust-stat-card .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #5a9e50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.25);
}

.trust-stat-card .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.trust-stat-card .stat-number .accent {
    color: var(--primary-green);
}

.trust-stat-card .stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certifications */
.trust-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #e0e8de;
    border-radius: 14px;
    padding: 20px 22px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.12);
    transform: translateY(-3px);
    background: #f8faf7;
}

.cert-badge .cert-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

.cert-badge .cert-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.cert-badge .cert-desc {
    font-size: 11px;
    color: #999;
    text-align: center;
}

.trust-divider {
    display: flex;
    align-items: center;
    color: #ccc;
    font-size: 18px;
}

/* Client Logos Carousel */
.trust-clients {
    position: relative;
    padding: 40px 0 20px;
}

.trust-clients .clients-label {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 30px;
}

.clients-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    background: #ffffff;
    border-top: 1px solid #e8ede6;
    border-bottom: 1px solid #e8ede6;
}

.clients-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item {
    flex-shrink: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.client-logo-item .logo-placeholder {
    height: 52px;
    padding: 0 24px;
    background: #f5f8f5;
    border: 1px solid #e0e8de;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px;
        margin-bottom: 40px;
    }
    .trust-stat-card {
        padding: 20px 8px 16px;
    }
    .trust-stat-card .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .trust-stat-card .stat-number {
        font-size: 24px;
    }
    .trust-stat-card .stat-label {
        font-size: 10px;
    }
    
    .trust-certifications {
        gap: 12px;
        margin-bottom: 40px;
    }
    .cert-badge {
        min-width: 110px;
        padding: 14px 16px;
    }
    .trust-divider { display: none; }
}
}

/* ========================================
/* ========================================
   CTA BOTTOM BAR - Full Styles
   ======================================== */
.cta-bottom-bar {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8faf7 0%, #ffffff 100%);
    text-align: center;
    border-top: 1px solid #e8ede6;
}

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

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    margin-bottom: 8px;
}

.cta-headline {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.3;
}

.cta-subtext {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 197, 169, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(45, 90, 39, 0.4);
}

.cta-btn-secondary {
    background: #ffffff;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.cta-btn-secondary:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    font-size: 14px;
    color: #888;
}

.cta-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-divider {
    color: #ddd;
}

@media (max-width: 768px) {
    .cta-bottom-bar {
        padding: 60px 0;
    }
    .cta-headline {
        font-size: 26px;
    }
    .cta-subtext {
        font-size: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-cta:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    transform: translateY(-2px);
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: rgba(255,255,255,0.9);
}

/* ========================================
   HERO STATS
   ======================================== */
.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.85;
}

/* ========================================
   HERO BUTTONS
   ======================================== */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%); color: white; border-color: var(--primary-green);
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* ========================================
   HERO FEATURES
   ======================================== */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.feature-item i {
    color: var(--primary-green);
}

/* ========================================
   TRUST BADGES
   ======================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    backdrop-filter: blur(4px);
}

.trust-badge i {
    color: var(--primary-green);
}

/* ========================================
   HERO SCROLL INDICATOR
   ======================================== */
.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(6px) translateX(-50%); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 28px;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-row .filter-item {
        width: 100%;
    }
    
    .filter-row .btn-filter {
        margin-left: 0;
        width: 100%;
    }
    
    .products-container,
    .category-nav-inner,
    .filter-container {
        padding: 0 20px;
    }
    
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-bottom-bar h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* === FILTER TOOLBAR REDESIGN (2026-04-02) === */

/* 1. 整体容器：白底，底部细线分隔 */
.filter-section {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid #E8E8E8;
}

/* 2. Sort Bar：左对齐，垂直居中，间距舒适 */
.filter-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-sort-bar .filter-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.3px;
}

.filter-sort-bar .product-count {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    margin-left: 12px;
}

.filter-sort-bar .sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-sort-bar .sort-controls label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* 3. Sort下拉框：品牌绿色边框 + 聚焦高亮 */
.filter-sort-bar .sort-select {
    padding: 8px 32px 8px 12px;
    border: 1.5px solid #D0D0D0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    background: white url(" data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 12 12%3E%3Cpath fill=%23666 d=M6 8L1 3h10z/%3E%3C/svg%3E\) no-repeat right 10px center;
 appearance: none;
 cursor: pointer;
 transition: border-color 0.2s, box-shadow 0.2s;
 min-width: 160px;
}

.filter-sort-bar .sort-select:focus {
 outline: none;
 border-color: var(--primary-green);
 box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

/* 4. Filter Row：水平排列，浅底色卡片感 */
.filter-row {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-end;
 gap: 20px;
 padding: 24px 0;
}

/* 5. 筛选器单元：标签+下拉框纵向堆叠 */
.filter-item {
 min-width: 140px;
 flex: 1;
}

/* 6. 标签文字：统一风格，清晰可读 */
.filter-label {
 display: block;
 font-size: 11px;
 font-weight: 700;
 color: #999;
 text-transform: uppercase;
 letter-spacing: 0.8px;
 margin-bottom: 6px;
}

/* 7. 下拉框：绿色聚焦态，现代化圆角 */
.filter-select {
 width: 100%;
 padding: 10px 32px 10px 12px;
 border: 1.5px solid #DCDCDC;
 border-radius: 8px;
 font-size: 13px;
 font-weight: 500;
 color: #333;
 background: white url(\data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 12 12%3E%3Cpath fill=%23666 d=M6 8L1 3h10z/%3E%3C/svg%3E\) no-repeat right 10px center;
 appearance: none;
 cursor: pointer;
 transition: border-color 0.2s, box-shadow 0.2s;
}

.filter-select:focus {
 outline: none;
 border-color: var(--primary-green);
 box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.12);
}

.filter-select:hover {
 border-color: #B0B0B0;
}

/* 8. Clear All按钮：品牌绿边框按钮，悬停填充 */
.filter-clear-btn {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 10px 20px;
 border: 1.5px solid var(--primary-green);
 border-radius: 8px;
 font-size: 13px;
 font-weight: 600;
 color: var(--primary-green);
 background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%); color: white; border-color: var(--primary-green);
 cursor: pointer;
 transition: all 0.2s ease;
 white-space: nowrap;
 margin-left: auto;
}

.filter-clear-btn:hover {
    background: var(--light-green);
    border-color: var(--light-green);
 background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
 color: white;
}

.filter-clear-btn i {
 font-size: 12px;
}

/* === CATEGORY NAVIGATION REDESIGN (2026-04-02) === */

.category-nav {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.category-nav .container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    align-items: center;
}

.category-nav a {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.25s;
    margin-right: 8px;
}

.category-nav a:last-child {
    margin-right: 0;
}

.category-nav a:hover,
.category-nav a.active {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-color: var(--primary-green);
}

/* All Products button style */
.category-nav a.nav-all-products {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-color: var(--primary-green);
}

.category-nav a.nav-all-products:hover {
    background: var(--light-green);
    border-color: var(--light-green);
}

/* === CATEGORY CARDS (2026-04-02) === */
.category-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.category-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

/* Hot Badge */
.hot-badge {
    color: #fff !important;
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6b35;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}

.hot-product-card {
    position: relative;
}    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.category-count {
    font-size: 13px;
    color: #888;
}

/* === CATEGORY CARDS MOBILE & HOVER (2026-04-02) === */

/* Hover gradient background */
.category-card:hover {
    background: linear-gradient(145deg, #f0fff0, #ffffff);
}

/* Product count brand color */
.category-count {
    color: var(--primary-green);
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 16px !important;
    }
    .category-icon {
        width: 56px;
        height: 56px;
    }
    .category-name {
        font-size: 14px;
    }
}

/* ---- Hero Section Fixes ---- */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape-1, .hero-shape-2, .hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    bottom: -50px;
    left: -50px;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    top: 50%;
    left: 30%;
}

.hero-accent {
    color: var(--primary-green);
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #D4C5A9;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gen-style-8 {
    position: relative;
    z-index: 1;
}

.remaining-style-8 {
    text-align: center;
}

.remaining-style-9 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
}

/* ---- Product Card Fixes ---- */
.img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

.img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f0f0f0;
}

.gen-style-1 {
    font-size: 12px;
    color: #666;
}

.badge-hot {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.badge-fsc {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 8px 0;
}

.card-tags span {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* ---- Filter Section Fixes ---- */
.gen-style-28 {
    display: inline-flex;
    align-items: center;
}

.gen-style-31 {
    display: inline-flex;
}

/* ---- Pagination Fixes ---- */
.gen-style-34 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gen-style-35 {
    font-size: 14px;
    color: #666;
}

.gen-style-36 {
    text-align: center;
    padding: 40px 0;
}

.gen-style-37 {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.gen-style-38 {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.gen-style-39 {
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    min-width: 44px;
}

.gen-style-39:hover {
    background: #f0f5ef;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.gen-style-39.active,
.gen-style-39.current {
    background: linear-gradient(135deg, #1B4332 0%, #D4C5A9 100%);
    color: #ffffff;
    border-color: var(--primary-green);
    font-weight: 600;
}

/* ---- CTA Bottom Bar Fixes ---- */
.cta-icon {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    margin-bottom: 8px;
}

.cta-headline {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0 0 12px 0;
}

.cta-subtext {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.7;
    max-width: 450px;
}

@media (max-width: 768px) {
    .cta-bottom-bar {
        padding: 50px 0;
    }
    
    .cta-headline {
        font-size: 22px;
    }
    
    .cta-subtext {
        font-size: 14px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
    }
}

/* ---- Trust Section Fixes ---- */
.trust-endorsement .stat-icon i {
    font-size: 20px;
}

/* Hero Stats Icons */
.hero-stats .remaining-style-8 {
    position: relative;
}

.hero-stats .remaining-style-8::before {
    content: '';
    display: block;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.hero-stats .remaining-style-8:nth-child(1)::before {
    content: '\f0c2'; /* fa-box */
}

.hero-stats .remaining-style-8:nth-child(2)::before {
    content: '\f02b'; /* fa-tags */
}

.hero-stats .remaining-style-8:nth-child(3)::before {
    content: '\f017'; /* fa-clock */
}

.hero-stats .remaining-style-8:nth-child(4)::before {
    content: '\f0d3'; /* fa-hand-holding-heart */
}


/* Products page hero - separate from home */
.hero-products {
    background: linear-gradient(135deg, rgba(45,90,39,0.95) 0%, rgba(26,58,24,0.92) 100%);
    position: relative;
    color: var(--white);
    padding: 150px 0 120px;
    text-align: center;
}

.hero-products h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-products .hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-products .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-products .hero-stat {
    text-align: center;
}

.hero-products .hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.hero-products .hero-stat-label {
    font-size: 14px;
    opacity: 0.8;
}
