/* FOOTER NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    /*background: white;*/
    background: linear-gradient(to right, #ff5f6d, #fabb63);
    padding: 3px 0 0px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
   
}

/* Menu Item */
.bottom-nav .nav-item {
    text-decoration: none;
    /*color: #888;*/
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

/* Menu Ikon */
.bottom-nav .nav-item i {
    font-size: 18px;
    
}

/* Pay Button Container */
.pay-button-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0; /* Agar tidak mengganggu elemen lain */
    margin-top: -40px; /* **Naikkan tombol Pay sedikit** */
}

/* Pay Button */
.pay-button {
    /*background: linear-gradient(135deg, #6d28d9, #3b1692);*/
    background: linear-gradient(to right, #ff5f6d, #ffc371);
    color: white;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 4px solid white;
    transition: transform 0.2s;
    z-index: 10;
}

/* Hover Pay Button */
.pay-button:hover {
    transform: scale(1.1);
}

/* Warna aktif untuk menu */
.bottom-nav .nav-item.active {
    color: #3b1692;
    font-weight: bold;
}

/* Teks Pay di bawah tombol */
.pay-text {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-top: 6px;
}

/* RESPONSIF */
@media (max-width: 480px) {
    .pay-button-container {
        margin-top: -40px; /* **Naikkan tombol Pay sedikit lebih rendah di mobile** */
    }

    .pay-button {
        height: 60px;
        width: 60px;
        font-size: 15px;
    }

    .bottom-nav {
        padding: 4px 0 5px;
    }

    .bottom-nav .nav-item {
        font-size: 11px;
    }

    .bottom-nav .nav-item i {
        font-size: 16px;
    }

    .pay-text {
        font-size: 13px;
        margin-top: 6px;
    }
}