/* Mobile Bottom Navigation Styles */
.mobile-bottom-nav {
    display: none;
    /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 10px;
    flex: 1;
    height: 100%;
    position: relative;
    padding-top: 5px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
}

/* Active State if needed */
.mobile-bottom-nav .nav-item.active {
    color: #d32f2f;
}

.mobile-bottom-nav .nav-item.active i {
    color: #d32f2f;
}

/* 24hrs Special Icon */
.mobile-bottom-nav .nav-item:nth-child(2) i {
    color: #d32f2f;
    /* Red accent for the 24h icon usually */
}

/* Search FAB (Floating Action Button) effect */
.search-trigger {
    /* The item itself */
    overflow: visible;
}

.search-fab {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -20px;
    /* Moves it up */
    border: 5px solid #f2f2f2;
    /* Outline to match page bg or create cutout effect */
}

/* Adjust colors in FAB */
.search-fab i {
    font-size: 20px;
    color: #333 !important;
    margin-bottom: 0 !important;
}

/* Mobile Display Logic */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to body/footer so content isn't hidden behind nav */
    body {
        padding-bottom: 70px;
    }
}

/* Overlay Styles */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    padding-top: 20px;
    justify-content: center;
}

.search-bar-container {
    background: #fff;
    padding: 10px;
    width: 90%;
    border-radius: 5px;
    display: flex;
    gap: 10px;
}

.search-bar-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-bar-container button {
    background: none;
    border: none;
    font-size: 18px;
}