.mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    padding: 10px 6px;
}

.mobile-bottom-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.mobile-bottom-nav__item {
    flex: 1;
    position: relative;
}

.mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #4a4a4a;
    font-size: 10px;
    font-weight: 800;
    border-radius: 999px;
    padding: 6px 2px;
    line-height: 1.1;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.mobile-bottom-nav__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.25s ease;
}

.mobile-bottom-nav__link.is-active {
    color: #1f1f1f;
}

.mobile-bottom-nav__link.is-active .mobile-bottom-nav__icon {
    width: 58px;
    height: 58px;
    margin-top: -22px;
    background: #f9c400;
    color: #1f1f1f;
    box-shadow: 0 10px 22px rgba(249, 196, 0, 0.55);
}

.mobile-bottom-nav__item--drawer .mobile-bottom-nav__drawer-trigger {
    position: absolute;
    top: -10px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: #f9c400;
    color: #1f1f1f;
    line-height: 1;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(249, 196, 0, 0.5);
}

.mobile-services-drawer__backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 9996;
    transition: opacity 0.25s ease;
}

.mobile-services-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -420px;
    z-index: 9997;
    transition: bottom 0.28s ease;
}

.mobile-services-drawer__inner {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    padding: 10px 16px 120px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

.mobile-services-drawer__handle {
    width: 44px;
    height: 5px;
    background: #d9d9d9;
    border-radius: 999px;
    margin: 0 auto 10px;
}

.mobile-services-drawer__title {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mobile-services-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-services-drawer__link {
    display: block;
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: #f8f8f8;
    color: #1f1f1f;
    font-size: 13px;
    font-weight: 700;
}

.mobile-services-drawer__link.is-active {
    background: #f9c400;
}

.mobile-services-drawer-open .mobile-services-drawer {
    bottom: 0;
}

.mobile-services-drawer-open .mobile-services-drawer__backdrop {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 992px) {
    .mobile-bottom-nav,
    .mobile-services-drawer,
    .mobile-services-drawer__backdrop {
        display: none;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 106px;
    }
}
