/* ==========================================================
   BikeTripBNB — navbar profissional
   ========================================================== */

.btbnb-navbar {
    position: relative;
    z-index: 10000;
    width: 100%;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    box-shadow: 0 7px 24px rgba(0, 0, 0, .055);
    backdrop-filter: blur(14px);
}

.btbnb-navbar-inner {
    width: min(1460px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.btbnb-navbar-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    text-decoration: none;
}

.btbnb-navbar-logo {
    width: 39px;
    height: 39px;
    padding: 7px;
    border-radius: 13px;
    background: #111;
    object-fit: contain;
}

.btbnb-navbar-wordmark {
    display: inline-flex;
    align-items: baseline;
    color: #111;
    font-size: 25px;
    font-weight: 1000;
    letter-spacing: -1.1px;
}

.btbnb-navbar-wordmark strong {
    color: #df7e19;
    font: inherit;
}

.btbnb-navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.btbnb-nav-link,
.btbnb-nav-group-toggle,
.btbnb-navbar-logout button {
    min-height: 43px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: transparent;
    color: #222;
    text-decoration: none;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background .16s ease,
        color .16s ease,
        transform .16s ease;
}

.btbnb-nav-link:hover,
.btbnb-nav-group-toggle:hover,
.btbnb-navbar-logout button:hover {
    background: #f7efe4;
    color: #9b5004;
}

.btbnb-nav-cta {
    min-height: 45px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #df7e19;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 1000;
    white-space: nowrap;
    box-shadow: 0 11px 24px rgba(223, 126, 25, .22);
}

.btbnb-nav-cta:hover {
    background: #ef922d;
    color: #111;
    transform: translateY(-1px);
}

.btbnb-nav-group {
    position: relative;
}

.btbnb-nav-chevron {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform .17s ease;
}

.btbnb-nav-group.is-open .btbnb-nav-chevron {
    transform: rotate(180deg);
}

.btbnb-nav-submenu {
    position: absolute;
    z-index: 10020;
    top: calc(100% + 10px);
    left: 50%;
    width: 285px;
    padding: 9px;
    display: none;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
    transform: translateX(-50%);
}

.btbnb-nav-group.is-open .btbnb-nav-submenu {
    display: grid;
    animation: btbnbSubmenuOpen .15s ease-out;
}

@keyframes btbnbSubmenuOpen {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-7px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.btbnb-nav-submenu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-left: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.btbnb-nav-submenu a {
    position: relative;
    z-index: 1;
    padding: 12px 13px;
    border-radius: 14px;
    display: block;
    color: #171717;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
}

.btbnb-nav-submenu a:hover {
    background: #faf2e7;
    color: #9a5004;
}

.btbnb-nav-submenu small {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.btbnb-navbar-logout {
    margin: 0;
}

.btbnb-navbar-toggle {
    display: none;
    width: 47px;
    height: 47px;
    padding: 0;
    border: 0;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: #111;
    cursor: pointer;
}

.btbnb-navbar-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #df7e19;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.btbnb-navbar-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.btbnb-navbar-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.btbnb-navbar-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1120px) {
    .btbnb-navbar-inner {
        min-height: 70px;
    }

    .btbnb-navbar-toggle {
        display: flex;
        flex: 0 0 47px;
        margin-left: auto;
    }

    .btbnb-navbar-menu {
        position: absolute;
        z-index: 10010;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        max-height: calc(100vh - 98px);
        padding: 13px;
        display: none;
        overflow-y: auto;
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 23px;
        background: #fff;
        box-shadow: 0 26px 65px rgba(0, 0, 0, .23);
    }

    .btbnb-navbar-menu.is-open {
        display: grid;
        gap: 5px;
        animation: btbnbMobileMenuOpen .16s ease-out;
    }

    @keyframes btbbnbMobileMenuOpen {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .btbnb-nav-link,
    .btbnb-nav-group-toggle,
    .btbnb-navbar-logout button,
    .btbnb-nav-cta {
        width: 100%;
        min-height: 49px;
        padding: 0 16px;
        justify-content: space-between;
        border-radius: 15px;
        text-align: left;
    }

    .btbnb-nav-link,
    .btbnb-nav-group-toggle,
    .btbnb-navbar-logout button {
        background: #faf7f2;
    }

    .btbnb-navbar-logout {
        width: 100%;
    }

    .btbnb-nav-group {
        width: 100%;
    }

    .btbnb-nav-submenu {
        position: static;
        width: 100%;
        margin: 6px 0 2px;
        padding: 7px;
        border-radius: 16px;
        box-shadow: none;
        transform: none;
        background: #fff;
        border: 1px solid rgba(223, 126, 25, .19);
    }

    .btbnb-nav-group.is-open .btbnb-nav-submenu {
        display: grid;
        transform: none;
        animation: none;
    }

    .btbnb-nav-submenu::before {
        display: none;
    }

    .btbnb-nav-submenu a {
        padding: 12px;
        background: #fff;
    }
}

@media (max-width: 520px) {
    .btbnb-navbar-inner {
        width: calc(100% - 24px);
    }

    .btbnb-navbar-wordmark {
        font-size: 22px;
    }

    .btbnb-navbar-logo {
        width: 37px;
        height: 37px;
    }

    .btbnb-navbar-menu {
        right: 10px;
        left: 10px;
    }
}

/* BIKETRIP_TOOLBAR_PRETA_START */

/* Toolbar principal novamente preta, como no layout original. */
.btbnb-navbar {
    background: #111 !important;
    border-bottom-color: rgba(255, 255, 255, .08) !important;
    box-shadow: 0 7px 24px rgba(0, 0, 0, .24) !important;
}

.btbnb-navbar-brand,
.btbnb-navbar-wordmark,
.btbnb-navbar-wordmark span {
    color: #fff !important;
}

.btbnb-navbar-wordmark strong {
    color: #df7e19 !important;
}

.btbnb-navbar-logo {
    background: transparent !important;
}

.btbnb-nav-link,
.btbnb-nav-group-toggle,
.btbnb-navbar-logout button {
    color: #fff !important;
    background: transparent !important;
}

.btbnb-nav-link:hover,
.btbnb-nav-group-toggle:hover,
.btbnb-navbar-logout button:hover,
.btbnb-nav-group.is-open > .btbnb-nav-group-toggle {
    color: #df7e19 !important;
    background: rgba(255, 255, 255, .09) !important;
}

/* Botão principal continua laranja. */
.btbnb-nav-cta {
    background: #df7e19 !important;
    color: #111 !important;
}

/* Os submenus continuam como os balões brancos. */
.btbbnb-nav-submenu,
.btbnb-nav-submenu {
    background: #fff !important;
    color: #111 !important;
}

.btbnb-nav-submenu::before {
    background: #fff !important;
}

.btbnb-nav-submenu a {
    color: #171717 !important;
}

.btbnb-nav-submenu a:hover {
    color: #9a5004 !important;
    background: #faf2e7 !important;
}

/* Mobile: topo preto, painel do menu branco. */
@media (max-width: 1120px) {
    .btbnb-navbar-menu {
        background: #fff !important;
    }

    .btbnb-navbar-menu .btbnb-nav-link,
    .btbnb-navbar-menu .btbnb-nav-group-toggle,
    .btbnb-navbar-menu .btbnb-navbar-logout button {
        background: #faf7f2 !important;
        color: #222 !important;
    }

    .btbnb-navbar-menu .btbnb-nav-link:hover,
    .btbnb-navbar-menu .btbnb-nav-group-toggle:hover,
    .btbnb-navbar-menu .btbnb-navbar-logout button:hover,
    .btbnb-navbar-menu .btbnb-nav-group.is-open
        > .btbnb-nav-group-toggle {
        background: #f7ead9 !important;
        color: #9a5004 !important;
    }

    .btbnb-navbar-toggle {
        background: #242424 !important;
        border: 1px solid rgba(255, 255, 255, .13) !important;
    }

    .btbnb-navbar-toggle span {
        background: #df7e19 !important;
    }
}

/* BIKETRIP_TOOLBAR_PRETA_END */

/* BIKETRIP_LOGO_COMPACTA_START */

/*
 * Hand-peace sem caixa ao redor e a apenas 3px do texto.
 */
.btbnb-navbar-brand {
    gap: 3px !important;
}

.btbnb-navbar-logo {
    display: block !important;
    width: 39px !important;
    height: 39px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
    box-shadow: none !important;

    object-fit: contain !important;
}

.btbnb-navbar-wordmark {
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.btbnb-navbar-wordmark span,
.btbnb-navbar-wordmark strong {
    margin: 0 !important;
    padding: 0 !important;
}

/* BIKETRIP_LOGO_COMPACTA_END */

/* BIKETRIP_WORDMARK_FINAL_START */

.btbnb-navbar-wordmark {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

.btbnb-navbar-wordmark .btbnb-word-bike,
.btbnb-navbar-wordmark .btbnb-word-bnb {
    display: inline !important;
    color: #fff !important;
    font: inherit !important;
    font-weight: 1000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.btbnb-navbar-wordmark .btbnb-word-trip {
    display: inline !important;
    color: #df7e19 !important;
    font: inherit !important;
    font-weight: 1000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* BIKETRIP_WORDMARK_FINAL_END */

/* BIKETRIP_WORDMARK_DEFINITIVA_START */

.btbnb-navbar-brand {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 3px !important;
    white-space: nowrap !important;
}

.btbnb-navbar-logo {
    display: block !important;
    flex: 0 0 auto !important;
    width: 39px !important;
    height: 39px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

.btbnb-navbar-wordmark {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.btbnb-navbar-wordmark > span {
    display: inline !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font: inherit !important;
    font-weight: 1000 !important;
    line-height: 1 !important;
    letter-spacing: inherit !important;
}

.btbnb-navbar-wordmark .btbnb-word-bike {
    color: #fff !important;
}

.btbnb-navbar-wordmark .btbnb-word-trip {
    color: #df7e19 !important;
}

.btbnb-navbar-wordmark .btbnb-word-bnb {
    color: #fff !important;
}

/* BIKETRIP_WORDMARK_DEFINITIVA_END */

/* ==========================================================
   BIKETRIP_MOBILE_MENU_PREMIUM_START
   ========================================================== */

.btbnb-mobile-menu-head {
    display: none;
}

@media (max-width: 1120px) {
    body.btbnb-menu-open {
        overflow: hidden;
    }

    .btbnb-navbar {
        position: relative;
        z-index: 10000;
    }

    .btbnb-navbar-menu {
        position: fixed !important;
        z-index: 10020 !important;

        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;

        width: min(390px, 92vw) !important;
        height: 100dvh !important;
        max-height: none !important;

        margin: 0 !important;
        padding:
            max(24px, env(safe-area-inset-top))
            18px
            max(22px, env(safe-area-inset-bottom))
            !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 8px !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        border: 0 !important;
        border-radius: 28px 0 0 28px !important;

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #fffaf4 100%
            ) !important;

        box-shadow:
            -28px 0 80px rgba(0, 0, 0, .34) !important;

        opacity: 0;
        visibility: hidden;

        transform: translateX(104%) !important;

        transition:
            transform .25s ease,
            opacity .2s ease,
            visibility .2s ease !important;
    }

    .btbnb-navbar-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) !important;
    }

    .btbnb-navbar-menu::before {
        content: "";
        position: fixed;
        z-index: -1;

        inset: 0 0 0 auto;

        width: 100vw;
        height: 100dvh;

        background: rgba(0, 0, 0, .64);
        backdrop-filter: blur(4px);

        transform: translateX(-100%);
        pointer-events: none;
    }

    .btbnb-mobile-menu-head {
        margin:
            52px
            0
            10px;
        padding:
            0
            5px
            16px;

        display: grid;
        gap: 4px;

        border-bottom:
            1px solid rgba(0, 0, 0, .08);
    }

    .btbnb-mobile-menu-head span {
        color: #171717;
        font-size: 21px;
        font-weight: 1000;
        letter-spacing: -.45px;
    }

    .btbnb-mobile-menu-head small {
        color: #81766c;
        font-size: 12px;
        font-weight: 700;
    }

    .btbnb-navbar-toggle {
        position: relative;
        z-index: 10040;

        width: 46px !important;
        height: 46px !important;

        border:
            1px solid rgba(255, 255, 255, .14)
            !important;

        border-radius: 15px !important;

        background: #242424 !important;

        box-shadow:
            0 7px 18px rgba(0, 0, 0, .26);
    }

    .btbnb-navbar-toggle[aria-expanded="true"] {
        position: fixed;
        top: max(15px, env(safe-area-inset-top));
        right: 17px;

        border-color:
            rgba(224, 132, 28, .28)
            !important;

        background: #171717 !important;
    }

    .btbnb-navbar-menu > .btbnb-nav-link,
    .btbnb-navbar-menu > .btbnb-nav-group,
    .btbnb-navbar-menu > .btbnb-navbar-logout,
    .btbnb-navbar-menu > .btbnb-nav-cta {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        grid-column: auto !important;
    }

    .btbnb-navbar-menu > .btbnb-nav-link,
    .btbnb-navbar-menu .btbnb-nav-group-toggle,
    .btbnb-navbar-menu .btbnb-navbar-logout button,
    .btbnb-navbar-menu > .btbnb-nav-cta {
        width: 100% !important;
        min-height: 56px !important;

        padding: 0 17px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        border:
            1px solid rgba(0, 0, 0, .055)
            !important;

        border-radius: 17px !important;

        background: #fff !important;
        color: #1d1b19 !important;

        box-shadow:
            0 7px 18px rgba(61, 37, 10, .055)
            !important;

        font-size: 15px !important;
        font-weight: 950 !important;

        text-align: left !important;

        transition:
            transform .16s ease,
            background .16s ease,
            box-shadow .16s ease !important;
    }

    .btbnb-navbar-menu > .btbnb-nav-link::before,
    .btbnb-navbar-menu .btbnb-nav-group-toggle::before,
    .btbnb-navbar-menu .btbnb-navbar-logout button::before {
        width: 31px;
        height: 31px;

        flex: 0 0 31px;

        border-radius: 10px;

        display: grid;
        place-items: center;

        background: #f8eee2;
        color: #c8690b;

        font-size: 15px;
        font-weight: 1000;
    }

    .btbnb-navbar-menu > a[href="/#mapa"]::before {
        content: "⌖";
    }

    .btbnb-navbar-menu
        .btbnb-nav-group:nth-of-type(1)
        .btbnb-nav-group-toggle::before {
        content: "⌂";
    }

    .btbnb-navbar-menu
        .btbnb-nav-group:nth-of-type(2)
        .btbnb-nav-group-toggle::before {
        content: "↗";
    }

    .btbnb-navbar-menu
        > a[href="/eventos/"]::before {
        content: "★";
    }

    .btbnb-navbar-menu
        > a[href="/financeiro/"]::before {
        content: "$";
    }

    .btbnb-navbar-menu
        > a[href="/#quem-somos"]::before {
        content: "i";
    }

    .btbnb-navbar-menu
        .btbnb-navbar-logout button::before {
        content: "↪";
    }

    .btbnb-navbar-menu > .btbnb-nav-link:hover,
    .btbnb-navbar-menu .btbnb-nav-group-toggle:hover,
    .btbnb-navbar-menu
        .btbnb-nav-group.is-open
        > .btbnb-nav-group-toggle {
        background: #fff4e7 !important;
        color: #a65300 !important;

        box-shadow:
            0 10px 24px rgba(224, 132, 28, .12)
            !important;

        transform: translateX(-2px);
    }

    .btbnb-nav-group {
        width: 100% !important;
    }

    .btbnb-nav-chevron {
        margin-left: auto;
        color: #bd690f;
        font-size: 19px;
    }

    .btbnb-nav-submenu {
        position: static !important;

        width: calc(100% - 18px) !important;

        margin:
            6px
            0
            3px
            18px
            !important;

        padding: 7px !important;

        display: none;

        border:
            1px solid rgba(224, 132, 28, .17)
            !important;

        border-radius: 17px !important;

        background: #fff !important;

        box-shadow:
            0 12px 25px rgba(72, 43, 10, .07)
            !important;

        transform: none !important;
    }

    .btbnb-nav-group.is-open .btbnb-nav-submenu {
        display: grid !important;
        gap: 3px;
    }

    .btbnb-nav-submenu a {
        min-height: 52px;

        padding: 10px 12px !important;

        border-radius: 13px !important;

        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        background: transparent !important;
        color: #211e1a !important;
    }

    .btbnb-nav-submenu a:hover {
        background: #fdf3e7 !important;
        color: #9f5003 !important;
    }

    .btbnb-nav-submenu small {
        margin-top: 3px;

        color: #877b70 !important;

        font-size: 11px !important;
        font-weight: 650 !important;
    }

    .btbnb-navbar-logout {
        width: 100% !important;
        margin-top: auto !important;
        padding-top: 14px !important;

        border-top:
            1px solid rgba(0, 0, 0, .08);
    }

    .btbnb-navbar-logout button {
        color: #8d2c22 !important;
        background: #fff5f3 !important;
    }

    .btbnb-navbar-logout button::before {
        color: #a43b2e !important;
        background: #fde6e2 !important;
    }
}

@media (max-width: 430px) {
    .btbnb-navbar-menu {
        width: calc(100vw - 22px) !important;
        border-radius: 24px 0 0 24px !important;
    }
}

/* ==========================================================
   BIKETRIP_MOBILE_MENU_PREMIUM_END
   ========================================================== */

/* BIKETRIP_USER_AVATAR_CSS_START */

.btbnb-user-menu {
    position: relative;
    flex: 0 0 auto;
}

.btbnb-user-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 5px 10px 5px 5px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #fff;
    cursor: pointer;
    font: inherit;
    transition:
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.btbnb-user-menu-toggle:hover,
.btbnb-user-menu.open .btbnb-user-menu-toggle {
    border-color: rgba(224,132,28,.65);
    background: rgba(224,132,28,.15);
}

.btbnb-user-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,.82);
    border-radius: 50%;
    background: #242021;
}

.btbnb-user-avatar.large {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
}

.btbnb-user-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.btbnb-user-menu-name {
    max-width: 118px;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btbnb-user-menu-arrow {
    font-size: 16px;
    transition: transform .18s ease;
}

.btbnb-user-menu.open .btbnb-user-menu-arrow {
    transform: rotate(180deg);
}

.btbnb-user-menu-panel {
    position: absolute;
    z-index: 10050;
    top: calc(100% + 12px);
    right: 0;
    width: min(340px, calc(100vw - 24px));
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    background: #fff;
    color: #1d1a18;
    box-shadow: 0 24px 65px rgba(0,0,0,.28);
}

.btbnb-user-menu-panel[hidden] {
    display: none !important;
}

.btbnb-user-menu-summary {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px;
    background:
        radial-gradient(
            circle at 95% 0%,
            rgba(224,132,28,.28),
            transparent 42%
        ),
        #171412;
    color: #fff;
}

.btbnb-user-menu-summary div {
    min-width: 0;
}

.btbnb-user-menu-summary strong,
.btbnb-user-menu-summary small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btbnb-user-menu-summary strong {
    font-size: 15px;
}

.btbnb-user-menu-summary small {
    margin-top: 4px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}

.btbnb-user-menu-links {
    padding: 8px;
}

.btbnb-user-menu-links a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 13px;
    color: #211c18 !important;
    text-decoration: none;
    transition: background .16s ease;
}

.btbnb-user-menu-links a:hover {
    background: #f7eee4;
}

.btbnb-user-menu-links a > span:first-child {
    text-align: center;
    font-size: 17px;
}

.btbnb-user-menu-links strong,
.btbnb-user-menu-links small {
    display: block;
}

.btbnb-user-menu-links strong {
    font-size: 14px;
}

.btbnb-user-menu-links small {
    margin-top: 2px;
    color: #766a60;
    font-size: 11px;
}

.btbnb-user-menu-logout {
    margin: 0;
    padding: 8px;
    border-top: 1px solid #eee5dc;
}

.btbnb-user-menu-logout button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: #a72020;
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    text-align: left;
}

.btbnb-user-menu-logout button:hover {
    background: #fff0f0;
}

.btbnb-profile-page {
    min-height: 72vh;
    padding: 52px 22px 80px;
    background:
        radial-gradient(
            circle at 8% 0%,
            rgba(224,132,28,.13),
            transparent 28%
        ),
        #f5f1ec;
}

.btbnb-profile-shell,
.btbnb-profile-edit-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.btbnb-profile-edit-shell {
    width: min(920px, 100%);
}

.btbnb-profile-hero,
.btbnb-profile-edit-head {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(224,132,28,.28),
            transparent 38%
        ),
        #181512;
    color: #fff;
    box-shadow: 0 22px 48px rgba(58,36,12,.16);
}

.btbnb-profile-edit-head {
    justify-content: space-between;
}

.btbnb-profile-avatar-large {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #242021;
    box-shadow: 0 10px 28px rgba(0,0,0,.24);
}

.btbnb-profile-avatar-large img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.btbnb-profile-heading {
    min-width: 0;
    flex: 1;
}

.btbnb-profile-heading span,
.btbnb-profile-edit-head span {
    color: #e9a14d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.btbnb-profile-heading h1,
.btbnb-profile-edit-head h1 {
    margin: 6px 0;
    color: #fff;
    font-size: clamp(27px, 4vw, 42px);
}

.btbnb-profile-heading p,
.btbnb-profile-edit-head p {
    margin: 0;
    color: rgba(255,255,255,.68);
}

.btbnb-profile-primary-button,
.btbnb-profile-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.btbnb-profile-primary-button {
    background: #e0841c;
    color: #fff !important;
}

.btbnb-profile-secondary-button {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff !important;
}

.btbnb-profile-form-actions
.btbnb-profile-secondary-button {
    border-color: #d9cec2;
    background: #fff;
    color: #4b4036 !important;
}

.btbnb-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.btbnb-profile-card {
    padding: 24px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(65,45,24,.06);
}

.btbnb-profile-card-wide {
    grid-column: 1 / -1;
}

.btbnb-profile-card h2 {
    margin: 0 0 17px;
    color: #191512;
}

.btbnb-profile-card dl {
    margin: 0;
}

.btbnb-profile-card dl > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #eee7df;
}

.btbnb-profile-card dl > div:last-child {
    border-bottom: 0;
}

.btbnb-profile-card dt {
    color: #7a6d61;
    font-size: 13px;
    font-weight: 800;
}

.btbnb-profile-card dd {
    margin: 0;
    color: #241e19;
    overflow-wrap: anywhere;
}

.btbnb-profile-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.btbnb-profile-shortcuts a {
    display: block;
    padding: 20px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    background: #fff;
    color: #211c18;
    text-decoration: none;
}

.btbnb-profile-shortcuts strong,
.btbnb-profile-shortcuts span {
    display: block;
}

.btbnb-profile-shortcuts span {
    margin-top: 5px;
    color: #786b60;
    font-size: 12px;
}

.btbnb-profile-form {
    margin-top: 20px;
    padding: 26px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(65,45,24,.07);
}

.btbnb-profile-photo-editor {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid #eee4da;
}

.btbnb-profile-photo-editor label,
.btbnb-profile-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #312820;
    font-size: 13px;
    font-weight: 850;
}

.btbnb-profile-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.btbnb-profile-check input {
    width: auto;
}

.btbnb-profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.btbnb-profile-form-group.wide {
    grid-column: 1 / -1;
}

.btbnb-profile-field {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #d9cec2;
    border-radius: 12px;
    background: #fff;
    color: #211b17;
    font: inherit;
}

textarea.btbnb-profile-field {
    min-height: 130px;
    resize: vertical;
}

.btbnb-profile-form-group .errorlist,
.btbnb-profile-errors {
    margin: 7px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff0f0;
    color: #a51f1f;
    font-size: 12px;
}

.btbnb-profile-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

@media (max-width: 900px) {
    .btbnb-user-menu {
        width: 100%;
        margin-top: 9px;
    }

    .btbnb-user-menu-toggle {
        width: 100%;
        justify-content: flex-start;
        border-radius: 15px;
    }

    .btbnb-user-menu-name {
        max-width: none;
        flex: 1;
        text-align: left;
    }

    .btbnb-user-menu-panel {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }

    .btbnb-profile-hero,
    .btbnb-profile-edit-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .btbnb-profile-grid,
    .btbnb-profile-shortcuts {
        grid-template-columns: 1fr;
    }

    .btbnb-profile-card-wide {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .btbnb-profile-page {
        padding: 28px 14px 58px;
    }

    .btbnb-profile-hero,
    .btbnb-profile-edit-head,
    .btbnb-profile-form {
        padding: 20px;
        border-radius: 20px;
    }

    .btbnb-profile-photo-editor {
        align-items: flex-start;
        flex-direction: column;
    }

    .btbnb-profile-form-grid {
        grid-template-columns: 1fr;
    }

    .btbnb-profile-form-group.wide {
        grid-column: auto;
    }

    .btbnb-profile-form-actions {
        display: grid;
    }

    .btbnb-profile-card dl > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* BIKETRIP_USER_AVATAR_CSS_END */

