* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.weekly-menu-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F9F9F9;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar Styles */
.wm-navbar {
    background-color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wm-navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wm-navbar-left-mobile {
    display: none;
}

.wm-navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.wm-navbar-logo {
    flex-shrink: 0;
}

.wm-logo-img {
    max-width: 122px;
    height: 18px;
    width: auto;
    display: block;
}

.wm-navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.wm-navbar-item {
    margin: 0;
}

.wm-navbar-link {
    text-decoration: none;
    color: #131313;
    font-size: 12px;
    transition: color 0.3s;
    display: block;
}

.wm-navbar-link.active {
    color: #1F3F6D;
    font-weight: 600;
    font-size: 13px;
}

.wm-navbar-link:hover {
    color: #1F3F6D;
}

.wm-navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.wm-login-link {
    color: #1F3F6D;
    font-size: 12px;
    text-decoration: none;
}

.wm-navbar-button {
    background-color: #1F3F6D;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.wm-navbar-button:hover {
    background-color: #1a3458;
    color: white;
}

.wm-navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    align-items: center;
    justify-content: center;
}

.wm-hamburger-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.wm-close-icon {
    width: 24px;
    height: 24px;
    display: none;
}

.wm-navbar-toggle.active .wm-hamburger-icon {
    display: none;
}

.wm-navbar-toggle.active .wm-close-icon {
    display: block;
}

/* Mobile Drawer */
.wm-navbar-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}

.wm-navbar-drawer.active {
    transform: translateX(0);
}

.wm-navbar-drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wm-navbar-drawer-item {
    margin: 0;
}

.wm-navbar-drawer-link {
    text-decoration: none;
    color: #131313;
    font-size: 12px;
    display: block;
    padding: 10px 0;
}

.wm-navbar-drawer-link.active {
    color: #1F3F6D;
    font-weight: 600;
    font-size: 13px;
}

.wm-navbar-drawer-actions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #D9D9D9;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wm-navbar-drawer-button {
    background-color: #1F3F6D;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.wm-navbar-drawer-button:hover {
    background-color: #1a3458;
    color: white;
}

.wm-drawer-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    z-index: 998;
}

.wm-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .wm-navbar-container {
        gap: 15px;
        justify-content: space-between;
    }

    .wm-navbar-left-mobile {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-shrink: 0;
    }

    .wm-navbar-left {
        display: none;
    }

    .wm-navbar-menu {
        display: none;
    }

    .wm-navbar-actions {
        display: flex;
        gap: 0;
        flex-shrink: 0;
    }

    .wm-login-link {
        display: none;
    }

    .wm-navbar-button {
        padding: 8px 16px;
        font-size: 11px;
    }

    .wm-navbar-toggle {
        display: flex;
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .wm-navbar-menu {
        display: flex;
    }

    .wm-navbar-actions {
        display: flex;
    }

    .wm-navbar-toggle {
        display: none;
    }
}

@media (max-width: 480px) {
    .wm-navbar {
        padding: 12px 15px;
    }

    .wm-logo-img {
        max-width: 122px;
        height: 18px;
    }

    .wm-navbar-drawer {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .wm-drawer-overlay {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

.wm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    margin-top: 65px;
}

/* Filter Pills */
.wm-filter-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 30px;
}

.wm-filter-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #F2F2F2;
    border-radius: 20px;
    font-size: 12px;
    color: #1F3F6D;
}

.wm-filter-pill-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.wm-filter-pill-icon svg {
    width: 100%;
    height: 100%;
}

.wm-filter-pill-text {
    font-size: 12px;
    color: #1F3F6D;
    font-weight: 700;
}

.wm-filter-pill-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wm-filter-pill-close svg {
    width: 12px;
    height: 12px;
    stroke: #1F3F6D;
}

/* Header Styles */
.wm-header {
    margin-bottom: 30px;
}

.wm-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.wm-header-text {
    flex: 1;
    min-width: 0;
}

.wm-main-heading {
    font-size: 24px;
    font-weight: bold;
    color: #1F3F6D;
    margin-bottom: 0;
}

.wm-subheading {
    font-size: 14px;
    color: #585858;
}

.wm-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    color: #1F3F6D;
    border: 2px solid #1F3F6D;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wm-filter-btn:hover {
    background-color: #1F3F6D;
    color: white;
}

/* Main Content Layout */
.wm-main-content {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Filter Sidebar */
.wm-filter-sidebar {
    width: 280px;
    background-color: white;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    position: absolute;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-height: calc(100vh - 100px);
    display: none;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.wm-filter-sidebar.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.wm-filter-divider {
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.wm-filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F3F6D;
    padding: 15px 20px;
    width: 100%;
    margin: 0;
}

.wm-filter-list-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.wm-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.wm-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 0;
    transition: background-color 0.2s;
    position: relative;
    pointer-events: auto;
}

.wm-filter-item:hover {
    background-color: #f0f0f0;
}

.wm-filter-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1F3F6D;
    margin-left: auto;
    flex-shrink: 0;
    pointer-events: auto;
}

.wm-filter-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.wm-filter-icon-text {
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wm-filter-label {
    font-size: 14px;
    color: #333;
    flex: 1;
}

.wm-filter-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    margin: 0;
    position: sticky;
    bottom: 0;
    background-color: white;
    border-radius: 0 0 8px 8px;
}

.wm-clear-btn,
.wm-apply-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.wm-clear-btn {
    background-color: transparent;
    color: #1F3F6D;
    border: none;
    padding: 10px;
    text-align: center;
}

.wm-clear-btn:hover {
    background-color: #f0f0f0;
}

.wm-apply-btn {
    background-color: #1F3F6D;
    color: white;
}

.wm-apply-btn:hover {
    background-color: #1a3458;
}

/* Cards Section */
.wm-cards-section {
    flex: 1;
    margin-top: 60px;
}

.wm-cards-section:first-of-type {
    margin-top: 0;
}

.wm-section-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
}

.wm-section-header:first-of-type {
    margin-top: 0;
}

@media (max-width: 1024px) {
    .wm-section-header {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wm-section-header {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .wm-section-header {
        text-align: center;
        max-width: 297px;
        margin-left: auto;
        margin-right: auto;
    }
}

.wm-section-heading {
    font-size: 23px;
    font-weight: 600;
    color: #1F3F6D;
    margin-bottom: 4px;
}

.wm-section-subtitle {
    font-size: 14px;
    color: #585858;
}

.wm-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 20px;
}

/* Card Styles */
.wm-card {
    background-color: white;
    border: 1px solid #D9D9D9;
    border-radius: 7px;
    overflow: hidden;
    min-height: 269px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.wm-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wm-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #D9D9D9;
}

.wm-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wm-card-heading {
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .wm-card-heading {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .wm-card-heading {
        font-size: 18px;
    }
}

.wm-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 10px;
    align-items: center;
}

/* .wm-detail-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
} */
.wm-detail-section {
    margin: 5px 3px;
    border-right: 1px solid #D9D9D9;
    display: flex;
    flex-direction: column; /* if value on top, label below */
    align-items: center;
    gap: 4px;
    padding-right: 5px;
}

/* Remove border on the last item */
.wm-detail-section:last-child {
    border-right: none;
}


.wm-detail-value {
    font-size: 7px;
    color: #585858;
    /* font-weight: 500; */
    line-height: 1.4;
}

.wm-detail-label {
    font-size: 7px;
    color: #585858;
    line-height: 1.4;
}

.wm-detail-divider {
    width: 1px;
    height: 30px;
    background-color: #D9D9D9;
    margin: 0 10px;
    /* flex-shrink: 0; */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .wm-main-content {
        flex-direction: column;
    }

    .wm-filter-sidebar {
        width: calc(100% - 40px);
        position: absolute;
        top: 100px;
        right: 20px;
        left: 20px;
        max-height: calc(100vh - 120px);
    }

    .wm-filter-list-wrapper {
        padding: 0 15px;
    }

    .wm-filter-title {
        padding: 15px;
    }

    .wm-filter-actions {
        padding: 15px;
    }

    .wm-cards-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .wm-container {
        padding: 15px;
    }

    .wm-main-heading {
        font-size: 20px;
    }

    .wm-header-content {
        flex-direction: row;
        align-items: center;
    }

    .wm-filter-btn {
        width: auto;
        flex-shrink: 0;
    }

    .wm-cards-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 15px;
    }

    .wm-section-heading {
        font-size: 20px;
    }
}

@media (max-width: 630px) {
    .wm-header-content {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .wm-header-text {
        flex: 1;
        min-width: 0;
    }

    .wm-main-heading {
        font-size: 14px;
    }

    .wm-subheading {
        font-size: 12px;
    }

    .wm-filter-btn {
        padding: 8px 14px;
        font-size: 11px;
        flex-shrink: 0;
    }

    .wm-filter-btn svg {
        width: 16px;
        height: 16px;
    }

    .wm-cards-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .wm-card {
        width: 100%;
        /* max-width: 237px; */
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .wm-main-heading {
        font-size: 12px;
    }

    .wm-cards-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .wm-card {
        width: 100%;
        /* max-width: 237px; */
        margin: 0 auto;
    }

    .wm-card-image {
        height: 180px;
    }

    .wm-filter-sidebar {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
    }

    .wm-filter-list-wrapper {
        padding: 0 10px;
    }

    .wm-filter-title {
        padding: 12px 15px;
        font-size: 16px;
    }

    .wm-filter-actions {
        padding: 12px 15px;
    }
}

/* Scrollbar styling for filter sidebar */
.wm-filter-sidebar::-webkit-scrollbar {
    width: 6px;
}

.wm-filter-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.wm-filter-sidebar::-webkit-scrollbar-thumb {
    background: #1F3F6D;
    border-radius: 10px;
}

.wm-filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: #1a3458;
}

/* Call to Action Section */
.wm-cta-section {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    margin-top: 60px;
    position: relative;
}

.wm-cta-content {
    text-align: center;
    z-index: 1;
}

.wm-cta-heading {
    font-size: 48px;
    font-weight: bold;
    color: #252525;
    margin-bottom: 12px;
}

.wm-cta-subheading {
    font-size: 18px;
    color: #585858;
    margin-bottom: 30px;
}

.wm-cta-button {
    padding: 15px 40px;
    background-color: #1F3F6D;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.wm-cta-button:hover {
    background-color: #1a3458;
    color: white;
}

@media (max-width: 768px) {
    .wm-cta-heading {
        font-size: 36px;
    }

    .wm-cta-subheading {
        font-size: 16px;
    }

    .wm-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .wm-cta-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media (max-width: 480px) {
    .wm-cta-heading {
        font-size: 28px;
    }

    .wm-cta-subheading {
        font-size: 14px;
    }

    .wm-cta-section {
        min-height: 300px;
        padding: 40px 20px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* Popup Modal */
.wm-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.wm-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.wm-popup-overlay:not(.active) .wm-popup-container {
    transform: scale(0.95);
    opacity: 0;
}

.wm-popup-container {
    background-color: white;
    max-width: 729px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    border-radius: 8px;
}

.wm-popup-overlay.active .wm-popup-container {
    transform: scale(1);
    opacity: 1;
}

.wm-popup-container::-webkit-scrollbar {
    width: 6px;
}

.wm-popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.wm-popup-container::-webkit-scrollbar-thumb {
    background: #1F3F6D;
    border-radius: 10px;
}

.wm-popup-container::-webkit-scrollbar-thumb:hover {
    background: #1a3458;
}

.wm-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-popup-close svg {
    width: 24px;
    height: 24px;
}

.wm-popup-content {
    display: grid;
    grid-template-columns: 281px 1fr;
    gap: 30px;
    width: 100%;
    padding: 0;
    overflow: visible;
    min-height: 0;
}

.wm-popup-left {
    display: flex;
    width: fit-content;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 20px;
    overflow-y: visible;
}

.wm-popup-image {
    width: 281px;
    height: 312px;
    flex-shrink: 0;
    margin: 0 auto;
}

.wm-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wm-popup-filters-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.wm-popup-info {
    padding: 30px 0 30px 0px;
    display: flex;
    flex-direction: column;
    overflow-y: visible;
    min-height: 0;
    flex: 1;
}

.wm-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #313131;
    margin: 0;
    margin-top: 40px;
}

.wm-popup-subtitle {
    font-size: 14px;
    color: #313131;
    margin-bottom: 20px;
}

.wm-popup-divider {
    width: 100%;
    height: 1px;
    background-color: #C9C9C9;
    margin: 0;
}

.wm-popup-nutrition {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 0px 20px 0px;
}

.wm-nutrition-item {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 5px;
}

.wm-nutrition-amount {
    font-size: 12.6px;
    font-weight: 500;
    color: #313131;
    text-transform: uppercase;
}

.wm-nutrition-unit {
    font-size: 12.6px;
    color: #313131;
    font-weight: 400;
    text-transform: uppercase;
}

.wm-nutrition-divider {
    width: 1px;
    height: 20px;
    background-color: #C9C9C9;
    margin: 0 15px;
}

.wm-popup-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0px;
}

.wm-popup-section-heading {
    font-size: 13px;
    color: #313131;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}

.wm-popup-section-text {
    font-size: 11px;
    color: #404040;
    line-height: 1.6;
    margin: 0;
}

.wm-popup-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wm-popup-filter-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(31, 63, 109, 0.15);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.wm-popup-filter-icon svg {
    width: 20px;
    height: 20px;
}

.wm-popup-filter-label {
    font-size: 9px;
    color: #5B5B5B;
    text-align: center;
}

@media (max-width: 1023px) {
    .wm-popup-overlay {
        padding: 16px;
    }

    .wm-popup-container {
        max-width: 100%;
        max-height: calc(100vh - 32px);
        border-radius: 8px;
        overflow-y: auto;
    }

    .wm-popup-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0px;
        overflow: visible;
    }

    .wm-popup-left {
        width: 100%;
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .wm-popup-image {
        width: 100%;
        max-width: 281px;
        height: 312px;
    }

    .wm-popup-filters-left {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .wm-popup-info {
        padding: 0px 0px 20px 0px;
        width: 100%;
    }

    .wm-popup-title {
        margin-top: 20px;
        padding: 0 20px;
    }

    .wm-popup-subtitle {
        padding: 0 20px;
    }

    .wm-popup-nutrition {
        padding: 0 20px 20px 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        gap: 0;
    }

    .wm-nutrition-item {
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .wm-nutrition-divider {
        margin: 0 10px;
        flex-shrink: 0;
    }

    .wm-popup-section {
        padding: 20px 20px;
    }

    .wm-popup-divider {
        width: 100%;
        margin: 0;
        display: block !important;
        height: 1px;
        background-color: #C9C9C9;
        flex-shrink: 0;
    }
}

/* No Results Message */
.wm-no-results-message {
    text-align: center;
    padding: 60px 20px;
    color: #585858;
}

.wm-no-results-message p {
    font-size: 18px;
    margin: 0;
    color: #1F3F6D;
    font-weight: 500;
}

@media (max-width: 768px) {
    .wm-no-results-message {
        padding: 40px 20px;
    }

    .wm-no-results-message p {
        font-size: 16px;
    }
}