:root {
    --primary-color: #9bcc3c; /* Lime green */
    --secondary-color: #192f44; /* Sleek navy */
    --accent-hover: #b3e64d; /* Lighter lime */
}

body {
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    line-height: 1.6;
}

/* Global Bootstrap Button Overrides */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 14px rgba(155, 204, 60, 0.25) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(25, 47, 68, 0.3) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
}
/* ================= NAVBAR ================= */

/* ================= NAVBAR BASE ================= */

.navbar-wrapper {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding-top: 15px;
}

.navbar-custom {
    transition: all 0.3s ease;
}

/* Desktop links (over hero) */
.navbar-custom .nav-link {
    color: #000000;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.navbar-custom .nav-link:hover {
    opacity: 0.8;
}

/* Contact Button */
.navbar-custom .btn-primary {
    border-radius: 50px;
    padding: 10px 26px;
}


/* ================= MOBILE OPEN STATE ================= */

@media (max-width: 991px) {

    .navbar-collapse {
        background: #ffffff;
        padding: 25px;
        margin-top: 15px;
        border-radius: 8px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .navbar-custom .nav-link {
        color: #1F2937 !important;
        padding: 10px 0;
        font-weight: 500;
    }

    .navbar-custom .btn-primary {
        width: 100%;
        margin-top: 15px;
    }
}


/* ================= PRODUCTS HERO ================= */

.products-hero {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Badge */

.products-badge {
    display: inline-flex;
    align-items: center;
    background: #eef8d7;
    color: #192f44;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
}

/* Title */

.products-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
}

/* Text */

.products-hero-subtitle {
    font-family: 'Inter', sans-serif;
    color: #4B5563;
}

.products-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #6B7280;
}

/* Buttons */

.products-btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(155, 204, 60, 0.35);
    transition: 0.3s ease;
}

.products-btn-primary:hover {
    transform: translateY(-3px);
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 15px 35px rgba(25, 47, 68, 0.4);
}

.products-btn-outline {
    border: 1px solid #D1D5DB;
    color: #374151;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.products-btn-outline:hover {
    background: #F3F4F6;
}

/* Image */

.products-hero-image-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.products-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* ================= BROWSE BY BRAND ================= */

.products-brands {
    background: #F3F5F8;
}

.products-section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #111827;
    position: relative;
}

.products-section-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 2px;
}

.products-view-all {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-view-all:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.products-view-all:hover {
    text-decoration: underline;
}

/* Brand Card */

.products-brand-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.products-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image Block */

.products-brand-image {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}

.products-brand-image img {
    max-height: 120px;
    object-fit: contain;
}

/* Content */

.products-brand-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.products-brand-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 12px;
}

.products-brand-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-brand-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


.products-brand-card{
  color: inherit;
}

.products-brand-card:hover{
  text-decoration: none;
}

/* ================= ENTERPRISE PROCUREMENT ================= */

.products-procurement {
    background: #ffffff;
}

/* Feature Block */

.products-feature h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.products-feature p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
}

.products-feature-icon {
    width: 40px;
    height: 40px;
    background: #eef8d7;
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ================= PROCUREMENT IMAGE ================= */

.products-procurement-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.products-procurement-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */

.products-procurement-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-family: 'Inter', sans-serif;
}

/* ================= BULK IT CTA ================= */

.products-bulk-card {
    background: linear-gradient(135deg, var(--secondary-color), #274766);
    padding: 60px 40px;
    border-radius: 28px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(25, 47, 68, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-bulk-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
}

.products-bulk-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */

.products-bulk-btn {
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

/* Primary White Button */

.products-bulk-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.products-bulk-primary:hover {
    background: #ffffff;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.15);
}

/* Outline Style */

.products-bulk-outline {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.products-bulk-outline:hover {
    background: rgba(255,255,255,0.25);
}

/* WhatsApp Style */

.products-bulk-whatsapp {
    background: #22C55E;
    color: #ffffff;
}

.products-bulk-whatsapp:hover {
    background: #16A34A;
}

/* Responsive */

@media (max-width: 768px) {

    .products-bulk-card {
        padding: 45px 25px;
    }

    .products-bulk-btn {
        width: 100%;
        justify-content: center;
    }

}

/* ================= FOOTER ================= */

.site-footer {
    background: var(--secondary-color);
    color: #cbd5e1;
    padding-top: 60px;
    font-family: 'Inter', sans-serif;
    border-top: 5px solid var(--primary-color);
}

.footer-top h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-top ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-top ul li a:hover {
    color: #ffffff;
}

/* Brand Section */

.footer-logo {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Contact */

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--primary-color);
}

/* Bottom Bar */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 30px;
    padding: 18px 0;
    font-size: 0.8rem;
    color: #94a3b8;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 768px) {

    .footer-bottom {
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

/* ================= ENTERPRISE SPECIFIC ================= */

/* Hero Section */
.enterprise-hero-wrapper {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.enterprise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.enterprise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(25, 47, 68, 0.98), rgba(40, 68, 94, 0.88));
    z-index: 2;
}

.enterprise-hero-content {
    position: relative;
    z-index: 3;
}

.enterprise-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

.enterprise-hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Filter Menu */
.category-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    color: #374151;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #E5E7EB;
    color: #111827;
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(155, 204, 60, 0.35);
}

/* Product Cards */
.ep-card {
    background: #ffffff;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.ep-img-wrapper {
    background: #F9FAFB;
    padding: 20px;
    text-align: center;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ep-card:hover .ep-img-wrapper img {
    transform: scale(1.05);
}

.ep-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ep-content h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.ep-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 0;
}


.ep-action {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ep-price {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    margin: 0;
}

.ep-buy-btn {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ep-buy-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(155, 204, 60, 0.35);
}

/* Hide transitions for filtering */
.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.product-item.hidden {
    opacity: 0;
    transform: scale(0.9);
}