.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: none;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    min-height: 74px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #e6e9ef;
    background: #fff;
}

.mobile-bottom-nav__item,
.mobile-bottom-nav__cta {
    border: 0;
    background: transparent;
    color: #6b7280;
    font: inherit;
}

.mobile-bottom-nav__item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 54px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 4px 2px 0;
    text-decoration: none;
    cursor: pointer;
    transition: color .16s ease, transform .16s ease;
}

.mobile-bottom-nav__item--favorites {
    padding-right: 10px;
}

.mobile-bottom-nav__item i {
    font-size: 22px;
    line-height: 1;
    color: inherit;
}

.mobile-bottom-nav__item span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.mobile-bottom-nav__badge {
    position: absolute;
    top: 4px;
    right: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav__item.is-active {
    color: #7c1029;
}

.mobile-bottom-nav__cta {
    width: 64px;
    height: 64px;
    align-self: flex-start;
    flex: 0 0 64px;
    margin: -24px 6px 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7c1029;
    color: #fff;
    cursor: pointer;
    transition: transform .16s ease, opacity .16s ease;
}

.mobile-bottom-nav__cta i {
    font-size: 28px;
    line-height: 1;
}

.mobile-bottom-nav__item:active,
.mobile-bottom-nav__cta:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    body.site-body {
        padding-bottom: 102px;
    }

    .mobile-bottom-nav {
        display: flex;
    }
}
