:root {
    --primary-color: #0C6C44; /* VegEase Green */
    --secondary-color: #8FC74A; /* Lighter Green */
    --bg-color: #f5f6f7;
    --text-dark: #1f1f1f;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    padding-bottom: 70px; /* Space for mobile bottom menu */
}

/* Header Styles */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.brand-logo img {
    height: 45px;
}

.location-pill {
    background: #ebf7e4;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.search-bar-custom {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    background: #f9f9f9;
    padding: 10px;
}

.search-bar-custom input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item-mobile {
    text-align: center;
    color: #999;
    font-size: 12px;
    text-decoration: none;
}

.nav-item-mobile.active {
    color: var(--primary-color);
    font-weight: bold;
}

.nav-item-mobile i {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
}

/* Common Utilities */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
}
.text-green { color: var(--primary-color); }