@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-blue: #0054a7;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e1e8ed;
}

body {
    background-color: var(--light-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* Sidebar Container */
#menu-navigation {
    background: #0054a7;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e1e8ed;
}

/* Force Vertical List */
.nav-menu {
    display: flex !important;
    flex-direction: column !important; /* Forces one by one vertical stacking */
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    background: transparent !important;
}

.nav-menu li {
    width: 100%; /* Ensures the link takes full width */
    margin-bottom: 8px; /* Spacing between items */
}

.nav-menu li a {
    display: block;
    padding: 12px 18px;
    color: #333333;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Hover & Active State using your #0054a7 blue */
.nav-menu li a:hover {
    background-color: rgba(0, 84, 167, 0.05);
    color: #0054a7;
    padding-left: 25px; /* Subtle slide effect */
}

.nav-menu li a.active {
    background-color: #0054a7;
    color: #ffffff;
}

/* Category Title Banner */
.menu-category-title {
    background-color: var(--primary-blue);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left; /* Professional alignment */
}

.menu-category-title .title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Menu Item Cards */
.menu-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.menu-item h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.text-muted {
    color: var(--text-muted) !important;
    font-style: normal;
    font-size: 0.9rem;
}

/* Price Tag Styling */
[data-product-base-price] {
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.2rem;
}

.text-sm-right .text-muted {
    font-weight: 600;
    margin-right: 4px;
}

/* Specific button/tag style if needed */
.price-container {
    background: #f0f4f8;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-blue: #0054a7;
    --light-bg: #f4f7f9;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #e1e8ed;
}

body {
    background-color: var(--light-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

/* Sidebar Navigation - One by One Vertical */
#menu-navigation {
    position: sticky !important;
    top: 20px;
}

/* .nav-menu {
    background: var(--white) !important;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    list-style: none;
} */

/* .nav-menu li {
    display: block; 
    margin-bottom: 5px;
}

.nav-menu li a {
    color: var(--text-main);
    padding: 12px 15px;
    display: block;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.nav-menu li a:hover {
    background: rgba(0, 84, 167, 0.05);
    color: var(--primary-blue);
    padding-left: 20px;
    margin-left: 10px;
} */

/* Category Title Banner */
.menu-category-title {
    background-color: var(--primary-blue);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left; /* Professional alignment */
}

.menu-category-title .title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Menu Item Cards */
.menu-item {
    background: var(--white);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.menu-item h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.text-muted {
    color: var(--text-muted) !important;
    font-style: normal;
    font-size: 0.9rem;
}


/* Price Tag Styling */
[data-product-base-price] {
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.2rem;
}

.text-sm-right .text-muted {
    font-weight: 600;
    margin-right: 4px;
}

/* Specific button/tag style if needed */
.price-container {
    background: #f0f4f8;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}
#menu-navigation {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 20px 10px;
}
#menu-navigation {
    position: relative;
}

#menu-navigation::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 20px;
    z-index: 0;
}

#menu-navigation ul {
    position: relative;
    z-index: 1;
}
#menu-navigation .nav-menu li a {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 12px 0;
}

#menu-navigation .nav-menu li a:hover {
    background-color: #fff;
    color: #0056b3;
}
.menu-category-title {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 30px;
    border-radius: 12px;
    overflow: hidden;
}

/* Overlay */
.menu-category-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45); /* adjust opacity */
    z-index: 1;
}

/* Text above overlay */
.menu-category-title .title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}
