.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FA4614;
    padding: 12px 10px 4px 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 12px;
    padding: 5px;
}

.nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* Adjust main content when bottom nav is present */
body.has-bottom-nav main {
    padding-bottom: 40px !important;
}

body.has-bottom-nav .h-screen {
    height: auto !important;
    min-height: 100vh !important;
}

body.has-bottom-nav .h-full {
    height: auto !important;
    min-height: 100% !important;
}

/* Adjust WhatsApp button */
body.has-bottom-nav .float {
    bottom: 85px !important;
    z-index: 1001 !important;
}

/* Fix container heights */
body.has-bottom-nav .container {
    height: auto !important;
    min-height: 100% !important;
}

/* Ensure content is scrollable */
body.has-bottom-nav section.bg-gray-100 {
    height: auto !important;
    min-height: 100% !important;
    padding-bottom: 45px !important;
}