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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #4a4a4a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- HEADER --- */
header {
    background: #ffffff;
    padding: 15px 0;
}

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

.logo img {
    max-width: 300px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

.nav-item-whatsapp {
    display: flex;
    align-items: center;
    margin-left: 10px;
    transform: translateY(-2px);
}

.main-menu a.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
}

.main-menu a.btn-whatsapp svg {
    fill: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: #244128;
}

.header-partners-mobile {
    display: none;
}

.mobile-partners-grid {
    display: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    width: 100%;
}

.mobile-partners-grid img {
    height: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    object-fit: contain;
    margin: 0 auto;
}

/* Catalog Specific Styles */
.catalog-item-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.catalog-item-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eaeaea;
}

.catalog-item-info {
    padding: 20px;
    text-align: left;
}

.catalog-item-type {
    font-size: 12px;
    color: #046bd2;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.catalog-item-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-container {
    display: flex;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-image-col {
    flex: 1;
    background: #f7f9f9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-col img {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.product-info-col {
    flex: 1;
}

.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.breadcrumb a {
    color: #046bd2;
}

.product-title-large {
    font-size: 32px;
    color: #244128;
    margin-bottom: 20px;
    font-weight: 700;
}

.product-desc-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.product-specs th, .product-specs td {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 15px;
}

.product-specs th {
    color: #333;
    width: 35%;
}

.product-specs td {
    color: #666;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-large svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.btn-outline-blue {
    display: inline-block;
    border: 2px solid #046bd2;

    color: #046bd2;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #046bd2;
    color: #fff;
}


.main-menu a svg {
    width: 16px;
    height: 16px;
    fill: #046bd2; /* blue icon color */
}

/* --- BUTTONS --- */
.btn-blue {
    background-color: #046bd2;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-blue svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

/* --- HERO SECTION --- */
.hero {
    background-color: #f7f9f9;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg-leaves {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 400px;
    opacity: 0.5;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.hero-content {
    flex: 1;
}

.leaf-icon {
    width: 40px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 36px;
    color: #244128; /* dark green text */
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 450px;
}

/* --- FEATURE BAR --- */
.feature-bar {
    background-color: #28303d;
    padding: 40px 0;
}

.feature-bar .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    width: 180px;
}

.feature-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

/* --- AWARDS SECTION --- */
.awards {
    background-color: #f5f6fa;
    padding: 60px 0;
    text-align: center;
}

.awards h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 40px;
    font-weight: bold;
}

.awards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.awards-grid img {
    width: 200px;
}

.awards .leaf-icon-center {
    width: 50px;
    margin: 30px auto 0;
}

/* --- CTA BAR --- */
.cta-bar {
    background-color: #28303d;
    padding: 40px 0;
}

.cta-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
}

.cta-bar h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
}

.cta-bar h3 strong {
    font-weight: bold;
}

/* --- TESTIMONIALS --- */
.testimonials {
    background-color: #fcfcfc;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-bg-leaves {
    position: absolute;
    left: -5%;
    top: 10%;
    width: 300px;
    opacity: 0.5;
    z-index: 0;
    transform: scaleX(-1);
}

.testimonials .leaf-icon-center {
    width: 50px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stars {
    color: #f5b016;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

/* --- PARTNERS --- */
.partners {
    padding: 50px 0;
    background: #ffffff;
}

.partners .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners h4 {
    font-size: 16px;
    color: #333;
    width: 150px;
    line-height: 1.4;
}

.partners img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
}

/* --- FOOTER --- */
footer {
    background: #f9f9f9;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #eee;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .main-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-top: 15px;
    }

    .nav-item-whatsapp {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .main-menu.active {
        display: flex;
    }

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

    header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-partners-mobile {
        display: none; /* Moved into mobile-partners-grid */
    }

    .mobile-partners-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        align-items: center;
    }

    .header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .cta-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .product-detail-container {
        flex-direction: column;
        padding: 20px;
    }
}
