@charset "UTF-8";
/* CSS Document */


<style>
    .language-switcher { display: flex; gap: 10px; margin: 0 15px; }
    .language-switcher button {
        padding: 5px 12px;
        border-radius: 20px;
        border: 1px solid var(--primary);
        background: white;
        cursor: pointer;
        font-weight: 600;
        font-size: 12px;
    }
    .language-switcher button.active {
        background: var(--primary);
        color: white;
    }
</style>
    
    <style>
    
    /* --- MOBILE CATEGORY SCROLLBAR --- */
.mobile-category-bar {
    display: none; /* Hidden by default on desktop */
    padding: 10px 20px;
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 72px; /* Adjust based on header height */
    z-index: 900;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for clean look */
.mobile-category-bar::-webkit-scrollbar {
    display: none;
}

.mobile-category-bar .category-btn {
    display: inline-flex;
    margin-right: 8px;
    margin-bottom: 0;
    padding: 8px 16px;
    font-size: 13px;
    background: #f1f5f9;
}
header a:hover div {
    color: var(--primary) !important;
}

.rfq-items {
    flex: 1; /* Takes up available space */
    overflow-y: auto; /* Enables scrolling */
    padding-right: 5px; /* Space for scrollbar */
    scroll-behavior: smooth;
}

/* Optional: Make the scrollbar look cleaner */
.rfq-items::-webkit-scrollbar {
    width: 6px;
}
.rfq-items::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}
@media (max-width: 992px) {
    .mobile-category-bar {
        display: flex; /* Show only on mobile/tablets */
    }
    .main-container {
        margin-top: 0; /* Remove top margin since bar is there */
    }
}
    
    
    /* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    left: 40px; /* Positioned opposite to your RFQ cart */
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(18, 140, 126, 0.4);
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Adjust for mobile screens so it doesn't overlap content */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
    
        :root {
            --primary: #10b981; /* Modern Emerald */
            --primary-dark: #065f46;
            --secondary: #0f172a; /* Deep Slate */
            --accent: #3b82f6;
            --bg-light: #f8fafc;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --white: #ffffff;
            --radius-lg: 16px;
            --radius-md: 12px;
            --shadow-subtle: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

/* --- FOOTER STYLES --- */
.main-footer {
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    padding: 80px 5% 40px 5%;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

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

.contact-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .main-footer {
        padding: 50px 20px 30px 20px;
    }
}

        * { box-sizing: border-box; transition: all 0.2s ease-in-out; }
        
        body { 
            margin: 0; 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background: var(--bg-light); 
            color: var(--text-main);
            line-height: 1.6;
        }

        /* --- HEADER & NAVIGATION --- */
        .top-bar {
            background: var(--secondary);
            color: white;
            text-align: center;
            padding: 10px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            padding: 1.2rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .logo { 
            font-size: 26px; 
            font-weight: 800; 
            color: var(--secondary); 
            letter-spacing: -1px;
        }
        .logo span { color: var(--primary); }

        .search-container { flex: 0 1 500px; margin: 0 30px; position: relative; }
        .search-container input {
            width: 100%;
            padding: 12px 20px;
            padding-left: 45px;
            border-radius: var(--radius-md);
            border: 1px solid #e2e8f0;
            background: #f1f5f9;
            outline: none;
            font-size: 14px;
        }
        .search-container input:focus { 
            border-color: var(--primary); 
            background: white; 
            box-shadow: 0 0 0 4px rgba(16, 155, 109, 0.1);
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            height: 480px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
            margin-bottom: 4rem;
        }
        .hero img {
            position: absolute;
            right: 0;
            width: 65%; height: 100%;
            object-fit: cover;
            opacity: 0.9;
            mask-image: linear-gradient(to left, black, transparent);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 8%;
            max-width: 700px;
        }
        .hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; font-weight: 800; }
        .hero p { font-size: 1.25rem; color: #cbd5e1; margin-bottom: 2rem; }

        /* --- MAIN LAYOUT --- */
        .main-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2.5rem;
            max-width: 1440px;
            margin: 0 auto 5rem auto;
            padding: 0 40px;
        }

        .sidebar-filters {
            background: var(--white);
            padding: 24px;
            border-radius: var(--radius-lg);
            height: sticky;
            top: 100px;
            box-shadow: var(--shadow-subtle);
            border: 1px solid #f1f5f9;
        }
        .filter-title { 
            font-weight: 800; 
            margin-bottom: 1.5rem; 
            text-transform: uppercase; 
            font-size: 12px; 
            letter-spacing: 1px;
            color: var(--text-muted); 
        }

        .category-btn {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            margin-bottom: 8px;
            cursor: pointer;
            border-radius: 10px;
            font-weight: 600;
            color: var(--text-main);
        }
        .category-btn:hover { background: #f1f5f9; transform: translateX(5px); }
        .category-btn.active { background: var(--secondary); color: white; }
        .category-btn span { margin-right: 12px; font-size: 18px; }

        /* --- PRODUCT CARDS --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }
        .product-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-subtle);
        }
        .product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
        
        .product-card img {
            width: 100%;
            height: 220px;
            object-fit: contain;
            background: #f8fafc;
            border-radius: var(--radius-md);
            margin-bottom: 1.5rem;
        }
        .tag {
            font-size: 11px;
            background: #ecfdf5;
            color: var(--primary-dark);
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 10px;
        }
        .product-card h3 { font-size: 18px; margin: 8px 0; font-weight: 700; color: var(--secondary); }
        .price { font-weight: 800; color: var(--primary); font-size: 1.25rem; margin-bottom: 4px; }
        .moq { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 5px; }

        .qty-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 12px;
            font-family: inherit;
            font-weight: 600;
        }

        .btn-add {
            width: 100%;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
        }
        .btn-add:hover { background: var(--primary); box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3); }

        /* --- RFQ DRAWER & TRIGGER --- */
        .rfq-drawer {
            position: fixed;
            right: -450px;
            top: 0;
            width: 420px;
            height: 100%;
            background: white;
            box-shadow: -20px 0 50px rgba(0,0,0,0.1);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            padding: 30px;
        }
        .rfq-drawer.active { right: 0; }
        .rfq-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #f1f5f9; padding-bottom: 1.5rem; }
        .rfq-header h3 { font-size: 20px; font-weight: 800; margin: 0; }
        
        .rfq-item { 
            display: flex; justify-content: space-between; align-items: center;
            padding: 15px; border-radius: 12px; background: #f8fafc; margin-bottom: 10px;
        }

        .rfq-trigger {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: var(--primary);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.4);
            z-index: 1500;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        #rfq-count { background: white; color: var(--primary); padding: 2px 10px; border-radius: 20px; font-size: 14px; }

        @media (max-width: 992px) {
            .main-container { grid-template-columns: 1fr; padding: 0 20px; }
            .sidebar-filters { display: none; }
            .hero { height: auto; padding: 4rem 0; }
            .hero img { display: none; }
            .hero h1 { font-size: 2.5rem; }
        }
    </style>
    
    
    
<style>
    /* --- NEW NOTIFICATION STYLES --- */
    .toast {
        background: var(--secondary);
        color: white;
        padding: 16px 24px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-hover);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        font-size: 14px;
        animation: slideIn 0.3s ease-out, fadeOut 0.5s ease-in 2.5s forwards;
        border-left: 4px solid var(--primary);
    }

    @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }

    @keyframes fadeOut {
        to { opacity: 0; transform: translateY(-10px); visibility: hidden; }
    }

    /* Success state for buttons */
    .btn-success {
        background: var(--primary) !important;
        pointer-events: none;
    }

    /* "Pop" animation for the RFQ counter */
    @keyframes counterPop {
        0% { transform: scale(1); }
        50% { transform: scale(1.4); }
        100% { transform: scale(1); }
    }
    .pop-anim { animation: counterPop 0.3s ease-out; }
</style>