.fbp-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    padding: 6px 8px 8px;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 9999;
    font-size: 12px;
}

.fbp-bottom-menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #555555;
    cursor: pointer;
    user-select: none;
    border: none;
    background: transparent;
}

.fbp-bottom-menu-item .fbpbm-icon {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", "Font Awesome", "fa-solid-900";
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fbp-bottom-menu-item .fbpbm-label {
    margin-top: 3px;
}

.fbp-bottom-menu-item:hover,
.fbp-bottom-menu-item.is-active {
    color: #000000;
}

.fbp-bottom-menu-item:hover .fbpbm-icon,
.fbp-bottom-menu-item.is-active .fbpbm-icon {
    color: #000000;
}

/* Carrinho */
.fbp-cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fbp-cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ff4d4f;
    color: #ffffff;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    padding: 0 3px;
}

/* Barra de busca */
.fbp-search-wrapper {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 52px;
    background: #ffffff;
    padding: 8px 10px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.08);
    z-index: 9999;
    display: none;
}

.fbp-search-wrapper.is-open {
    display: block;
}

.fbp-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fbp-search-form .fbpbm-icon {
    font-size: 18px;
    width: 20px;
    height: 20px;
    color: #555555;
}

.fbp-search-field {
    flex: 1;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    font-size: 14px;
}

/* Esconde no desktop / tablet amplo */
@media (min-width: 1025px) {
    .fbp-bottom-menu,
    .fbp-search-wrapper {
        display: none !important;
    }
}
