:root {
    --primary-green: #7BB32E;
    --dark-green: #5A8C1E;
    --light-green: #E8F5E9;
    --accent-yellow: #FFC107;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.bg-success { background-color: var(--primary-green) !important; }
.text-success { color: var(--primary-green) !important; }
.btn-success { background-color: var(--primary-green); border-color: var(--primary-green); }

/* Sidebar Mega Menu - FIXED OVERLAP */
.mega-menu-wrapper {
    position: relative !important; /* Changed from static to contain the dropdown */
}

.sidebar-mega-menu {
    width: 1000px;
    height: 550px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    display: none;
    background: #fff;
}

.mega-menu-wrapper:hover .sidebar-mega-menu {
    display: block !important;
}

.menu-sidebar {
    width: 250px;
    border-right: 1px solid #eee;
    background: #fcfcfc;
    height: 100%;
}

.menu-item {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item.active {
    background: var(--primary-green);
    color: #fff;
}

.menu-item.active i {
    color: #fff !important;
}

.menu-panels {
    background: #fff;
    height: 100%;
    overflow-y: auto;
}

.menu-panel {
    display: none;
    padding: 30px;
}

.menu-panel.active {
    display: block;
}

/* Product Cards and Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Cart Badge */
.badge.bg-danger {
    font-size: 0.7rem;
    padding: 4px 6px;
}
