*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',sans-serif;color:#1a2c3e;line-height:1.5}
.navbar{background:white;border-bottom:1px solid #e2edf2;padding:1rem 5%;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap}
.logo{display:flex;align-items:center;gap:0.5rem;text-decoration:none}
.logo-img{width:28px;height:28px}
.logo-text{font-size:1.1rem;font-weight:700;color:#0f2b3d}
.logo-text span{color:#2b7e3a}
.nav-links{display:flex;gap:2rem;align-items:center}
.nav-links a{text-decoration:none;color:#1a2c3e;font-weight:500;transition:color 0.2s}
.nav-links a:hover{color:#2b7e3a}
.btn-quote{background:#2b7e3a;color:white!important;padding:0.5rem 1.25rem;border-radius:50px}
.btn-quote:hover{background:#236e30}
.dropdown{position:relative;display:inline-block}
.dropbtn{background:none;border:none;cursor:pointer}
.dropdown-content{display:none;position:absolute;background-color:white;min-width:200px;box-shadow:0 8px 16px rgba(0,0,0,0.1);z-index:1;border-radius:8px;overflow:hidden}
.dropdown-content a{color:#1a2c3e;padding:12px 16px;text-decoration:none;display:block}
.dropdown-content a:hover{background-color:#e6f4ea;color:#2b7e3a}
.dropdown:hover .dropdown-content{display:block}
.mobile-menu-btn{display:none;background:none;border:none;font-size:1.5rem;cursor:pointer}
.hero{background:linear-gradient(135deg,#fafcfd,white);padding:4rem 5%;display:flex;flex-wrap:wrap;gap:2rem;align-items:center}
.hero-content{flex:1}
.hero-badge{background:#e6f4ea;display:inline-block;padding:0.3rem 1rem;border-radius:40px;color:#2b7e3a;margin-bottom:1.5rem;font-size:0.8rem;font-weight:600}
.hero-content h1{font-size:2.5rem;font-weight:800;margin-bottom:1.2rem;color:#0a1e2c}
.hero-content p{font-size:1rem;color:#4a6f85;margin-bottom:2rem}
.hero-stats{display:flex;gap:2rem;margin-top:1rem}
.hero-stats div{font-size:0.9rem;color:#4a6f85}
.hero-stats strong{font-size:1.5rem;display:block;color:#0f2b3d}
.hero-image{flex:1;text-align:center}
.hero-image i{font-size:6rem;color:#2b7e3a;opacity:0.8}
.section{padding:4rem 5%}
.section-title{font-size:1.8rem;font-weight:700;text-align:center;margin-bottom:0.75rem}
.section-subtitle{text-align:center;color:#4a6f85;max-width:680px;margin:0 auto 2rem}
.categories-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:3rem}
.category-card{background:white;border-radius:16px;padding:1.8rem 1.2rem;text-align:center;text-decoration:none;color:#1a2c3e;transition:all 0.3s ease;display:flex;flex-direction:column;align-items:center;border:1px solid #e2edf2;box-shadow:0 2px 8px rgba(0,0,0,0.04)}
.category-card:hover{transform:translateY(-5px);box-shadow:0 12px 28px rgba(0,0,0,0.12);border-color:#2b7e3a}
.category-icon{width:70px;height:70px;background:#e6f4ea;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;transition:all 0.3s ease}
.category-card:hover .category-icon{background:#2b7e3a}
.category-icon i{font-size:2rem;color:#2b7e3a;transition:all 0.3s ease}
.category-card:hover .category-icon i{color:white}
.category-card h3{font-size:1.1rem;font-weight:600;margin-bottom:0.5rem;color:#0f2b3d}
.category-card p{font-size:0.8rem;color:#4a6f85;margin-bottom:1rem;line-height:1.4}
.category-link{display:inline-flex;align-items:center;gap:0.5rem;font-size:0.8rem;font-weight:500;color:#2b7e3a;background:transparent;padding:0.4rem 1rem;border-radius:30px;transition:all 0.3s ease}
.category-card:hover .category-link{background:#e6f4ea;gap:0.8rem}
.category-link i{font-size:0.7rem;transition:transform 0.3s ease}
.category-card:hover .category-link i{transform:translateX(3px)}

/* Product Table Styles */
.products-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 16px;
    border: 1px solid #e2edf2;
    background: white;
}
.products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    min-width: 800px;
}
.products-table th {
    background: #0f2b3d;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}
.products-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2edf2;
    vertical-align: middle;
}
.products-table tr:hover {
    background: #f8fbfc;
}
.product-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.badge-environmental { background: #e3f2fd; color: #1565c0; }
.badge-pharmaceutical { background: #e8f5e9; color: #2e7d32; }
.badge-organic { background: #fff3e0; color: #e65100; }
.badge-industrial { background: #f3e5f5; color: #6a1b9a; }
.badge-default { background: #e0e0e0; color: #424242; }
.stock-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}
.stock-in { background: #d4edda; color: #155724; }
.stock-out { background: #f8d7da; color: #721c24; }
.table-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
}
.btn-buy {
    background: #2b7e3a;
    color: white;
}
.btn-buy:hover { background: #236e30; transform: translateY(-2px); }
.btn-enquire {
    background: #0f2b3d;
    color: white;
}
.btn-enquire:hover { background: #1a4a5f; transform: translateY(-2px); }
.btn-view {
    background: #6c757d;
    color: white;
}
.btn-view:hover { background: #5a6268; transform: translateY(-2px); }
.product-category-tag {
    font-size: 0.7rem;
    color: #4a6f85;
    margin-top: 0.2rem;
}
.product-cas {
    font-family: monospace;
    font-size: 0.7rem;
    color: #6c757d;
}
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}
.filter-active {
    background: #2b7e3a;
    color: white;
}
.filter-inactive {
    background: #f0f2f5;
    color: #1a2c3e;
}
.filter-inactive:hover {
    background: #e2edf2;
}

/* Responsive Table */
@media (max-width: 768px) {
    .products-table th, .products-table td {
        padding: 0.75rem;
    }
    .table-actions {
        flex-direction: column;
    }
    .btn-sm {
        justify-content: center;
    }
}

.products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:2rem}
.product-card{background:white;border:1px solid #e2edf2;border-radius:16px;padding:1.5rem;text-decoration:none;color:inherit;transition:all 0.3s;display:block}
.product-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.1);border-color:#2b7e3a}
.product-card h3{font-size:1.1rem;margin-bottom:0.5rem;color:#0f2b3d}
.product-code{font-size:0.7rem;color:#6c757d;font-family:monospace;margin-bottom:0.5rem}
.product-price{font-size:1.2rem;font-weight:700;color:#2b7e3a;margin:1rem 0}
.in-stock{color:#28a745;font-size:0.75rem;font-weight:500}
.out-of-stock{color:#dc3545;font-size:0.75rem;font-weight:500}
.btn{display:inline-block;padding:0.7rem 1.3rem;border-radius:8px;text-decoration:none;font-weight:600;border:none;cursor:pointer;transition:all 0.2s}
.btn-primary{background:#2b7e3a;color:white}
.btn-primary:hover{background:#236e30}
.btn-outline{border:2px solid #2b7e3a;background:transparent;color:#2b7e3a}
.btn-outline:hover{background:#2b7e3a;color:white}
.form-group{margin-bottom:1.5rem}
.form-group label{display:block;margin-bottom:0.5rem;font-weight:500}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:0.75rem;border:1px solid #e2edf2;border-radius:8px;font-family:inherit}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#2b7e3a}
.footer{background:#0f2b3d;color:white;padding:3rem 5% 1.5rem;margin-top:4rem}
.footer-content{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;max-width:1200px;margin:0 auto}
.footer-col h3{font-size:1.1rem;margin-bottom:1rem}
.footer-col h4{font-size:0.9rem;margin-bottom:1rem;color:#2b7e3a}
.footer-col ul{list-style:none}
.footer-col ul li{margin-bottom:0.5rem}
.footer-col ul li a{color:#ccc;text-decoration:none;font-size:0.85rem}
.footer-col ul li a:hover{color:#2b7e3a}
.footer-col p{color:#ccc;margin-bottom:0.5rem;font-size:0.8rem}
.footer-col i{width:25px;color:#2b7e3a}
.footer-bottom{text-align:center;padding-top:2rem;border-top:1px solid rgba(255,255,255,0.1);margin-top:2rem;font-size:0.7rem;color:#aaa}
.alert{padding:1rem;border-radius:8px;margin-bottom:1rem}
.alert-success{background:#d4edda;color:#155724}
.alert-error{background:#f8d7da;color:#721c24}
.product-detail{display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding:4rem 5%}
.product-info h1{font-size:1.8rem;margin-bottom:1rem}
.product-specs{background:#f8fbfc;padding:1.5rem;border-radius:12px;margin:1.5rem 0}
.spec-row{display:flex;padding:0.5rem 0;border-bottom:1px solid #e2edf2}
.spec-label{width:40%;font-weight:600}
.spec-value{width:60%;color:#4a6f85}
.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:2rem;margin:2rem 0}
.contact-card{background:#f8fbfc;padding:2rem;border-radius:16px;text-align:center}
.contact-card i{font-size:2rem;color:#2b7e3a;margin-bottom:1rem}
.pagination{display:flex;justify-content:center;gap:0.5rem;margin-top:2rem}
.pagination a,.pagination span{padding:0.5rem 1rem;border:1px solid #e2edf2;border-radius:8px;text-decoration:none;color:#0f2b3d}
.pagination .active{background:#2b7e3a;color:white;border-color:#2b7e3a}
@media(max-width:1024px){.categories-grid{grid-template-columns:repeat(2,1fr);gap:1.2rem}}
@media(max-width:768px){.nav-links{display:none;width:100%;flex-direction:column;gap:1rem;padding:1rem 0}.nav-links.show{display:flex}.dropdown-content{position:static;box-shadow:none;width:100%}.mobile-menu-btn{display:block}.hero-content h1{font-size:1.8rem}.categories-grid{grid-template-columns:1fr;gap:1rem}.category-card{padding:1.5rem 1rem;flex-direction:row;text-align:left;gap:1rem}.category-icon{width:55px;height:55px;margin-bottom:0;flex-shrink:0}.category-icon i{font-size:1.5rem}.category-card h3{font-size:1rem;margin-bottom:0.25rem}.category-card p{font-size:0.7rem;margin-bottom:0.5rem}.category-link{font-size:0.7rem;padding:0.2rem 0.8rem}.footer-content{grid-template-columns:repeat(2,1fr)}.product-detail{grid-template-columns:1fr}}
@media(min-width:641px) and (max-width:1024px){.category-card{padding:1.5rem 1rem}.category-icon{width:60px;height:60px}.category-icon i{font-size:1.6rem}.category-card h3{font-size:1rem}}