:root {
    --brand-green: #228B22;
    --brand-green-dark: #006400;
    --brand-yellow: #FFD700;
    --brand-gold: #FFD700;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fafbfc;
    scroll-padding-top: 100px; /* Account for fixed header */
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hexagon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.hexagon:hover {
    transform: scale(1.1) rotate(5deg);
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4a514 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-image {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--brand-green);
}

.nav-link .caret {
    margin-left: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--brand-green);
    color: white;
    box-shadow: 0 4px 15px rgba(24,77,40,.4);
}

.btn-primary:hover {
    background: var(--brand-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24,77,40,.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-intro-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Ensure content doesn't go under fixed header */
section {
    scroll-margin-top: 120px;
}

/* About Section */
.about {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text h3 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Taglines Section Styles */
.taglines-section {
    margin: 3rem 0;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.taglines-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.taglines-header h3 {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.taglines-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.taglines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tagline-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.tagline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
}

.tagline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tagline-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(34, 139, 34, 0.3);
}

.tagline-content h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.tagline-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3.5rem;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature h4 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
    scroll-margin-top: 100px; /* Account for fixed header when scrolling */
}

.product-category {
    margin-bottom: 6rem;
}

.category-title {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-title:hover {
    color: var(--brand-green);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.category-title:hover::after {
    width: 150px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.placeholder-icon {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: white;
    font-size: 4rem;
    border-radius: 15px;
}

.product-card h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card:hover h4 {
    color: var(--brand-green);
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    scroll-margin-top: 100px; /* Account for fixed header when scrolling */
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.brand-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.brand-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.brand-placeholder {
    display: none;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-green);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2rem;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--brand-green);
}

.brands-footer {
    text-align: center;
    margin-top: 3rem;
}

.brands-footer p {
    font-size: 1.4rem;
    color: var(--brand-green);
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
    scroll-margin-top: 100px; /* Account for fixed header when scrolling */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--brand-green);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #f9fafb;
    font-size: 1.3rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

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

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .hexagon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-text {
    font-size: 1rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--brand-green);
    transform: translateY(-3px);
}

/* WhatsApp Connect Styles */
.whatsapp-connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn span {
    font-size: 1rem;
}

.whatsapp-note {
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-placeholder {
        width: 200px;
        height: 200px;
        margin: 2rem auto 0;
    }

    .hero-intro-image {
        width: 200px;
        height: 200px;
        margin: 2rem auto 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .taglines-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .taglines-header h3 {
        font-size: 1.5rem;
    }

    .taglines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .tagline-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tagline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .tagline-content h4 {
        font-size: 1.1rem;
    }

    .tagline-content p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .container {
        padding: 0 15px;
    }

    /* Product pages responsive */
    .product-hero .hero-title {
        font-size: 2.5rem;
    }

    .product-hero .hero-description {
        font-size: 1.1rem;
    }

    .products-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

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

    .category-title {
        font-size: 2rem;
    }
}

/* Product Hero Section */
.product-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.product-hero .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.product-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section for individual pages */
.products-section {
    padding: 100px 0;
    background: #f8fafc;
    scroll-margin-top: 100px;
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-section .section-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.products-section .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Active nav link */
.nav-link.active {
    color: #22c55e;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Nav dropdown */
.nav-item.dropdown { position: relative; }
.nav-item .dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-item .caret { border: solid currentColor; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); transition: transform .2s; }
.nav-item.dropdown:hover .caret { transform: rotate(-135deg); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #ffffff; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 10px 30px rgba(0,0,0,.08); border-radius: 10px; padding: 10px 0; display: none; z-index: 1001; }
.nav-item.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 16px; color: #1f2937; text-decoration: none; transition: background .2s, color .2s; }
.dropdown-menu a:hover { background: #f3f4f6; color: #22c55e; }

/* Mobile dropdown inside opened menu */
@media (max-width: 768px) {
	.dropdown-menu { position: static; box-shadow: none; border: 0; padding: 0 0 10px; display: block; }
	.nav-item.dropdown > .dropdown-toggle { justify-content: center; }
}

/* Size tweaks for product cards */
.product-image { height: 200px; }
.product-card h4 { font-size: 1.05rem; margin-bottom: .6rem; }
.products-grid { gap: 2rem; }

/* Individual pages */
.products-section .products-grid .product-image { height: 200px; }
.products-section .products-grid .product-card h4 { font-size: 1.05rem; }

/* products section compact cards on home */
.category-cards{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2rem; }
.category-card{ background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:16px; box-shadow:0 8px 25px rgba(0,0,0,.08); overflow:hidden; transition:transform .25s, box-shadow .25s; text-decoration:none; color:inherit; }
.category-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(0,0,0,.12); }
.category-card .thumb{ height:220px; background:#f5f7fa; display:flex; align-items:center; justify-content:center; }
.category-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.category-card .body{ padding:18px; display:flex; align-items:center; justify-content:space-between; }
.category-card .title{ font-size:1.1rem; font-weight:700; color:#1f2937; }
.category-card .cta{ font-size:.95rem; color:var(--brand-green); }

/* adjust other previous greens */
.product-hero{ background: linear-gradient(135deg,var(--brand-green) 0%, var(--brand-green-dark) 100%); }
.contact-item i{ background: linear-gradient(135deg,var(--brand-green) 0%, var(--brand-green-dark) 100%); }
.btn-secondary:hover{ color: var(--brand-green); }
.brands-footer p{ background: linear-gradient(135deg,var(--brand-green) 0%, var(--brand-green-dark) 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.hero{ background: linear-gradient(135deg,var(--brand-green) 0%, var(--brand-green-dark) 100%); border-top: 6px solid var(--brand-gold); }
.section-header h2::after{ background: linear-gradient(135deg,var(--brand-gold) 0%, var(--brand-green) 100%); }
.category-card{ border-top: 4px solid var(--brand-gold); }
.category-card .cta{ color: var(--brand-green); }
.btn-secondary{ border-color: var(--brand-gold); }
.btn-secondary:hover{ color: var(--brand-green); background: #fff3c4; }
.dropdown-menu{ border-top: 3px solid var(--brand-gold); }
.footer{ border-top: 6px solid var(--brand-gold); }
.nav-link::after{ background: linear-gradient(90deg, var(--brand-gold) 0%, transparent 100%); }

/* Two-row products grid: 3 on first row, 2 centered on second */
.category-cards.two-rows{ display:flex; flex-wrap:wrap; gap:24px; justify-content:center; }
.category-cards.two-rows .category-card{ width:calc((100% - 48px)/3); max-width: 420px; }
@media(max-width:1200px){ .category-cards.two-rows .category-card{ width:calc((100% - 48px)/3); } }
@media(max-width:900px){ .category-cards.two-rows .category-card{ width:calc((100% - 24px)/2); } }
@media(max-width:560px){ .category-cards.two-rows .category-card{ width:100%; } }

/* Ensure thumbs are not stretched and images are centered */
.category-card .thumb{ display:flex; align-items:center; justify-content:center; height:300px; padding:6px; background:#fff; }
.category-card .thumb img{ max-width:98%; max-height:98%; width:auto; height:auto; object-fit:contain; display:block; }

@media (max-width: 560px){
    .category-cards.two-rows{ justify-content:center; }
    .category-cards.two-rows .category-card{ width:100%; max-width: 520px; margin: 0 auto; }
    .category-card .thumb{ height: 200px; padding: 8px; }
    .category-card .thumb img{ max-width: 96%; max-height: 96%; }
    .category-card .body .title{ font-size: 1rem; }
    .category-card .body .cta{ font-size: 0.9rem; }
}

@media (max-width: 380px){
    .category-card .thumb{ height: 180px; padding: 6px; }
    .category-card .body .title{ font-size: 0.95rem; }
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-green);
    text-align: left;
    margin-top: 0;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .company-name {
    font-size: 0.8rem;
    margin-top: 3px;
}

.subsection-header {
    text-align: center;
    margin: 40px 0 30px;
    padding: 20px 0;
    border-bottom: 2px solid var(--brand-green);
}

.subsection-header h3 {
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.subsection-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.category-cards.manufacturing {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.category-cards.supplier {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.category-cards.supplier .category-card {
    width: calc((100% - 72px) / 4);
    max-width: 320px;
}

@media (max-width: 1200px) {
    .category-cards.supplier .category-card {
        width: calc((100% - 48px) / 3);
    }
}

@media (max-width: 900px) {
    .category-cards.supplier .category-card {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 560px) {
    .category-cards.supplier .category-card {
        width: 100%;
        max-width: 400px;
    }
}
