.blanjego-toolbar {
    gap: 16px;
}

.blanjego-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.blanjego-toolbar-button {
    min-height: 40px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 13px;
    background: rgba(255,255,255,.045);
    color: #d9d5de;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        border-color .18s ease,
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.blanjego-toolbar-button:hover {
    border-color: rgba(139,92,246,.38);
    background: rgba(124,58,237,.12);
    color: #fff;
}

.blanjego-toolbar-button:active {
    transform: scale(.97);
}

.blanjego-toolbar-register {
    border-color: transparent;
    background: linear-gradient(135deg, #8b5cf6, #5b21b6 65%, #24102f);
    color: #fff;
    box-shadow: 0 8px 22px rgba(91,33,182,.2);
}

.blanjego-toolbar-cart {
    position: relative;
}

.blanjego-toolbar-icon {
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
}

.blanjego-toolbar-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.blanjego-toolbar-logout {
    margin: 0;
}

.blanjego-toolbar-logout button {
    font-family: inherit;
}

@media (max-width: 768px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner.blanjego-toolbar {
        min-height: 62px;
        padding-block: 8px;
    }

    .blanjego-brand {
        min-width: 0;
        gap: 8px;
    }

    .blanjego-brand-logo {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .blanjego-brand-copy {
        min-width: 0;
    }

    .blanjego-brand-copy strong {
        font-size: 14px;
    }

    .blanjego-brand-copy small {
        display: none;
    }

    .blanjego-toolbar-actions {
        display: flex !important;
        min-width: 0;
        gap: 5px;
    }

    .blanjego-toolbar-button {
        min-height: 36px;
        padding: 0 9px;
        border-radius: 11px;
        font-size: 9px;
    }

    .blanjego-toolbar-icon {
        width: 17px;
        height: 17px;
    }

    .blanjego-toolbar-icon svg {
        width: 16px;
        height: 16px;
    }

    .blanjego-toolbar-desktop-only,
    .blanjego-toolbar-logout {
        display: none;
    }

    .blanjego-toolbar-cart .blanjego-toolbar-label,
    .blanjego-toolbar-account .blanjego-toolbar-label {
        display: none;
    }

    .blanjego-toolbar-cart,
    .blanjego-toolbar-account {
        width: 36px;
        padding: 0;
    }

    .blanjego-toolbar-login,
    .blanjego-toolbar-register {
        padding-inline: 9px;
    }
}

@media (max-width: 390px) {
    .header-inner.blanjego-toolbar {
        padding-inline: 10px;
    }

    .blanjego-brand-copy strong {
        font-size: 13px;
    }

    .blanjego-toolbar-login .blanjego-toolbar-label,
    .blanjego-toolbar-register .blanjego-toolbar-label {
        font-size: 8px;
    }

    .blanjego-toolbar-button {
        padding-inline: 7px;
    }
}

@media (max-width: 340px) {
    .blanjego-brand-copy {
        display: none;
    }
}
