/**
 * Navigation mobile SRBC — header sticky + barre fixe en bas (comme Prowash).
 */
@media (max-width: 991.98px) {
    .header_area {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #fff;
        border-bottom: 1px solid rgba(7, 133, 134, 0.12);
        box-shadow: 0 4px 18px rgba(7, 133, 134, 0.06);
        padding-top: env(safe-area-inset-top, 0px);
        isolation: isolate;
    }

    .header_area .header.get_sticky_header {
        padding: 10px 0;
        background: #fff;
    }

    .fixed-header .header_area .get_sticky_header {
        position: relative !important;
        animation: none;
        box-shadow: none;
    }

    .header_area .header_logo_box img {
        width: 120px;
        max-width: 40vw;
        height: auto;
    }

    .header_area .header_right_content .header-button {
        display: none;
    }

    body.srbc-has-bottom-nav .prgoress_indicator {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    body.srbc-has-bottom-nav {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    }
}

.srbc-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: #fff;
    border-top: 1px solid rgba(7, 133, 134, 0.12);
    box-shadow: 0 -4px 20px rgba(7, 133, 134, 0.08);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.srbc-bottom-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    max-width: 520px;
    margin: 0 auto;
    padding: 8px 4px 10px;
}

.srbc-bottom-nav__link {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 2px 4px;
    min-height: 52px;
    text-decoration: none;
    color: #6b7a7a;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.1;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease;
}

.srbc-bottom-nav__label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.srbc-bottom-nav__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.srbc-bottom-nav__link.is-active {
    color: #078586;
}

.srbc-bottom-nav__link.is-active .srbc-bottom-nav__icon {
    color: #078586;
    background: rgba(7, 133, 134, 0.12);
}

.srbc-bottom-nav__link:active {
    color: #078586;
}

.srbc-bottom-nav__link:active .srbc-bottom-nav__icon {
    transform: scale(0.94);
}

@media (max-width: 380px) {
    .srbc-bottom-nav__label {
        font-size: 9px;
    }

    .srbc-bottom-nav__icon {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .srbc-bottom-nav {
        display: none !important;
    }
}
