/* Navegação do usuário logado — estilo FutebolCard */
.fc-user-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.fc-user-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    min-width: 72px;
    position: relative;
    transition: opacity .2s ease;
}

.fc-user-nav__item:hover,
.fc-user-nav__item.active {
    color: #fff;
    opacity: .85;
}

.fc-user-nav__item small {
    font-size: 11px;
    margin-top: 4px;
    white-space: nowrap;
}

.fc-user-nav__greeting {
    color: #fff;
    font-size: 14px;
    margin-left: .5rem;
    white-space: nowrap;
}

.fc-user-nav__logout {
    color: var(--primary-color, #f38023);
    margin-left: .25rem;
    display: flex;
    align-items: center;
}

.fc-user-nav__logout svg {
    width: 28px;
    height: 28px;
}

.shoppingCartItemsIcon {
    display: none;
    position: absolute;
    top: -8px;
    right: 8px;
    color: var(--shopping-cart-counter-color, #f5f5f5);
    background: var(--shopping-cart-counter-bg, #f38023);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
    border: 2px solid var(--shopping-cart-counter-border, #f38023);
}

.shoppingCartItemsIcon.active {
    display: block;
}

@media (max-width: 1199.98px) {
    .fc-user-nav {
        gap: .75rem;
    }

    .fc-user-nav__item {
        min-width: 56px;
    }

    .fc-user-nav__item small {
        font-size: 10px;
    }

    .fc-user-nav__greeting {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .fc-user-nav--desktop {
        display: none !important;
    }
}

.custom-nav-mobile ul {
    width: 100%;
}

.custom-nav-mobile .fc-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    gap: 2px;
}

.custom-nav-mobile .fc-mobile-nav-item.active {
    font-weight: 700;
}

.fc-page-banner {
    background: #f38023;
    color: #fff;
    padding: 1.5rem 0;
}

.fc-page-banner h1 {
    font-size: 1.5rem;
    margin: 0;
}

.fc-empty-state {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: #58585a;
}

.fc-card-box {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.fc-account-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
}

.fc-account-menu {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.fc-account-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.fc-account-menu a.active,
.fc-account-menu a:hover {
    background: #f38023;
    color: #fff;
}

@media (max-width: 767.98px) {
    .fc-account-grid {
        grid-template-columns: 1fr;
    }
}
