/* TOP BAR */
.top-bar-wrapper {
    background-color: #0675c4;
    width: 100%;
}

.top-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 1rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.top-bar a {
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
}

.btn-account,
.sensei  .btn-account{
    background-color: #101427;
    color: #FFF !important;
}

.btn-logout {
    background-color: #101427;
    color: #FFF !important;
}

/* MAIN HEADER */
.main-header-wrapper {
    background-color: #101427;
    width: 100%;
}

.main-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.site-branding a {
    color: #fff !important;
    text-decoration: none;
}

/* Cart */
.header-cart {
    margin-left: 1rem;
}

.cart-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-count {
    background-color: #E63946;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 4px 8px;
    line-height: 1;
}

